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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/except/except.spec/
template.cpp 9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}} variable
  /external/clang/test/CodeGen/
2006-01-16-BitCountIntrinsicsUnsigned.c 3 unsigned t2(unsigned X) { function
4 // CHECK: t2
attr-naked.c 14 // CHECK: define void @t2() [[NAKED]] {
15 __attribute((naked, always_inline)) void t2() { function
vla-4.c 13 void t2() { function
arm-neon-misc.c 24 void t2(uint64_t *src1, uint8_t *src2, uint64x2_t *dst) { function
25 // CHECK: @t2
arm-vaarg-align.c 22 double t2(int i, ...) { function
23 // AAPCS: t2
24 // APCS-GNU: t2
arm-vector-align.c 24 void t2(char *addr) { function
25 // CHECK: @t2
  /external/libcxx/test/utilities/type.index/type.index.overview/
copy_ctor.pass.cpp 22 std::type_index t2 = t1; local
23 assert(t2 == t1);
  /external/chromium_org/v8/test/mjsunit/regress/
polymorphic-accessor-test-context.js 8 function t2() { return this instanceof t2; } function
  /external/clang/test/PCH/
cxx-static_assert.cpp 19 T<2> t2; variable
  /external/libcxx/test/language.support/support.rtti/type.info/
type_info.pass.cpp 19 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);
type_info_hash.pass.cpp 19 const std::type_info& t2 = typeid(int); local
21 assert(t1.hash_code() == t2.hash_code());
  /external/libcxx/test/re/re.traits/
default.pass.cpp 27 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);
getloc.pass.cpp 26 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/function.objects/bind/func.bind/func.bind.place/
placeholders.pass.cpp 20 T t2; local
  /external/libcxx/test/utilities/time/time.clock/time.clock.steady/
now.pass.cpp 23 C::time_point t2 = C::now(); local
24 assert(t2 >= t1);
  /external/libcxx/test/utilities/type.index/type.index.members/
eq.pass.cpp 23 std::type_index t2 = typeid(int); local
25 assert(t1 == t2);
lt.pass.cpp 25 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/
cpsetup.s 44 t2: label
  /external/clang/test/CodeCompletion/
documentation.cpp 8 class T2 {
22 T2 t2; local
23 t2.
28 // CHECK-CC1: COMPLETION: T2 : T2 : Bbb.
  /external/libcxx/test/input.output/iostream.forward/
iosfwd.pass.cpp 19 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 = 0 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/time/time.point/time.point.nonmember/
op_-duration.pass.cpp 28 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/
tuple_cat.pass.cpp 31 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/
eq.pass.cpp 26 typedef std::tuple<> T2;
28 const T2 t2; local
29 assert(t1 == t2);
30 assert(!(t1 != t2));
34 typedef std::tuple<double> T2;
36 const T2 t2(1.1);
37 assert(!(t1 == t2));
38 assert(t1 != t2);
    [all...]
lt.pass.cpp 38 typedef std::tuple<> T2;
40 const T2 t2; local
41 assert(!(t1 < t2));
42 assert( (t1 <= t2));
43 assert(!(t1 > t2));
44 assert( (t1 >= t2));
48 typedef std::tuple<double> T2;
50 const T2 t2(1)
    [all...]

Completed in 294 milliseconds

1 2 3 4 5 6 7 8 91011>>