IsPod 55 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<bool>::value, WTF_IsPod_bool_true); IsPod 56 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<char>::value, WTF_IsPod_char_true); IsPod 57 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<signed char>::value, WTF_IsPod_signed_char_true); IsPod 58 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<unsigned char>::value, WTF_IsPod_unsigned_char_true); IsPod 59 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<short>::value, WTF_IsPod_short_true); IsPod 60 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<unsigned short>::value, WTF_IsPod_unsigned_short_true); IsPod 61 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<int>::value, WTF_IsPod_int_true); IsPod 62 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<unsigned>::value, WTF_IsPod_unsigned_int_true); IsPod 63 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<long>::value, WTF_IsPod_long_true); IsPod 64 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<unsigned long>::value, WTF_IsPod_unsigned_long_true); IsPod 65 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<long long>::value, WTF_IsPod_long_long_true); IsPod 66 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<unsigned long long>::value, WTF_IsPod_unsigned_long_long_true); IsPod 68 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<wchar_t>::value, WTF_IsPod_wchar_t_true); IsPod 70 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<char*>::value, WTF_IsPod_char_pointer_true); IsPod 71 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<const char*>::value, WTF_IsPod_const_char_pointer_true); IsPod 72 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<volatile char*>::value, WTF_IsPod_volatile_char_pointer_true); IsPod 73 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<double>::value, WTF_IsPod_double_true); IsPod 74 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<long double>::value, WTF_IsPod_long_double_true); IsPod 75 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(IsPod<float>::value, WTF_IsPod_float_true); IsPod 76 Source/wtf/TypeTraits.cpp COMPILE_ASSERT(!IsPod<IsPod<bool> >::value, WTF_IsPod_struct_false); IsPod 78 Source/wtf/TypeTraits.h template <typename P> struct IsPod<P*> { static const bool value = true; }; IsPod 38 Source/wtf/VectorTraits.h static const bool needsDestruction = !IsPod<T>::value; IsPod 39 Source/wtf/VectorTraits.h static const bool needsInitialization = !IsPod<T>::value; IsPod 40 Source/wtf/VectorTraits.h static const bool canInitializeWithMemset = IsPod<T>::value; IsPod 41 Source/wtf/VectorTraits.h static const bool canMoveWithMemcpy = IsPod<T>::value; IsPod 42 Source/wtf/VectorTraits.h static const bool canCopyWithMemcpy = IsPod<T>::value; IsPod 43 Source/wtf/VectorTraits.h static const bool canFillWithMemset = IsPod<T>::value && (sizeof(T) == sizeof(char)); IsPod 44 Source/wtf/VectorTraits.h static const bool canCompareWithMemcmp = IsPod<T>::value;