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

1 2 3 4 5 6 7 8

  /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 {{initializer}} local
  /ndk/sources/cxx-stl/llvm-libc++/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++/test/utilities/function.objects/bind/func.bind/func.bind.place/
placeholders.pass.cpp 21 T t3 = t; local
  /ndk/sources/cxx-stl/llvm-libc++/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...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p1.cpp 9 Tuple<int, float, double> *t3; variable
  /ndk/sources/cxx-stl/llvm-libc++/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++/test/utilities/tuple/tuple.tuple/tuple.creation/
tuple_cat.pass.cpp 66 std::tuple<> t3 = std::tuple_cat(t1, t2); local
71 std::tuple<int> t3 = std::tuple_cat(t1, t2); local
72 assert(std::get<0>(t3) == 2);
77 std::tuple<int> t3 = std::tuple_cat(t2, t1); local
78 assert(std::get<0>(t3) == 2);
83 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2); local
84 assert(std::get<0>(t3) == nullptr);
85 assert(std::get<1>(t3) == 2);
90 std::tuple<int, int*> t3 = std::tuple_cat(t2, t1); local
91 assert(std::get<0>(t3) == 2)
97 std::tuple<int*, int, double> t3 = std::tuple_cat(t1, t2); local
105 std::tuple<int, double, int*> t3 = std::tuple_cat(t2, t1); local
113 std::tuple<int*, MoveOnly, int, double> t3 = local
123 std::tuple<int, double, int*, MoveOnly> t3 = local
133 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
144 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
156 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
168 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
180 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly, int> t3 = local
    [all...]
  /external/dropbear/libtommath/
bn_mp_n_root.c 30 mp_int t1, t2, t3; local
46 if ((res = mp_init (&t3)) != MP_OKAY) {
65 /* t3 = t1**(b-1) */
66 if ((res = mp_expt_d (&t1, b - 1, &t3)) != MP_OKAY) {
72 if ((res = mp_mul (&t3, &t1, &t2)) != MP_OKAY) {
82 /* t3 = t1**(b-1) * b */
83 if ((res = mp_mul_d (&t3, b, &t3)) != MP_OKAY) {
87 /* t3 = (t1**b - a)/(b * t1**(b-1)) */
88 if ((res = mp_div (&t2, &t3, &t3, NULL)) != MP_OKAY) {
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.ops/
merge.pass.cpp 25 const T t3[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; local
29 C c3(std::begin(t3), std::end(t3));
merge_pred.pass.cpp 26 const T t3[] = {15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}; local
30 C c3(std::begin(t3), std::end(t3));
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.lock/
types.pass.cpp 27 typedef std::adopt_lock_t T3;
31 T3 t3 = std::adopt_lock; local
  /external/clang/test/CodeGen/
ms-inline-asm.c 22 void t3() { function
23 // CHECK: @t3
  /external/clang/test/PCH/Inputs/
namespaces.h 19 typedef int t3; typedef in namespace:N2::Inner
  /external/clang/test/Parser/
ms-inline-asm.c 9 void t3(void) { __asm M2 0x2c } function
  /external/qemu/distrib/sdl-1.2.15/test/
testtimer.c 30 SDL_TimerID t1, t2, t3; local
69 t3 = SDL_AddTimer(233, callback, (void*)3);
70 if(!t3)
83 SDL_RemoveTimer(t3);
  /libcore/luni/src/test/java/libcore/java/sql/
OldTimestampTest.java 35 Timestamp t3 = new Timestamp(Long.MIN_VALUE + 807); local
36 assertEquals("292278994-08-17 07:12:55.999", t3.toString());
  /system/extras/tests/bionic/libc/common/
test_pthread_join.c 65 pthread_t t1, t2, t3; local
69 pthread_create( &t3, NULL, thread3_func, (void*)t1 );
72 pthread_join(t3, NULL);
  /development/samples/ApiDemos/src/com/example/android/apis/text/
Link.java 59 TextView t3 = (TextView) findViewById(R.id.text3); local
60 t3.setText(
65 t3.setMovementMethod(LinkMovementMethod.getInstance());
  /external/chromium/third_party/modp_b64/
modp_b64.cc 86 uint8_t t1, t2, t3; local
89 t1 = str[i]; t2 = str[i+1]; t3 = str[i+2];
92 *p++ = e1[((t2 & 0x0F) << 2) | ((t3 >> 6) & 0x03)];
93 *p++ = e2[t3];
  /external/clang/test/CodeGenCXX/
bitfield-layout.cpp 18 } t3; variable in typeref:union:Test3
rtti-linkage.cpp 130 void t3() { function

Completed in 310 milliseconds

1 2 3 4 5 6 7 8