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/chromium_org/base/
template_util.h 143 struct enable_if {}; struct in namespace:base
146 struct enable_if<true, T> { typedef T type; }; struct in namespace:base
  /external/clang/test/SemaTemplate/
overload-candidates.cpp 45 template<bool, typename = void> struct enable_if {}; struct in namespace:boost
46 template<typename T> struct enable_if<true, T> { typedef T type; }; struct in namespace:boost
48 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]}}
52 template<typename Cond, typename T = void> struct enable_if : boost::enable_if<Cond::value, T> {}; struct in namespace:llvm
56 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]}}
62 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}
84 template<bool, typename = void> struct enable_if {}; struct in namespace:std
85 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
  /external/chromium_org/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/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/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) {

Completed in 517 milliseconds