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

1 2 3 4

  /external/clang/test/CodeGen/
struct-passing.c 7 typedef int T0;
10 T0 __attribute__((const)) f0(void);
11 T0 __attribute__((pure)) f1(void);
bitfield-init.c 13 typedef union T0 { char field0 : 2; } T0;
14 T0 T0_values = { 0 };
  /external/clang/test/Modules/Inputs/
linkage-merge-sub.h 11 typedef int T0;
  /external/clang/test/Sema/
PR2919-builtin-types-compat-strips-crv.c 3 typedef struct foo T0;
6 int a0[__builtin_types_compatible_p(T0,
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 26 typedef std::pair<double, char> T0;
28 T0 t0(2.5, 'a');
30 t1 = t0;
convert_copy.pass.cpp 39 typedef std::tuple<double> T0;
41 T0 t0(2.5);
43 t1 = t0;
47 typedef std::tuple<double, char> T0;
49 T0 t0(2.5, 'a');
51 t1 = t0;
56 typedef std::tuple<double, char, D> T0;
58 T0 t0(2.5, 'a', D(3))
    [all...]
convert_move.pass.cpp 43 typedef std::tuple<double> T0;
45 T0 t0(2.5);
47 t1 = std::move(t0);
51 typedef std::tuple<double, char> T0;
53 T0 t0(2.5, 'a');
55 t1 = std::move(t0);
60 typedef std::tuple<double, char, D> T0;
62 T0 t0(2.5, 'a', D(3))
    [all...]
move_pair.pass.cpp 42 typedef std::pair<double, std::unique_ptr<D>> T0;
44 T0 t0(2.5, std::unique_ptr<D>(new D(3)));
46 t1 = std::move(t0);
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_const_pair.pass.cpp 30 typedef std::pair<double, int> T0;
32 T0 t0(2, 3);
33 T1 t1(std::allocator_arg, A1<int>(5), t0);
38 typedef std::pair<int, int> T0;
40 T0 t0(2, 3);
42 T1 t1(std::allocator_arg, A1<int>(5), t0);
48 typedef std::pair<int, int> T0;
50 T0 t0(2, 3)
    [all...]
alloc_convert_copy.pass.cpp 29 typedef std::tuple<double> T0;
31 T0 t0(2.5);
32 T1 t1(std::allocator_arg, A1<int>(), t0);
36 typedef std::tuple<int> T0;
38 T0 t0(2);
40 T1 t1(std::allocator_arg, A1<int>(5), t0);
45 typedef std::tuple<int, int> T0;
47 T0 t0(2, 3)
    [all...]
const_pair.pass.cpp 25 typedef std::pair<double, char> T0;
27 T0 t0(2.5, 'a');
28 T1 t1 = t0;
alloc_convert_move.pass.cpp 46 typedef std::tuple<int> T0;
48 T0 t0(2);
50 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
55 typedef std::tuple<std::unique_ptr<D>> T0;
57 T0 t0(std::unique_ptr<D>(new D(3)));
58 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
62 typedef std::tuple<int, std::unique_ptr<D>> T0;
64 T0 t0(2, std::unique_ptr<D>(new D(3)))
    [all...]
alloc_move_pair.pass.cpp 46 typedef std::pair<int, std::unique_ptr<D>> T0;
48 T0 t0(2, std::unique_ptr<D>(new D(3)));
50 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
convert_copy.pass.cpp 59 typedef std::tuple<double> T0;
61 T0 t0(2.5);
62 T1 t1 = t0;
67 typedef std::tuple<double> T0;
69 constexpr T0 t0(2.5);
70 constexpr T1 t1 = t0;
74 typedef std::tuple<int> T0;
76 constexpr T0 t0(2)
    [all...]
convert_move.pass.cpp 41 typedef std::tuple<double> T0;
43 T0 t0(2.5);
44 T1 t1 = std::move(t0);
48 typedef std::tuple<double, char> T0;
50 T0 t0(2.5, 'a');
51 T1 t1 = std::move(t0);
56 typedef std::tuple<double, char, D> T0;
58 T0 t0(2.5, 'a', D(3))
    [all...]
move_pair.pass.cpp 41 typedef std::pair<double, std::unique_ptr<D>> T0;
43 T0 t0(2.5, std::unique_ptr<D>(new D(3)));
44 T1 t1 = std::move(t0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 24 typedef std::pair<double, char> T0;
26 T0 t0(2.5, 'a');
28 t1 = t0;
convert_copy.pass.cpp 37 typedef std::tuple<double> T0;
39 T0 t0(2.5);
41 t1 = t0;
45 typedef std::tuple<double, char> T0;
47 T0 t0(2.5, 'a');
49 t1 = t0;
54 typedef std::tuple<double, char, D> T0;
56 T0 t0(2.5, 'a', D(3))
    [all...]
convert_move.pass.cpp 40 typedef std::tuple<double> T0;
42 T0 t0(2.5);
44 t1 = std::move(t0);
48 typedef std::tuple<double, char> T0;
50 T0 t0(2.5, 'a');
52 t1 = std::move(t0);
57 typedef std::tuple<double, char, D> T0;
59 T0 t0(2.5, 'a', D(3))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_const_pair.pass.cpp 28 typedef std::pair<double, int> T0;
30 T0 t0(2, 3);
31 T1 t1(std::allocator_arg, A1<int>(5), t0);
36 typedef std::pair<int, int> T0;
38 T0 t0(2, 3);
40 T1 t1(std::allocator_arg, A1<int>(5), t0);
46 typedef std::pair<int, int> T0;
48 T0 t0(2, 3)
    [all...]
alloc_convert_copy.pass.cpp 27 typedef std::tuple<double> T0;
29 T0 t0(2.5);
30 T1 t1(std::allocator_arg, A1<int>(), t0);
34 typedef std::tuple<int> T0;
36 T0 t0(2);
38 T1 t1(std::allocator_arg, A1<int>(5), t0);
43 typedef std::tuple<int, int> T0;
45 T0 t0(2, 3)
    [all...]
const_pair.pass.cpp 23 typedef std::pair<double, char> T0;
25 T0 t0(2.5, 'a');
26 T1 t1 = t0;
  /external/clang/test/Layout/
ms-x86-misalignedarray.cpp 6 struct T0 { char c; };
7 struct T2 : virtual T0 { };
  /external/clang/test/SemaCXX/
PR10243.cpp 5 struct T0 {
7 T0() = default;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p10.cpp 3 typedef const int T0;
8 mutable T0 f1; // expected-error{{'mutable' and 'const' cannot be mixed}}

Completed in 676 milliseconds

1 2 3 4