Searched defs:integral_constant (Results 1 - 5 of 5) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
H A Dtemplate_util.h71 // integral_constant, defined in tr1, is a wrapper for an integer
77 struct integral_constant { struct in namespace:google::protobuf::internal
80 typedef integral_constant<T, v> type;
83 template <class T, T v> const T integral_constant<T, v>::value;
89 typedef integral_constant<bool, true> true_type;
90 typedef integral_constant<bool, false> false_type;
124 struct and_ : public integral_constant<bool, (A::value && B::value)> {
130 struct or_ : public integral_constant<bool, (A::value || B::value)> {
/external/libchrome/base/
H A Dtemplate_util.h17 struct integral_constant { struct in namespace:base
20 typedef integral_constant<T, v> type;
23 template <class T, T v> const T integral_constant<T, v>::value;
25 typedef integral_constant<bool, true> true_type;
26 typedef integral_constant<bool, false> false_type;
107 : integral_constant<bool,
115 : integral_constant<bool,
/external/webrtc/webrtc/base/
H A Dtemplate_util.h23 struct integral_constant { struct in namespace:rtc
26 typedef integral_constant<T, v> type;
29 template <class T, T v> const T integral_constant<T, v>::value;
31 typedef integral_constant<bool, true> true_type;
32 typedef integral_constant<bool, false> false_type;
112 : integral_constant<bool,
120 : integral_constant<bool,
/external/clang/test/SemaTemplate/
H A Doverload-candidates.cpp89 template<typename T, T V> struct integral_constant { static const T value = V; }; struct in namespace:std
90 typedef integral_constant<bool, false> false_type;
91 typedef integral_constant<bool, true> true_type;
/external/v8/src/base/
H A Dsafe_math_impl.h28 struct integral_constant { struct in namespace:v8::base::internal
31 typedef integral_constant<T, v> type;
34 template <class T, T v> const T integral_constant<T, v>::value;
36 typedef integral_constant<bool, true> true_type;
37 typedef integral_constant<bool, false> false_type;

Completed in 195 milliseconds