/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | bugprone-forwarding-reference-overload.cpp | 4 template <bool B, class T = void> struct enable_if { typedef T type; }; struct 6 template <class T> struct enable_if<true, T> { typedef T type; }; argument 15 template <class T> struct enable_if { typedef T type; }; struct
|
/external/clang/test/SemaTemplate/ |
D | overload-candidates.cpp | 47 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>
|
D | constexpr-instantiate.cpp | 168 template<bool, typename> struct enable_if {}; struct 169 template<typename T> struct enable_if<true, T> { using type = T; }; argument
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | overload-candidates.cpp | 47 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>
|
D | instantiate-incomplete-typo-suggested-error-limit.cpp | 18 template <bool, class Tp = void> struct enable_if {}; struct 19 template <class Tp> struct enable_if<true, Tp> { typedef Tp type; }; argument
|
D | stack-exhaustion.cpp | 52 template<bool B, typename T> struct enable_if { using type = T; }; argument
|
D | constexpr-instantiate.cpp | 186 template<bool, typename> struct enable_if {}; struct 187 template<typename T> struct enable_if<true, T> { using type = T; }; argument
|
/external/llvm-project/clang/test/SemaCUDA/ |
D | autoret-global.cu | 24 template <bool Cond, typename T = void> struct enable_if { typedef T type; }; argument 25 template <typename T> struct enable_if<false, T> {}; struct
|
/external/llvm-project/clang/test/SemaCXX/ |
D | microsoft-vs-float128.cpp | 4 template <bool> struct enable_if {}; struct 5 template<> struct enable_if<true> { typedef void type; }; struct
|
D | attr-annotate.cpp | 4 struct enable_if { struct 9 struct enable_if<false, Type> {}; struct
|
D | cxx0x-cursory-default-delete.cpp | 95 template<bool, typename = void> struct enable_if {}; struct 96 template<typename T> struct enable_if<true, T> { typedef T type; }; struct
|
D | alias-template.cpp | 145 template<> struct enable_if<true> { using type = void; }; argument
|
/external/llvm-project/clang/test/CXX/temp/temp.fct.spec/temp.deduct/ |
D | sfinae-1.cpp | 27 struct enable_if { struct 28 typedef T type; 32 struct enable_if<false, T> { }; struct
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/ |
D | sfinae-1.cpp | 27 struct enable_if { struct 28 typedef T type; 32 struct enable_if<false, T> { }; struct
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | sizeofpack.cpp | 75 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; };
|
D | example-bind.cpp | 257 struct enable_if<true, T> { struct 262 struct enable_if<false, T> { }; struct
|
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | sizeofpack.cpp | 75 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; };
|
D | example-bind.cpp | 257 struct enable_if<true, T> { struct 262 struct enable_if<false, T> { }; struct
|
/external/clang/test/SemaCXX/ |
D | cxx0x-cursory-default-delete.cpp | 95 template<bool, typename = void> struct enable_if {}; struct 96 template<typename T> struct enable_if<true, T> { typedef T type; }; argument
|
D | alias-template.cpp | 148 template<> struct enable_if<true> { using type = void; }; struct
|
/external/clang/test/CodeGenCXX/ |
D | mangle-exprs.cpp | 36 struct enable_if { typedef T type; }; argument 39 struct enable_if< false, T > {}; struct
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | mangle-exprs.cpp | 36 struct enable_if { typedef T type; }; struct 39 struct enable_if< false, T > {}; struct
|
/external/clang/test/Analysis/Inputs/ |
D | system-header-simulator-cxx.h | 110 template <bool, class _Tp = void> struct enable_if {}; struct
|