Searched defs:t2 (Results 1 - 25 of 552) 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 Dattr-naked.c14 // CHECK: define void @t2() [[NAKED]] {
15 __attribute((naked, always_inline)) void t2() { function
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-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/utilities/type.index/type.index.overview/
H A Dcopy_ctor.pass.cpp22 std::type_index t2 = t1; local
23 assert(t2 == t1);
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_equal.c42 pthread_equal (pthread_t t1, pthread_t t2) argument
46 * This function returns nonzero if t1 and t2 are equal, else
51 * t2
56 * This function returns nonzero if t1 and t2 are equal, else
60 * non-zero if t1 and t2 refer to the same thread,
61 * 0 t1 and t2 do not refer to the same thread
72 result = ( t1.p == t2.p && t1.x == t2.x );
/external/chromium_org/v8/test/mjsunit/regress/
H A Dpolymorphic-accessor-test-context.js8 function t2() { return this instanceof t2; } function
/external/clang/test/PCH/
H A Dcxx-static_assert.cpp19 T<2> t2; variable
/external/libcxx/test/language.support/support.rtti/type.info/
H A Dtype_info.pass.cpp19 const std::type_info& t2 = typeid(int); local
20 assert(t1 == t2);
23 assert(!t1.before(t2));
24 assert(strcmp(t1.name(), t2.name()) == 0);
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/re/re.traits/
H A Ddefault.pass.cpp27 std::regex_traits<wchar_t> t2; local
28 assert(t2.getloc().name() == "C");
34 std::regex_traits<wchar_t> t2; local
35 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
H A Dgetloc.pass.cpp26 std::regex_traits<wchar_t> t2; local
27 assert(t2.getloc().name() == "C");
33 std::regex_traits<wchar_t> t2; local
34 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
/external/libcxx/test/utilities/time/time.clock/time.clock.steady/
H A Dnow.pass.cpp23 C::time_point t2 = C::now(); local
24 assert(t2 >= t1);
/external/libcxx/test/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 Dcpsetup.s44 t2: label
/external/clang/test/CodeCompletion/
H A Ddocumentation.cpp22 T2 t2; local
23 t2.
/external/libcxx/test/input.output/iostream.forward/
H A Diosfwd.pass.cpp19 std::char_traits<wchar_t>* t2 = 0; local
24 std::basic_ios<wchar_t>* t2 = 0; local
29 std::basic_streambuf<wchar_t>* t2 = 0; local
34 std::basic_istream<wchar_t>* t2 = 0; local
39 std::basic_ostream<wchar_t>* t2 = 0; local
44 std::basic_iostream<wchar_t>* t2 = 0; local
49 std::basic_stringbuf<wchar_t>* t2 = 0; local
54 std::basic_istringstream<wchar_t>* t2 = 0; local
59 std::basic_ostringstream<wchar_t>* t2 = 0; local
64 std::basic_stringstream<wchar_t>* t2 local
69 std::basic_filebuf<wchar_t>* t2 = 0; local
74 std::basic_ifstream<wchar_t>* t2 = 0; local
79 std::basic_ofstream<wchar_t>* t2 = 0; local
84 std::basic_fstream<wchar_t>* t2 = 0; local
89 std::istreambuf_iterator<wchar_t>* t2 = 0; local
94 std::ostreambuf_iterator<wchar_t>* t2 = 0; local
99 std::wios* t2 = 0; local
103 std::istream* t2 = 0; local
109 std::istringstream* t2 = 0; local
115 std::ifstream* t2 = 0; local
121 std::wistream* t2 = 0; local
127 std::wistringstream* t2 = 0; local
133 std::wifstream* t2 = 0; local
139 std::streampos* t2 = 0; local
[all...]
/external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.place/
H A Dplaceholders.pass.cpp20 T t2; local
/external/libcxx/test/utilities/time/time.point/time.point.nonmember/
H A Dop_-duration.pass.cpp28 std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5); local
29 assert(t2.time_since_epoch() == Duration2(2995));
34 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5); local
35 static_assert(t2.time_since_epoch() == Duration2(2995), "");
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/
H A Dtuple_cat.pass.cpp31 std::tuple<> t2 = std::tuple_cat(t1); local
51 constexpr std::tuple<> t2 = std::tuple_cat(t1); local
91 std::tuple<> t2; local
92 std::tuple<> t3 = std::tuple_cat(t1, t2);
96 std::tuple<int> t2(2);
97 std::tuple<int> t3 = std::tuple_cat(t1, t2);
102 std::tuple<int> t2(2);
103 std::tuple<int> t3 = std::tuple_cat(t2, t1);
108 std::tuple<int> t2(2);
109 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2);
[all...]
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.rel/
H A Deq.pass.cpp28 const T2 t2; local
29 assert(t1 == t2);
30 assert(!(t1 != t2));
36 const T2 t2(1.1);
37 assert(!(t1 == t2));
38 assert(t1 != t2);
44 const T2 t2(1);
45 assert(t1 == t2);
46 assert(!(t1 != t2));
52 const T2 t2(
[all...]
H A Dlt.pass.cpp40 const T2 t2; local
41 assert(!(t1 < t2));
42 assert( (t1 <= t2));
43 assert(!(t1 > t2));
44 assert( (t1 >= t2));
50 const T2 t2(1);
51 assert(!(t1 < t2));
52 assert( (t1 <= t2));
53 assert(!(t1 > t2));
54 assert( (t1 >= t2));
[all...]

Completed in 2003 milliseconds

1234567891011>>