Home
last modified time | relevance | path

Searched defs:is_same (Results 1 – 25 of 77) sorted by relevance

1234

/aosp_15_r20/external/clang/test/SemaCXX/
H A Dwindows-arm-valist.cpp7 struct is_same { enum { value = 0 }; }; argument
10 struct is_same<type_, type_> { enum { value = 1 }; }; struct
H A Ddecltype-this.cpp4 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 Ddelete-and-function-templates.cpp6 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 Dnullptr.cpp84 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 Denum.cpp43 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 Dp4-cxx0x.cpp4 struct is_same { struct
9 struct is_same<T, T> { struct
18 static_assert(is_same<decltype(foo()), const int&&>::value, ""); argument
H A Dp5-cxx0x.cpp74 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 Dp14.cpp6 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 Dp3-nodeduct.cpp20 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 Dp18.cpp5 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 Dp6-0x.cpp4 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 Dp9-0x.cpp7 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 Dexample-typelist.cpp15 struct is_same { struct
20 struct is_same<T, T> { argument
21 static const bool value = true;
H A Dissue150.cpp7 struct is_same { struct
12 struct is_same<T, T> { argument
13 static const bool value = true;
H A Daddress-spaces.cpp4 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 Dtypename-specifier-4.cpp5 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 Ddefault-arguments.cpp87 struct is_same { static const bool value = false; }; struct
90 struct is_same<T, T> { static const bool value = true; }; argument
H A Ddeduction.cpp20 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/
Dmeta_utils_core.hpp111 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 Dfixed-expansion.cpp7 struct is_same { struct
12 struct is_same<T, T> { argument
29 static_assert(is_same<X1<int, int>::type, argument
H A Dp4.cpp12 struct is_same { struct
17 struct is_same<T, T> { struct
18 static const bool value = true;
H A Dmetafunctions.cpp6 struct is_same { struct
11 struct is_same<T, T> { argument
12 static const bool value = true;
H A Dmulti-level-substitution.cpp10 struct is_same { struct
15 struct is_same<T, T> { argument
16 static const bool value = true;
H A Dexample-tuple.cpp29 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/
Dis_same.hpp29 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

1234