Searched defs:t2 (Results 1 - 25 of 529) sorted by relevance

1234567891011>>

/external/clang/test/CXX/except/except.spec/
H A Dtemplate.cpp9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}} variable
/external/clang/test/CodeGen/
H A Dvla-4.c13 void t2() { function
H A D2006-01-16-BitCountIntrinsicsUnsigned.c3 unsigned t2(unsigned X) { function
4 // CHECK: t2
H A Darm-fp16-arguments.c17 __fp16 t2() { return g; } function
18 // SOFT: define i32 @t2()
19 // HARD: define arm_aapcs_vfpcc float @t2()
20 // NATIVE: define half @t2()
H A Dattr-naked.c14 // CHECK: define void @t2() [[NAKED]] {
15 __attribute((naked, always_inline)) void t2() { function
H A Dattr-nodebug.c11 void t2() function
23 // CHECK-LABEL: @t2
28 // We should see a function description for t2 but not t1.
30 // CHECK: DISubprogram(name: "t2"
H A Dms-inline-asm-avx512.c14 void t2() { function
15 // CHECK: @t2
H A Darm-vaarg-align.c22 double t2(int i, ...) { function
23 // AAPCS: t2
24 // APCS-GNU: t2
H A Darm-neon-misc.c24 void t2(uint64_t *src1, uint8_t *src2, uint64x2_t *dst) { function
25 // CHECK: @t2
/external/libcxx/test/std/utilities/type.index/type.index.overview/
H A Dcopy_ctor.pass.cpp22 std::type_index t2 = t1; local
23 assert(t2 == t1);
/external/clang/test/PCH/
H A Dcxx-static_assert.cpp19 T<2> t2; variable
/external/libcxx/test/std/language.support/support.rtti/type.info/
H A Dtype_info_hash.pass.cpp19 const std::type_info& t2 = typeid(int); local
21 assert(t1.hash_code() == t2.hash_code());
/external/libcxx/test/std/re/re.traits/
H A Ddefault.pass.cpp30 std::regex_traits<wchar_t> t2; local
31 assert(t2.getloc().name() == "C");
37 std::regex_traits<wchar_t> t2; local
38 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
H A Dgetloc.pass.cpp29 std::regex_traits<wchar_t> t2; local
30 assert(t2.getloc().name() == "C");
36 std::regex_traits<wchar_t> t2; local
37 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_swappable_include_order.pass.cpp39 T t2 = {}; local
40 std::iter_swap(t1, t2);
41 std::swap_ranges(t1, t1 + 17, t2);
/external/libcxx/test/std/utilities/time/time.clock/time.clock.steady/
H A Dnow.pass.cpp25 C::time_point t2 = C::now(); local
26 assert(t2 >= t1);
/external/libcxx/test/std/utilities/type.index/type.index.members/
H A Deq.pass.cpp23 std::type_index t2 = typeid(int); local
25 assert(t1 == t2);
H A Dlt.pass.cpp25 std::type_index t2 = typeid(int); local
27 assert(!(t1 < t2));
28 assert( (t1 <= t2));
29 assert(!(t1 > t2));
30 assert( (t1 >= t2));
/external/llvm/test/MC/Mips/
H A Dasciiz-directive.s8 t2: label
10 # CHECK-LABEL: t2
/external/clang/test/CodeCompletion/
H A Ddocumentation.cpp22 T2 t2; local
23 t2.
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/
H A Dtuple_cat.pass.cpp35 std::tuple<> t2 = std::tuple_cat(t1); local
36 ((void)t2); // Prevent unused warning
59 constexpr std::tuple<> t2 = std::tuple_cat(t1); local
60 ((void)t2); // Prevent unused warning
102 std::tuple<> t2; local
103 std::tuple<> t3 = std::tuple_cat(t1, t2);
108 std::tuple<int> t2(2);
109 std::tuple<int> t3 = std::tuple_cat(t1, t2);
114 std::tuple<int> t2(2);
115 std::tuple<int> t3 = std::tuple_cat(t2, t
236 auto t2 = std::tuple_cat( local
[all...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.rel/
H A Deq.pass.cpp32 const T2 t2; local
33 assert(t1 == t2);
34 assert(!(t1 != t2));
40 const T2 t2(1.1);
41 assert(!(t1 == t2));
42 assert(t1 != t2);
48 const T2 t2(1);
49 assert(t1 == t2);
50 assert(!(t1 != t2));
56 const T2 t2(
[all...]
H A Dlt.pass.cpp44 const T2 t2; local
45 assert(!(t1 < t2));
46 assert( (t1 <= t2));
47 assert(!(t1 > t2));
48 assert( (t1 >= t2));
54 const T2 t2(1);
55 assert(!(t1 < t2));
56 assert( (t1 <= t2));
57 assert(!(t1 > t2));
58 assert( (t1 >= t2));
[all...]
/external/clang/test/Sema/
H A Dwchar.c22 WCHAR_T_TYPE t2[] = "x"; // expected-error {{initializing wide char array with non-wide string literal}} local
/external/clang/test/SemaCXX/
H A Dwarn-char-subscripts.cpp11 void t2() { function
19 t2<char>(); // expected-note {{in instantiation of function template specialization 't2<char>' requested here}}

Completed in 1421 milliseconds

1234567891011>>