IsInteger 89 Source/core/css/resolver/AnimatedStyleBuilder.cpp COMPILE_ASSERT(WTF::IsInteger<T>::value, ShouldUseIntegralTypeTWhenRoundingValues); IsInteger 47 Source/platform/animation/AnimationUtilities.h COMPILE_ASSERT(WTF::IsInteger<T>::value, BlendForUnsignedTypes); IsInteger 77 Source/wtf/HashTraits.h template<typename T> struct GenericHashTraits : GenericHashTraitsBase<IsInteger<T>::value, T> { IsInteger 29 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<bool>::value, WTF_IsInteger_bool_true); IsInteger 30 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<char>::value, WTF_IsInteger_char_true); IsInteger 31 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<signed char>::value, WTF_IsInteger_signed_char_true); IsInteger 32 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<unsigned char>::value, WTF_IsInteger_unsigned_char_true); IsInteger 33 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<short>::value, WTF_IsInteger_short_true); IsInteger 34 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<unsigned short>::value, WTF_IsInteger_unsigned_short_true); IsInteger 35 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<int>::value, WTF_IsInteger_int_true); IsInteger 36 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<unsigned>::value, WTF_IsInteger_unsigned_int_true); IsInteger 37 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<long>::value, WTF_IsInteger_long_true); IsInteger 38 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<unsigned long>::value, WTF_IsInteger_unsigned_long_true); IsInteger 39 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<long long>::value, WTF_IsInteger_long_long_true); IsInteger 40 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<unsigned long long>::value, WTF_IsInteger_unsigned_long_long_true); IsInteger 42 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsInteger<wchar_t>::value, WTF_IsInteger_wchar_t_true); IsInteger 44 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(!IsInteger<char*>::value, WTF_IsInteger_char_pointer_false); IsInteger 45 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(!IsInteger<const char*>::value, WTF_IsInteger_const_char_pointer_false); IsInteger 46 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(!IsInteger<volatile char*>::value, WTF_IsInteger_volatile_char_pointer_false); IsInteger 47 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(!IsInteger<double>::value, WTF_IsInteger_double_false); IsInteger 48 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(!IsInteger<float>::value, WTF_IsInteger_float_false); IsInteger 50 Source/wtf/TypeTraits.h template<> struct IsInteger<bool> { static const bool value = true; }; IsInteger 51 Source/wtf/TypeTraits.h template<> struct IsInteger<char> { static const bool value = true; }; IsInteger 52 Source/wtf/TypeTraits.h template<> struct IsInteger<signed char> { static const bool value = true; }; IsInteger 53 Source/wtf/TypeTraits.h template<> struct IsInteger<unsigned char> { static const bool value = true; }; IsInteger 54 Source/wtf/TypeTraits.h template<> struct IsInteger<short> { static const bool value = true; }; IsInteger 55 Source/wtf/TypeTraits.h template<> struct IsInteger<unsigned short> { static const bool value = true; }; IsInteger 56 Source/wtf/TypeTraits.h template<> struct IsInteger<int> { static const bool value = true; }; IsInteger 57 Source/wtf/TypeTraits.h template<> struct IsInteger<unsigned int> { static const bool value = true; }; IsInteger 58 Source/wtf/TypeTraits.h template<> struct IsInteger<long> { static const bool value = true; }; IsInteger 59 Source/wtf/TypeTraits.h template<> struct IsInteger<unsigned long> { static const bool value = true; }; IsInteger 60 Source/wtf/TypeTraits.h template<> struct IsInteger<long long> { static const bool value = true; }; IsInteger 61 Source/wtf/TypeTraits.h template<> struct IsInteger<unsigned long long> { static const bool value = true; }; IsInteger 63 Source/wtf/TypeTraits.h template<> struct IsInteger<wchar_t> { static const bool value = true; }; IsInteger 71 Source/wtf/TypeTraits.h template<typename T> struct IsArithmetic { static const bool value = IsInteger<T>::value || IsFloatingPoint<T>::value; }; IsInteger 103 Source/wtf/TypeTraits.h static const bool value = IsInteger<T>::value || IsConvertibleToDouble<!IsInteger<T>::value, T>::value;