HomeSort by relevance Sort by last modified time
    Searched defs:IsInteger (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
TypeTraits.h 35 // IsInteger<T>::value
49 template<typename T> struct IsInteger { static const bool value = false; };
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; }
    [all...]
  /external/v8/src/
hydrogen-instructions.h     [all...]

Completed in 212 milliseconds