HomeSort by relevance Sort by last modified time
    Searched defs:t3 (Results 1 - 25 of 408) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gold/testsuite/
start_lib_test_3.c 25 static char t3[] __attribute__ ((used)) = "t3"; variable
thin_archive_test_3.cc 34 t3() function
ver_test_main.cc 32 assert(t3());
51 t3() function
  /external/clang/test/CodeGen/
attr-naked.c 19 __attribute((naked)) void t3(int x) { function
20 // CHECK: define void @t3(i32)
  /external/clang/test/Sema/
attr-returns-twice.c 12 typedef void (*t3)(void) __attribute__((returns_twice)); // expected-warning {{'returns_twice' attribute only applies to functions}} typedef
unused-expr.c 33 void t3(int c) { function
132 #define M3(a) (t3(a), fn2())
133 #define M4(a, b) (foo((a), (b)) ? 0 : t3(a), 1)
143 NOP((t3(i), fn2())); // expected-warning {{ignoring return value}}
145 NOP((foo(i, j) ? 0 : t3(i), 1)); // expected-warning {{expression result unused}}
wchar.c 23 char t3[] = L"x"; // expected-error {{initializing char array with wide string literal}} local
  /external/libcxx/test/std/language.support/support.rtti/type.info/
type_info.pass.cpp 21 const std::type_info& t3 = typeid(short); local
22 assert(t1 != t3);
25 assert(strcmp(t1.name(), t3.name()) != 0);
type_info_hash.pass.cpp 20 const std::type_info& t3 = typeid(short); local
22 assert(t1.hash_code() != t3.hash_code());
  /external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.place/
placeholders.pass.cpp 25 T t3 = t; local
26 ((void)t3);
  /external/libcxx/test/std/utilities/type.index/type.index.members/
eq.pass.cpp 24 std::type_index t3 = typeid(long); local
26 assert(t1 != t3);
lt.pass.cpp 26 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/
asciiz-directive.s 14 t3: label
16 # CHECK-LABEL: t3
cpsetup.s 91 t3: label
98 # ALL-LABEL: t3:
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/type.info/
type_info.pass.cpp 21 const std::type_info& t3 = typeid(short); local
22 assert(t1 != t3);
25 assert(strcmp(t1.name(), t3.name()) != 0);
type_info_hash.pass.cpp 20 const std::type_info& t3 = typeid(short); local
22 assert(t1.hash_code() != t3.hash_code());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.place/
placeholders.pass.cpp 21 T t3 = t; local
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/
eq.pass.cpp 24 std::type_index t3 = typeid(long); local
26 assert(t1 != t3);
lt.pass.cpp 26 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...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
arm-call1.s 23 .global t3
25 t3: label
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p1.cpp 9 Tuple<int, float, double> *t3; variable
  /external/libcxx/test/std/input.output/iostream.forward/
iosfwd.pass.cpp 20 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 = 0 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/std/utilities/tuple/tuple.tuple/tuple.creation/
tuple_cat.pass.cpp 102 std::tuple<> t3 = std::tuple_cat(t1, t2); local
103 ((void)t3); // Prevent unused warning
108 std::tuple<int> t3 = std::tuple_cat(t1, t2); local
109 assert(std::get<0>(t3) == 2);
114 std::tuple<int> t3 = std::tuple_cat(t2, t1); local
115 assert(std::get<0>(t3) == 2);
120 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2); local
121 assert(std::get<0>(t3) == nullptr);
122 assert(std::get<1>(t3) == 2);
127 std::tuple<int, int*> t3 = std::tuple_cat(t2, t1) local
134 std::tuple<int*, int, double> t3 = std::tuple_cat(t1, t2); local
142 std::tuple<int, double, int*> t3 = std::tuple_cat(t2, t1); local
150 std::tuple<int*, MoveOnly, int, double> t3 = local
160 std::tuple<int, double, int*, MoveOnly> t3 = local
170 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
181 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
193 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
205 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
217 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly, int> t3 = local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.forward/
iosfwd.pass.cpp 20 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 = 0 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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/
tuple_cat.pass.cpp 92 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) == 2)
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...]

Completed in 983 milliseconds

1 2 3 4 5 6 7 8 91011>>