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

12345678910

/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/language.support/support.rtti/type.info/
H A Dtype_info.pass.cpp21 const std::type_info& t3 = typeid(short); local
22 assert(t1 != t3);
25 assert(strcmp(t1.name(), t3.name()) != 0);
H A Dtype_info_hash.pass.cpp20 const std::type_info& t3 = typeid(short); local
22 assert(t1.hash_code() != t3.hash_code());
/external/libcxx/test/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 Dcpsetup.s64 t3: label
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp1.cpp9 Tuple<int, float, double> *t3; variable
/external/libcxx/test/input.output/iostream.forward/
H A Diosfwd.pass.cpp20 std::char_traits<unsigned short>* t3 = 0; local
25 std::basic_ios<unsigned short>* t3 = 0; local
30 std::basic_streambuf<unsigned short>* t3 = 0; local
35 std::basic_istream<unsigned short>* t3 = 0; local
40 std::basic_ostream<unsigned short>* t3 = 0; local
45 std::basic_iostream<unsigned short>* t3 = 0; local
50 std::basic_stringbuf<unsigned short>* t3 = 0; local
55 std::basic_istringstream<unsigned short>* t3 = 0; local
60 std::basic_ostringstream<unsigned short>* t3 = 0; local
65 std::basic_stringstream<unsigned short>* t3 local
70 std::basic_filebuf<unsigned short>* t3 = 0; local
75 std::basic_ifstream<unsigned short>* t3 = 0; local
80 std::basic_ofstream<unsigned short>* t3 = 0; local
85 std::basic_fstream<unsigned short>* t3 = 0; local
90 std::istreambuf_iterator<unsigned short>* t3 = 0; local
95 std::ostreambuf_iterator<unsigned short>* t3 = 0; local
104 std::ostream* t3 = 0; local
110 std::ostringstream* t3 = 0; local
116 std::ofstream* t3 = 0; local
122 std::wostream* t3 = 0; local
128 std::wostringstream* t3 = 0; local
134 std::wofstream* t3 = 0; local
140 std::wstreampos* t3 = 0; local
[all...]
/external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.place/
H A Dplaceholders.pass.cpp21 T t3 = t; local
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/
H A Dtuple_cat.pass.cpp92 std::tuple<> t3 = std::tuple_cat(t1, t2); local
97 std::tuple<int> t3 = std::tuple_cat(t1, t2); local
98 assert(std::get<0>(t3) == 2);
103 std::tuple<int> t3 = std::tuple_cat(t2, t1); local
104 assert(std::get<0>(t3) == 2);
109 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2); local
110 assert(std::get<0>(t3) == nullptr);
111 assert(std::get<1>(t3) == 2);
116 std::tuple<int, int*> t3 = std::tuple_cat(t2, t1); local
117 assert(std::get<0>(t3)
123 std::tuple<int*, int, double> t3 = std::tuple_cat(t1, t2); local
131 std::tuple<int, double, int*> t3 = std::tuple_cat(t2, t1); local
139 std::tuple<int*, MoveOnly, int, double> t3 = local
149 std::tuple<int, double, int*, MoveOnly> t3 = local
159 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
170 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, int> t3 = local
[all...]
/external/libcxx/test/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/thread/thread.mutex/thread.lock/
H A Dtypes.pass.cpp31 T3 t3 = std::adopt_lock; local
/external/libcxx/test/utilities/time/time.point/time.point.nonmember/
H A Dop_+.pass.cpp42 constexpr std::chrono::time_point<Clock, Duration2> t3 = Duration2(6) + t1; local
43 static_assert(t3.time_since_epoch() == Duration2(3006), "");
/external/clang/test/CodeGen/
H A Dms-inline-asm-64.c20 int t3() { function
30 // CHECK: t3
H A Dms-inline-asm.c22 void t3() { function
23 // CHECK: @t3
/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.c9 void t3(void) { __asm M2 0x2c } function
/external/clang/test/SemaCXX/
H A Dattr-cleanup-gcc.cpp12 void t3() { function
/external/libcxx/test/utilities/intseq/intseq.general/
H A Dinteger_seq.pass.cpp62 auto t3 = extract ( tup, int3() ); local
63 static_assert ( std::tuple_size<decltype(t3)>::value == int3::size (), "t3 size wrong");
64 assert ( t3 == std::make_tuple ( 10, 11, 12 ));
/external/llvm/unittests/Support/
H A DErrorOrTest.cpp40 ErrorOr<std::unique_ptr<int> > t3() { function in namespace:__anon26532
51 EXPECT_EQ(3, **t3());
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-utf-private.hh83 unsigned int t1, t2, t3; local
87 (t3 = text[2] - 0x80u) <= 0x3Fu))
89 c = ((c&0x7u)<<18) | (t1<<12) | (t2<<6) | t3;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
H A Dloopfilter_block_sse2_x86_64.asm87 paddsb scratch2, [GLOBAL(t3)] ; Filter2
811 t3: label
H A Dloopfilter_mmx.asm165 paddsb mm2, [GLOBAL(t3)] ; 3* (q0 - p0) + hvm(p1 - q1) + 3
474 paddsb mm2, [GLOBAL(t3)] ; 3* (q0 - p0) + hvm(p1 - q1) + 3
768 paddsb mm5, [GLOBAL(t3)];
1169 paddsb mm5, [GLOBAL(t3)];
1734 t3: label

Completed in 2510 milliseconds

12345678910