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

1 2 3

  /external/clang/test/Index/
attributes.c 3 struct __attribute__((packed)) Test2 {
11 // CHECK: attributes.c:3:32: StructDecl=Test2:3:32 (Definition) Extent=[3:1 - 5:2]
file-refs.cpp 32 namespace Test2 {
43 p = Test2::S(0,2);
44 p = Test2::Cake(0,2);
95 // CHECK-NEXT: TypeRef=struct Test2::S:34:8 =[39:9 - 39:10]
96 // CHECK-NEXT: TypeRef=struct Test2::S:34:8 =[43:14 - 43:15]
  /external/clang/test/CodeGenCXX/
empty-union.cpp 7 union NonPODUnion Test2;
mangle-valist.cpp 8 class Test2 {
10 void test2(const char *fmt, va_list ap);
13 void Test2::test2(const char *fmt, va_list ap) { function in class:Test2
rtti-visibility.cpp 3 // RUN: FileCheck --check-prefix=CHECK-TEST2 %s < %t
21 namespace Test2 {
23 // CHECK-TEST2: @_ZTSN5Test21AE = linkonce_odr constant
24 // CHECK-TEST2: @_ZTIN5Test21AE = linkonce_odr constant
cxx11-vtable-key-function.cpp 16 namespace Test2 {
bitfield-layout.cpp 10 // CHECK-LP64: %union.Test2 = type { i8 }
11 union Test2 {
constructor-direct-call.cpp 16 class Test2 {
18 Test2() { a = 10; b = 10; }
24 // CHECK: %var = alloca %class.Test2, align 4
25 // CHECK-NEXT: call x86_thiscallcc void @_ZN5Test2C1Ev(%class.Test2* %var)
26 Test2 var;
28 // CHECK-NEXT: call x86_thiscallcc void @_ZN5Test2C1Ev(%class.Test2* %var)
29 var.Test2::Test2();
32 var.Test2::Test2(var)
    [all...]
thunks-available-externally.cpp 41 namespace Test2 {
class-layout.cpp 9 namespace Test2 {
11 // CHECK: %"struct.Test2::A" = type { i8*, i32 }
devirtualize-virtual-function-calls-final.cpp 15 namespace Test2 {
skip-vtable-pointer-initialization.cpp 21 namespace Test2 {
vtable-available-externally.cpp 3 // RUN: FileCheck --check-prefix=CHECK-TEST2 %s < %t
32 // Test2::A's key function (f) is defined in this translation unit, but when
37 // CHECK-TEST2: @_ZTSN5Test21AE = constant
38 // CHECK-TEST2: @_ZTIN5Test21AE = constant
39 // CHECK-TEST2: @_ZTVN5Test21AE = unnamed_addr constant
40 namespace Test2 {
vtable-layout-abi-examples.cpp 170 namespace Test2 {
178 // CHECK-6: Vtable for 'Test2::D' (11 entries).
182 // CHECK-6-NEXT: 3 | Test2::D RTTI
183 // CHECK-6-NEXT: -- (Test2::A, 0) vtable address --
184 // CHECK-6-NEXT: -- (Test2::B, 0) vtable address --
185 // CHECK-6-NEXT: -- (Test2::D, 0) vtable address --
186 // CHECK-6-NEXT: 4 | void Test2::A::f()
187 // CHECK-6-NEXT: 5 | void Test2::D::d()
191 // CHECK-6-NEXT: 9 | Test2::D RTTI
192 // CHECK-6-NEXT: -- (Test2::C, 16) vtable address -
    [all...]
  /external/clang/test/PCH/
cxx11-inheriting-ctors.cpp 21 struct Test2 : Base {
34 Test2<int> test2a(42);
35 Test2<int> test2b(nullptr);
  /external/clang/test/SemaCXX/
bitfield-layout.cpp 13 struct Test2 {
16 CHECK_SIZE(Test2, 2);
17 CHECK_ALIGN(Test2, 2);
ambig-user-defined-conversions.cpp 29 void Test2() {
51 void Test2()
  /external/chromium_org/third_party/icu/source/test/intltest/
rndmcoll.cpp 74 void RandomCollatorTest::Test2(){
85 TESTCASE(1, Test2);
  /external/clang/test/CXX/class/
p2-0x.cpp 9 namespace Test2 {
15 struct D : C<int> { }; // expected-note {{in instantiation of template class 'Test2::C<int>' requested here}}
  /external/clang/test/CXX/basic/basic.link/
p7.cpp 28 namespace Test2 {
  /external/clang/test/CodeGen/
2002-02-17-ArgumentAddress.c 19 int Test2(int X, struct Test A, int Y) {
  /external/clang/test/Analysis/
dead-stores.cpp 26 class Test2 {
29 Test2(int &y) : x(y) {}
30 ~Test2() { ++x; }
33 int test2(int x) { function
34 { Test2 a(x); } // no-warning
  /external/clang/test/Misc/
ast-dump-attr.cpp 133 auto Test2 = []() __attribute__((noreturn)) { while(1); };
  /external/clang/test/CXX/class.derived/class.virtual/
p3-0x.cpp 15 namespace Test2 {
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p12.cpp 41 void test2() { Opaque<0> _ = foo(Opaque<2>()); } function in struct:test1::Test0
53 void test2() { Opaque<0> _ = foo(Opaque<2>()); } function in struct:test1::Test1
58 struct Test2 : Base {
66 void test2() { Opaque<1> _ = foo(Opaque<2>()); } function in struct:test1::Test2
72 namespace test2 { namespace

Completed in 1089 milliseconds

1 2 3