Home
last modified time | relevance | path

Searched refs:IsInteger (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
DTypeTraits.cpp29 COMPILE_ASSERT(IsInteger<bool>::value, WTF_IsInteger_bool_true);
30 COMPILE_ASSERT(IsInteger<char>::value, WTF_IsInteger_char_true);
31 COMPILE_ASSERT(IsInteger<signed char>::value, WTF_IsInteger_signed_char_true);
32 COMPILE_ASSERT(IsInteger<unsigned char>::value, WTF_IsInteger_unsigned_char_true);
33 COMPILE_ASSERT(IsInteger<short>::value, WTF_IsInteger_short_true);
34 COMPILE_ASSERT(IsInteger<unsigned short>::value, WTF_IsInteger_unsigned_short_true);
35 COMPILE_ASSERT(IsInteger<int>::value, WTF_IsInteger_int_true);
36 COMPILE_ASSERT(IsInteger<unsigned int>::value, WTF_IsInteger_unsigned_int_true);
37 COMPILE_ASSERT(IsInteger<long>::value, WTF_IsInteger_long_true);
38 COMPILE_ASSERT(IsInteger<unsigned long>::value, WTF_IsInteger_unsigned_long_true);
[all …]
DTypeTraits.h49 template<typename T> struct IsInteger { static const bool value = false; }; struct
50 template<> struct IsInteger<bool> { static const bool value = true; };
51 template<> struct IsInteger<char> { static const bool value = true; };
52 template<> struct IsInteger<signed char> { static const bool value = true; };
53 template<> struct IsInteger<unsigned char> { static const bool value = true; };
54 template<> struct IsInteger<short> { static const bool value = true; };
55 template<> struct IsInteger<unsigned short> { static const bool value = true; };
56 template<> struct IsInteger<int> { static const bool value = true; };
57 template<> struct IsInteger<unsigned int> { static const bool value = true; };
58 template<> struct IsInteger<long> { static const bool value = true; };
[all …]
DHashTraits.h51 template<typename T> struct GenericHashTraits : GenericHashTraitsBase<IsInteger<T>::value, T> {
/external/webkit/Source/JavaScriptCore/
Djsc.cpp147 COMPILE_ASSERT(!IsInteger<GlobalObject>::value, WTF_IsInteger_GlobalObject_false);
DChangeLog-2007-10-1415071 (main): Inserted asserts to test IsInteger. FIXME: Move these to
15074 (KXMLCore::): Added IsInteger class for querying types.
DChangeLog-2009-06-1612012 * wtf/TypeTraits.h: Moved RemovePointer, IsPod, IsInteger to this file.
12017 * wtf/HashTraits.h: Use IsInteger from TypeTraits.h.
/external/v8/src/
Dhydrogen-instructions.h1962 bool IsInteger() const { return handle_->IsSmi(); } in IsInteger() function