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

/external/chromium_org/third_party/cld/base/
H A Dtemplate_util.h34 // integral_constant, defined in tr1, is a wrapper for an integer
40 struct integral_constant { struct in namespace:base
43 typedef integral_constant<T, v> type;
46 template <class T, T v> const T integral_constant<T, v>::value;
52 typedef integral_constant<bool, true> true_type;
53 typedef integral_constant<bool, false> false_type;
84 struct and_ : public integral_constant<bool, (A::value && B::value)> {
90 struct or_ : public integral_constant<bool, (A::value || B::value)> {
/external/chromium_org/third_party/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/chromium_org/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/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
H A Dtemplate_util.h19 struct integral_constant { struct in namespace:i18n::addressinput
22 typedef integral_constant<T, v> type;
25 template <class T, T v> const T integral_constant<T, v>::value;
27 typedef integral_constant<bool, true> true_type;
28 typedef integral_constant<bool, false> false_type;
95 : integral_constant<bool,
103 : integral_constant<bool,
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
H A Dtemplate_util.h16 struct integral_constant { struct in namespace:i18n::phonenumbers
19 typedef integral_constant<T, v> type;
22 template <class T, T v> const T integral_constant<T, v>::value;
24 typedef integral_constant<bool, true> true_type;
25 typedef integral_constant<bool, false> false_type;
92 : integral_constant<bool,
100 : integral_constant<bool,
/external/chromium_org/third_party/webrtc/base/
H A Dtemplate_util.h21 struct integral_constant { struct in namespace:rtc
24 typedef integral_constant<T, v> type;
27 template <class T, T v> const T integral_constant<T, v>::value;
29 typedef integral_constant<bool, true> true_type;
30 typedef integral_constant<bool, false> false_type;
97 : integral_constant<bool,
105 : integral_constant<bool,
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dtemplate_util.h23 struct integral_constant { struct in namespace:webrtc
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;
99 : integral_constant<bool,
107 : integral_constant<bool,
/external/clang/test/SemaTemplate/
H A Doverload-candidates.cpp87 template<typename T, T V> struct integral_constant { static const T value = V; }; struct in namespace:std
88 typedef integral_constant<bool, false> false_type;
89 typedef integral_constant<bool, true> true_type;
/external/chromium_org/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 2248 milliseconds