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

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/detail/
enable_if.hpp 16 // Boost iterators uses its own enable_if cause we need
41 // enable_if falls back to always enabled. See comments
68 struct enable_if struct in namespace:boost::iterators
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
sfinae-1.cpp 27 struct enable_if { struct in namespace:instantiation_order1
32 struct enable_if<false, T> { }; struct in namespace:instantiation_order1
35 typename enable_if<sizeof(T) == 17>::type
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
enable_if.hpp 1 // Boost enable_if library
19 // Even the definition of enable_if causes problems on some compilers,
36 struct enable_if : public enable_if_c<Cond::value, T> {}; struct in namespace:boost
100 struct enable_if : enable_if_does_not_work_on_this_compiler<T>
  /external/clang/test/SemaTemplate/
overload-candidates.cpp 47 template<bool, typename = void> struct enable_if {}; struct in namespace:boost
48 template<typename T> struct enable_if<true, T> { typedef T type; }; struct in namespace:boost
50 template<typename T> typename boost::enable_if<sizeof(T) == 4, int>::type if_size_4(); // expected-note{{candidate template ignored: disabled by 'enable_if' [with T = char]}}
54 template<typename Cond, typename T = void> struct enable_if : boost::enable_if<Cond::value, T> {}; struct in namespace:llvm
58 template<typename T> typename llvm::enable_if<is_int<T> >::type if_int(); // expected-note{{candidate template ignored: disabled by 'enable_if' [with T = char]}}
64 typename boost::enable_if<sizeof(T) == 4, int>::type f(); // expected-error{{no type named 'type' in 'boost::enable_if<false, int>'; 'enable_if' cannot be used to disable this declaration}
86 template<bool, typename = void> struct enable_if {}; struct in namespace:std
87 template<typename T> struct enable_if<true, T> { typedef T type; }; struct in namespace:std
    [all...]
constexpr-instantiate.cpp 168 template<bool, typename> struct enable_if {}; struct in namespace:Unevaluated::PR13423
169 template<typename T> struct enable_if<true, T> { using type = T; }; struct in namespace:Unevaluated::PR13423
176 static typename enable_if<f<U>(), void>::type g() {} // expected-note {{disabled by 'enable_if'}}
  /external/eigen/Eigen/src/Core/util/
Meta.h 86 template<bool Condition, typename T> struct enable_if;
88 template<typename T> struct enable_if<true,T> struct in namespace:Eigen::internal
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
type_traits.h 38 // enable_if
88 template <bool cond, class T = void> struct enable_if;
114 // enable_if, equivalent semantics to c++11 std::enable_if, specifically:
119 template<bool cond, class T> struct enable_if { typedef T type; }; struct in namespace:google::protobuf::internal
120 template<class T> struct enable_if<false, T> {}; struct in namespace:google::protobuf::internal
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-bind.cpp 252 // enable_if helper
254 struct enable_if;
257 struct enable_if<true, T> { struct
262 struct enable_if<false, T> { }; struct
270 typename enable_if<(I >= 0 && I < tuple_size<tuple<Values...> >::value)>::type> {
294 inline typename enable_if<is_bind_expression<Bound>::value,
312 inline typename enable_if<(!is_bind_expression<Bound>::value
sizeofpack.cpp 75 struct enable_if { }; struct in namespace:pr13272
77 template<class T> struct enable_if<true, T> { struct in namespace:pr13272
84 void cxx_throw(typename enable_if<(sizeof...(Args) > 0), const char *>::type fmt, Args&&... args) {
152 struct enable_if struct in namespace:pr15112
155 struct enable_if<true,_Tp> struct in namespace:pr15112
172 typename enable_if<is_array_of<sizeof...(Args), size_t, Args...>::value,
  /external/v8/src/base/
safe_math_impl.h 43 struct enable_if {}; struct in namespace:v8::base::internal
46 struct enable_if<true, T> { typedef T type; }; struct in namespace:v8::base::internal
97 typedef typename enable_if<
104 typedef typename enable_if<
111 typedef typename enable_if<
120 static const typename enable_if<std::numeric_limits<Integer>::is_integer,
140 // TODO(jschuh): Break this code out from the enable_if pattern and find a clean
144 typename enable_if<std::numeric_limits<T>::is_integer, T>::type
167 typename enable_if<std::numeric_limits<T>::is_integer, T>::type
194 typename enable_if<
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-exprs.cpp 36 struct enable_if { typedef T type; }; struct
39 struct enable_if< false, T > {}; struct
44 void implicit(typename enable_if< O <= 4 >::type* = 0) {
48 void cstyle(typename enable_if< O <= (unsigned)4 >::type* = 0) {
52 void functional(typename enable_if< O <= unsigned(4) >::type* = 0) {
56 void static_(typename enable_if< O <= static_cast<unsigned>(4) >::type* = 0) {
60 void reinterpret_(typename enable_if<O <= sizeof(reinterpret_cast<T *>(0))>::type * = 0) {
64 void const_(typename enable_if<0 <= sizeof(const_cast<T *>(p))>::type * = 0) {
68 void dynamic_(typename enable_if<0 <= sizeof(dynamic_cast<T *>(p))>::type * = 0) {

Completed in 225 milliseconds