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

1 2 3 4 5

  /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<long, char> T0;
28 T0 t0(2, 'a');
30 t1 = t0;
convert_copy.pass.cpp 39 typedef std::tuple<long> T0;
41 T0 t0(2);
43 t1 = t0;
47 typedef std::tuple<long, char> T0;
49 T0 t0(2, 'a');
51 t1 = t0;
56 typedef std::tuple<long, char, D> T0;
58 T0 t0(2, 'a', D(3))
    [all...]
move_pair.pass.cpp 42 typedef std::pair<long, std::unique_ptr<D>> T0;
44 T0 t0(2, 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<long, 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...]
const_pair.pass.cpp 27 typedef std::pair<long, char> T0;
29 T0 t0(2, 'a');
30 T1 t1 = t0;
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
error1.go 13 type T0 struct {
error2.go 13 type T0 struct {
  /prebuilts/go/darwin-x86/test/fixedbugs/issue6295.dir/
p0.go 7 type T0 interface {
  /prebuilts/go/linux-x86/src/go/doc/testdata/
error1.go 13 type T0 struct {
error2.go 13 type T0 struct {
  /prebuilts/go/linux-x86/test/fixedbugs/issue6295.dir/
p0.go 7 type T0 interface {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 26 typedef std::pair<long, char> T0;
28 T0 t0(2, 'a');
30 t1 = t0;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_const_pair.pass.cpp 30 typedef std::pair<long, 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...]
const_pair.pass.cpp 27 typedef std::pair<long, char> T0;
29 T0 t0(2, 'a');
30 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;
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue11790.go 13 type T0 struct {
17 func (*T0) M0() {
22 *T0
31 t0 := T0{42}
32 t2 := T2{&t0}
35 (*q).T0.M0()
issue21273.go 9 type T0 T0 // ERROR "invalid recursive type"
10 type _ map[T0]int
  /prebuilts/go/linux-x86/test/fixedbugs/
issue11790.go 13 type T0 struct {
17 func (*T0) M0() {
22 *T0
31 t0 := T0{42}
32 t2 := T2{&t0}
35 (*q).T0.M0()
issue21273.go 9 type T0 T0 // ERROR "invalid recursive type"
10 type _ map[T0]int
  /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 1003 milliseconds

1 2 3 4 5