/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | windows-arm-valist.cpp | 7 struct is_same { enum { value = 0 }; }; argument 10 struct is_same<type_, type_> { enum { value = 1 }; }; struct
|
H A D | decltype-this.cpp | 4 template<typename T, typename U> struct is_same { struct 8 template<typename T> struct is_same<T, T> { struct 13 void f() { static_assert(is_same<decltype(this), S*>::value, ""); } in f() argument
|
H A D | delete-and-function-templates.cpp | 6 template<class T, class U> struct is_same { enum { value = false }; }; argument 7 template<class T> struct is_same<T, T> { enum { value = true }; }; struct
|
H A D | nullptr.cpp | 84 template<typename T, typename U> struct is_same { struct 85 static const bool value = false; 88 template<typename T> struct is_same<T, T> { struct 89 static const bool value = true;
|
H A D | enum.cpp | 43 template <class A, class B> struct is_same { static const int value = -1; }; struct 44 template <class A> struct is_same<A,A> { static const int value = 1; }; struct
|
/aosp_15_r20/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/ |
H A D | p4-cxx0x.cpp | 4 struct is_same { struct 9 struct is_same<T, T> { struct 18 static_assert(is_same<decltype(foo()), const int&&>::value, ""); argument
|
H A D | p5-cxx0x.cpp | 74 template<typename T, typename U> struct is_same { static const bool value = false; }; argument 75 template<typename T> struct is_same<T, T> { static const bool value = true; }; struct
|
/aosp_15_r20/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/ |
H A D | p14.cpp | 6 template<typename T, typename U> struct is_same { struct 10 template<typename T> struct is_same<T, T> { argument 11 static const bool value = true;
|
/aosp_15_r20/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/ |
H A D | p3-nodeduct.cpp | 20 struct is_same { struct 25 struct is_same<T, T> { argument 29 int typeof0[is_same<__typeof__(f<int>), void (int)>::value? 1 : -1]; argument
|
/aosp_15_r20/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
H A D | p18.cpp | 5 struct is_same { struct 10 struct is_same<T, T> { argument 21 static_assert(is_same<decltype(((r))), float const&>::value, in f3() argument
|
/aosp_15_r20/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.ref/ |
H A D | p6-0x.cpp | 4 struct is_same { struct 9 struct is_same<T, T> { argument 15 int JOIN(array,__LINE__)[is_same<T1, T2>::value? 1 : -1] argument
|
/aosp_15_r20/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
H A D | p9-0x.cpp | 7 struct is_same { struct 12 struct is_same<T, T> { argument 13 static const bool value = true;
|
/aosp_15_r20/external/clang/test/SemaTemplate/ |
H A D | example-typelist.cpp | 15 struct is_same { struct 20 struct is_same<T, T> { argument 21 static const bool value = true;
|
H A D | issue150.cpp | 7 struct is_same { struct 12 struct is_same<T, T> { argument 13 static const bool value = true;
|
H A D | address-spaces.cpp | 4 struct is_same { struct 9 struct is_same<T, T> { argument 30 int check_remove0[is_same<remove_pointer<int_1_ptr>::type, int_1>::value? 1 : -1]; argument
|
H A D | typename-specifier-4.cpp | 5 struct is_same { struct 10 struct is_same<T, T> { struct 29 int a0[is_same<metafun_apply2<make_pair, int, float>::type, argument
|
H A D | default-arguments.cpp | 87 struct is_same { static const bool value = false; }; struct 90 struct is_same<T, T> { static const bool value = true; }; argument
|
H A D | deduction.cpp | 20 struct is_same { struct 25 struct is_same<T, T> { struct 26 static const bool value = true;
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/ |
D | meta_utils_core.hpp | 111 struct is_same struct 113 static const bool value = false; 117 struct is_same<T, T> struct 119 static const bool value = true;
|
/aosp_15_r20/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
H A D | fixed-expansion.cpp | 7 struct is_same { struct 12 struct is_same<T, T> { argument 29 static_assert(is_same<X1<int, int>::type, argument
|
H A D | p4.cpp | 12 struct is_same { struct 17 struct is_same<T, T> { struct 18 static const bool value = true;
|
H A D | metafunctions.cpp | 6 struct is_same { struct 11 struct is_same<T, T> { argument 12 static const bool value = true;
|
H A D | multi-level-substitution.cpp | 10 struct is_same { struct 15 struct is_same<T, T> { argument 16 static const bool value = true;
|
H A D | example-tuple.cpp | 29 struct is_same { struct 34 struct is_same<T, T> { struct 35 static const bool value = true;
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/ |
D | is_same.hpp | 29 template <class T, class U> struct is_same : public false_type {}; struct 30 template <class T> struct is_same<T,T> : public true_type {}; struct 34 template <class T> struct is_same<T&, T&> : public true_type{}; struct
|