Home
last modified time | relevance | path

Searched defs:enable_if (Results 1 – 23 of 23) sorted by relevance

/external/clang/test/SemaTemplate/
Doverload-candidates.cpp47 template<bool, typename = void> struct enable_if {}; struct
48 template<typename T> struct enable_if<true, T> { typedef T type; }; struct
50 template<typename T> typename boost::enable_if<sizeof(T) == 4, int>::type if_size_4(); // expected-…
54 template<typename Cond, typename T = void> struct enable_if : boost::enable_if<Cond::value, T> {}; struct
86 template<bool, typename = void> struct enable_if {}; struct
87 template<typename T> struct enable_if<true, T> { typedef T type; }; struct
99 typename Requires = typename std::enable_if<a_trait<T>::value>::type>
Dconstexpr-instantiate.cpp168 template<bool, typename> struct enable_if {}; struct
169 template<typename T> struct enable_if<true, T> { using type = T; }; argument
/external/sdv/vsomeip/third_party/boost/system/include/boost/system/detail/
Denable_if.hpp17 template<bool C, class T = void> struct enable_if struct
19 typedef T type;
22 template<class T> struct enable_if<false, T> struct
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
Dsfinae-1.cpp27 struct enable_if { struct
28 typedef T type;
32 struct enable_if<false, T> { }; struct
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dsizeofpack.cpp75 struct enable_if { }; struct
77 template<class T> struct enable_if<true, T> { struct
78 typedef T type;
152 struct enable_if struct
155 struct enable_if<true,_Tp> struct
156 { typedef _Tp type; };
Dexample-bind.cpp257 struct enable_if<true, T> { struct
262 struct enable_if<false, T> { }; struct
/external/sdv/vsomeip/third_party/boost/core/include/boost/core/
Denable_if.hpp41 struct enable_if : public enable_if_c<Cond::value, T> {}; struct
109 struct enable_if : enable_if_does_not_work_on_this_compiler<T> struct
/external/cronet/tot/third_party/libc++/src/include/__type_traits/
Denable_if.h21 struct _LIBCPP_TEMPLATE_VIS enable_if {}; struct
/external/cronet/tot/third_party/libc++/src/include/__cxx03/__type_traits/
Denable_if.h21 struct _LIBCPP_TEMPLATE_VIS enable_if {}; struct
/external/cronet/stable/third_party/libc++/src/include/__cxx03/__type_traits/
Denable_if.h21 struct _LIBCPP_TEMPLATE_VIS enable_if {}; struct
/external/cronet/stable/third_party/libc++/src/include/__type_traits/
Denable_if.h21 struct _LIBCPP_TEMPLATE_VIS enable_if {}; struct
/external/clang/test/SemaCXX/
Dcxx0x-cursory-default-delete.cpp95 template<bool, typename = void> struct enable_if {}; struct
96 template<typename T> struct enable_if<true, T> { typedef T type; }; struct
Dalias-template.cpp148 template<> struct enable_if<true> { using type = void; }; struct
/external/sdv/vsomeip/third_party/boost/iterator/include/boost/iterator/detail/
Denable_if.hpp68 struct enable_if struct
/external/clang/test/CodeGenCXX/
Dmangle-exprs.cpp36 struct enable_if { typedef T type; }; struct
39 struct enable_if< false, T > {}; struct
/external/cronet/stable/third_party/libc++/src/test/std/utilities/meta/meta.unary/
Ddependent_return_type.compile.pass.cpp67 std::enable_if_t<true, T> enable_if() { in enable_if() function
/external/cronet/tot/third_party/libc++/src/test/std/utilities/meta/meta.unary/
Ddependent_return_type.compile.pass.cpp67 std::enable_if_t<true, T> enable_if() { in enable_if() function
/external/sdv/vsomeip/third_party/boost/iterator/doc/
Diterator_facade_tutorial.rst500 .. |enable_if| replace:: ``boost::enable_if`` substdef in Telling the Truth
/external/clang/test/Analysis/Inputs/
Dsystem-header-simulator-cxx.h110 template <bool, class _Tp = void> struct enable_if {}; struct
/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/
Dmeta_utils_core.hpp73 struct enable_if : enable_if_c<Cond::value, T> {}; struct
Dunique_ptr_meta_utils.hpp94 struct enable_if : public enable_if_c<Cond::value, T> {}; struct
/external/sdv/vsomeip/third_party/boost/parameter/doc/
Dindex.rst2920 .. |enable_if| replace:: ``enable_if`` substdef in Acknowledgements
2921 .. _enable_if: ../../../core/doc/html/core/enable_if.html target in Acknowledgements
/external/armnn/third-party/doctest/
Ddoctest.h774 struct enable_if struct