Home
last modified time | relevance | path

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

12345

/external/llvm-project/clang/test/SemaCXX/
Dsubst-restrict.cpp9 template <class T, class V> struct is_same { struct
13 template <class T> struct is_same<T, T> { argument
17 static_assert(is_same<int & __restrict, add_restrict<int &>::type>::value, ""); argument
Dwindows-arm-valist.cpp7 struct is_same { enum { value = 0 }; }; struct
10 struct is_same<type_, type_> { enum { value = 1 }; }; struct
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
Dmicrosoft-vs-float128.cpp7 template <typename, typename> struct is_same { static constexpr bool value = false; }; argument
8 template <typename T> struct is_same<T, T> { static constexpr bool value = true; }; struct
Dtypo-correction-crash.cpp14 template <class A, class B> struct is_same { static constexpr bool value = false; }; argument
15 template <class A> struct is_same<A,A> { static constexpr bool value = true; }; argument
/external/clang/test/SemaCXX/
Dwindows-arm-valist.cpp7 struct is_same { enum { value = 0 }; }; argument
10 struct is_same<type_, type_> { enum { value = 1 }; }; argument
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
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmodernize-use-trailing-return-type-cxx20.cpp5 struct is_same { static constexpr auto value = false; }; struct
8 struct is_same<T, T> { static constexpr auto value = true; }; struct
11 concept floating_point = std::is_same<T, float>::value || std::is_same<T, double>::value || std::is…
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
Dp4-cxx0x.cpp4 struct is_same { struct
9 struct is_same<T, T> { argument
18 static_assert(is_same<decltype(foo()), const int&&>::value, ""); argument
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; }; argument
/external/llvm-project/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
Dp4-cxx0x.cpp4 struct is_same { struct
9 struct is_same<T, T> { argument
21 static_assert(is_same<decltype(foo()), const int&&>::value, ""); argument
Dp5-cxx0x.cpp74 template<typename T, typename U> struct is_same { static const bool value = false; }; struct
75 template<typename T> struct is_same<T, T> { static const bool value = true; }; struct
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
Dp14.cpp6 template<typename T, typename U> struct is_same { struct
10 template<typename T> struct is_same<T, T> { struct
11 static const bool value = true;
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
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
/external/llvm-project/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
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
/external/llvm-project/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
Dp14.cpp6 template<typename T, typename U> struct is_same { struct
10 template<typename T> struct is_same<T, T> { struct
11 static const bool value = true;
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp18.cpp5 struct is_same { struct
10 struct is_same<T, T> { struct
21 static_assert(is_same<decltype(((r))), float const&>::value, in f3() argument
/external/llvm-project/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp18.cpp5 struct is_same { struct
10 struct is_same<T, T> { struct
21 static_assert(is_same<decltype(((r))), float const&>::value, in f3() argument
/external/llvm-project/clang/test/CXX/temp/temp.constr/temp.constr.constr/
Dpartial-specializations.cpp6 struct is_same { static constexpr bool value = false; }; struct
9 struct is_same<T*, T*> { static constexpr bool value = true; }; struct
/external/llvm-project/clang/test/CXX/dcl.decl/dcl.meaning/dcl.ref/
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
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.ref/
Dp6-0x.cpp4 struct is_same { struct
9 struct is_same<T, T> { struct
15 int JOIN(array,__LINE__)[is_same<T1, T2>::value? 1 : -1] argument
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
Dp9-0x.cpp7 struct is_same { struct
12 struct is_same<T, T> { argument
13 static const bool value = true;
/external/llvm-project/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
Dp9-0x.cpp7 struct is_same { struct
12 struct is_same<T, T> { argument
13 static const bool value = true;
/external/clang/test/SemaTemplate/
Dexample-typelist.cpp15 struct is_same { struct
20 struct is_same<T, T> { struct
21 static const bool value = true;
/external/llvm-project/clang/test/SemaTemplate/
Dexample-typelist.cpp15 struct is_same { struct
20 struct is_same<T, T> { argument
21 static const bool value = true;

12345