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

  /external/protobuf/src/google/protobuf/stubs/
type_traits.h 39 // is_integral
89 template <class T> struct is_integral;
121 // is_integral is false except for the built-in integer types. A
123 template <class T> struct is_integral : false_type { }; struct in namespace:google::protobuf::internal
124 template<> struct is_integral<bool> : true_type { }; struct in namespace:google::protobuf::internal
125 template<> struct is_integral<char> : true_type { }; struct in namespace:google::protobuf::internal
126 template<> struct is_integral<unsigned char> : true_type { }; struct in namespace:google::protobuf::internal
127 template<> struct is_integral<signed char> : true_type { }; struct in namespace:google::protobuf::internal
132 template<> struct is_integral<__wchar_t> : true_type { }; struct in namespace:google::protobuf::internal
134 template<> struct is_integral<wchar_t> : true_type { } struct in namespace:google::protobuf::internal
136 template<> struct is_integral<short> : true_type { }; struct in namespace:google::protobuf::internal
137 template<> struct is_integral<unsigned short> : true_type { }; struct in namespace:google::protobuf::internal
138 template<> struct is_integral<int> : true_type { }; struct in namespace:google::protobuf::internal
139 template<> struct is_integral<unsigned int> : true_type { }; struct in namespace:google::protobuf::internal
140 template<> struct is_integral<long> : true_type { }; struct in namespace:google::protobuf::internal
141 template<> struct is_integral<unsigned long> : true_type { }; struct in namespace:google::protobuf::internal
143 template<> struct is_integral<long long> : true_type { }; struct in namespace:google::protobuf::internal
144 template<> struct is_integral<unsigned long long> : true_type { }; struct in namespace:google::protobuf::internal
146 template <class T> struct is_integral<const T> : is_integral<T> { }; struct in namespace:google::protobuf::internal
147 template <class T> struct is_integral<volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal
148 template <class T> struct is_integral<const volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal
    [all...]
  /external/eigen/Eigen/src/Core/util/
Meta.h 100 template<typename T> struct is_integral { enum { value = false }; }; struct in namespace:Eigen::internal
101 template<> struct is_integral<bool> { enum { value = true }; }; struct in namespace:Eigen::internal
102 template<> struct is_integral<char> { enum { value = true }; }; struct in namespace:Eigen::internal
103 template<> struct is_integral<signed char> { enum { value = true }; }; struct in namespace:Eigen::internal
104 template<> struct is_integral<unsigned char> { enum { value = true }; }; struct in namespace:Eigen::internal
105 template<> struct is_integral<signed short> { enum { value = true }; }; struct in namespace:Eigen::internal
106 template<> struct is_integral<unsigned short> { enum { value = true }; }; struct in namespace:Eigen::internal
107 template<> struct is_integral<signed int> { enum { value = true }; }; struct in namespace:Eigen::internal
108 template<> struct is_integral<unsigned int> { enum { value = true }; }; struct in namespace:Eigen::internal
109 template<> struct is_integral<signed long> { enum { value = true }; } struct in namespace:Eigen::internal
110 template<> struct is_integral<unsigned long> { enum { value = true }; }; struct in namespace:Eigen::internal
    [all...]
  /external/clang/test/SemaCXX/
type-traits.cpp 397 void is_integral() function
    [all...]
  /external/skia/src/pdf/
SkPDFDevice.cpp 1773 static bool is_integral(const SkRect& r) { function
    [all...]
  /external/skqp/src/pdf/
SkPDFDevice.cpp 1786 static bool is_integral(const SkRect& r) { function
    [all...]

Completed in 866 milliseconds