Searched defs:t3 (Results 1 - 25 of 221) sorted by relevance

123456789

/external/clang/test/CodeGen/
H A Dattr-naked.c19 __attribute((naked)) void t3(int x) { function
20 // CHECK: define void @t3(i32)
H A Dms-inline-asm-64.c20 int t3() { function
30 // CHECK: t3
H A Dms-inline-asm.c20 void t3() { function
21 // CHECK: @t3
/external/clang/test/Sema/
H A Dattr-returns-twice.c12 typedef void (*t3)(void) __attribute__((returns_twice)); // expected-warning {{'returns_twice' attribute only applies to functions}} typedef
H A Dwchar.c23 char t3[] = L"x"; // expected-error {{initializing char array with wide string literal}} local
/external/libcxx/test/std/language.support/support.rtti/type.info/
H A Dtype_info_hash.pass.cpp20 const std::type_info& t3 = typeid(short); local
22 assert(t1.hash_code() != t3.hash_code());
H A Dtype_info.pass.cpp26 const std::type_info& t3 = typeid(short); local
27 assert(t1 != t3);
30 assert(strcmp(t1.name(), t3.name()) != 0);
/external/libcxx/test/std/utilities/type.index/type.index.members/
H A Deq.pass.cpp24 std::type_index t3 = typeid(long); local
26 assert(t1 != t3);
H A Dlt.pass.cpp26 std::type_index t3 = typeid(long); local
31 if (t1 < t3)
33 assert( (t1 < t3));
34 assert( (t1 <= t3));
35 assert(!(t1 > t3));
36 assert(!(t1 >= t3));
40 assert(!(t1 < t3));
41 assert(!(t1 <= t3));
42 assert( (t1 > t3));
43 assert( (t1 >= t3));
[all...]
/external/llvm/test/MC/Mips/
H A Dasciiz-directive.s14 t3: label
16 # CHECK-LABEL: t3
H A Dcpsetup.s84 t3: label
91 # ALL-LABEL: t3:
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp1.cpp9 Tuple<int, float, double> *t3; variable
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/
H A Dtuple_cat.pass.cpp103 std::tuple<> t3 = std::tuple_cat(t1, t2); local
104 ((void)t3); // Prevent unused warning
109 std::tuple<int> t3 = std::tuple_cat(t1, t2); local
110 assert(std::get<0>(t3) == 2);
115 std::tuple<int> t3 = std::tuple_cat(t2, t1); local
116 assert(std::get<0>(t3) == 2);
121 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2); local
122 assert(std::get<0>(t3) == nullptr);
123 assert(std::get<1>(t3) == 2);
128 std::tuple<int, int*> t3 local
135 std::tuple<int*, int, double> t3 = std::tuple_cat(t1, t2); local
143 std::tuple<int, double, int*> t3 = std::tuple_cat(t2, t1); local
151 std::tuple<int*, MoveOnly, int, double> t3 = local
161 std::tuple<int, double, int*, MoveOnly> t3 = local
171 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
182 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
194 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
206 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
218 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly, int> t3 = local
[all...]
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
H A Dmerge.pass.cpp27 const T t3[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; local
31 C c3(std::begin(t3), std::end(t3));
40 const T t3[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; local
44 C c3(std::begin(t3), std::end(t3));
H A Dmerge_pred.pass.cpp28 const T t3[] = {15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}; local
32 C c3(std::begin(t3), std::end(t3));
41 const T t3[] = {15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}; local
45 C c3(std::begin(t3), std::end(t3));
/external/libcxx/test/std/thread/thread.mutex/thread.lock/
H A Dtypes.pass.cpp33 T3 t3 = std::adopt_lock; ((void)t3); local
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.place/
H A Dplaceholders.pass.cpp29 T t3 = t; local
30 ((void)t3);
/external/libcxx/test/std/utilities/time/time.point/time.point.nonmember/
H A Dop_+.pass.cpp44 constexpr std::chrono::time_point<Clock, Duration2> t3 = Duration2(6) + t1; local
45 static_assert(t3.time_since_epoch() == Duration2(3006), "");
/external/clang/test/PCH/Inputs/
H A Dnamespaces.h19 typedef int t3; typedef in namespace:N2::Inner
/external/clang/test/Parser/
H A Dms-inline-asm.c11 void t3(void) { __asm M2 0x2c } function
/external/clang/test/SemaCXX/
H A Dattr-cleanup-gcc.cpp12 void t3() { function
/external/libcxx/test/std/utilities/intseq/intseq.general/
H A Dinteger_seq.pass.cpp57 auto t3 = extract ( tup, int3() ); local
58 static_assert ( std::tuple_size<decltype(t3)>::value == int3::size (), "t3 size wrong");
59 assert ( t3 == std::make_tuple ( 10, 11, 12 ));
/external/llvm/test/MC/COFF/
H A Dcross-section-relative.s37 .globl t3 # @t3
39 t3: label
40 .quad (g3-t3)-4
/external/skia/bench/
H A DStreamBench.cpp27 const char t3[] = { 1, 2, 3 }; variable
36 stream.write(t3, 3);
/external/skqp/bench/
H A DStreamBench.cpp27 const char t3[] = { 1, 2, 3 }; variable
36 stream.write(t3, 3);

Completed in 824 milliseconds

123456789