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

1 2

  /external/clang/test/CodeGenCXX/
empty-union.cpp 7 union NonPODUnion 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 void @_ZN5Test2C1Ev(%class.Test2* %var)
26 Test2 var;
28 // CHECK-NEXT: call void @_ZN5Test2C1Ev(%class.Test2* %var)
29 var.Test2::Test2();
32 var.Test2::Test2(var)
    [all...]
cxx11-vtable-key-function.cpp 16 namespace Test2 {
rtti-visibility.cpp 4 // RUN: FileCheck --check-prefix=CHECK-TEST2 %s < %t
5 // RUN: FileCheck --check-prefix=CHECK-TEST2-HIDDEN %s < %t.hidden
23 namespace Test2 {
25 // CHECK-TEST2: @_ZTSN5Test21AE = linkonce_odr constant
26 // CHECK-TEST2: @_ZTIN5Test21AE = linkonce_odr unnamed_addr constant
30 // CHECK-TEST2-HIDDEN: _ZTSN5Test21AE = linkonce_odr constant
31 // CHECK-TEST2-HIDDEN: @_ZTIN5Test21AE = linkonce_odr hidden unnamed_addr constant
bitfield-layout.cpp 10 // CHECK-LP64: %union.Test2 = type { i8 }
11 union Test2 {
class-layout.cpp 9 namespace Test2 {
11 // CHECK: %"struct.Test2::A" = type { i8*, i32 }
thunks-available-externally.cpp 41 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...]
value-init.cpp 96 struct Test2 {
119 Test2 empty2[3] = {};
skip-vtable-pointer-initialization.cpp 21 namespace Test2 {
vtable-available-externally.cpp 3 // RUN: FileCheck --check-prefix=CHECK-TEST2 %s < %t
39 // Test2::A's key function (f) is defined in this translation unit, but when
44 // CHECK-TEST2: @_ZTSN5Test21AE = constant
45 // CHECK-TEST2: @_ZTIN5Test21AE = unnamed_addr constant
46 // CHECK-TEST2: @_ZTVN5Test21AE = unnamed_addr constant
47 namespace Test2 {
  /external/clang/test/Sema/
warn-outof-range-assign-enum.c 18 enum Test2 { K_zero, K_one };
19 enum Test2 test2(enum Test2 *t) { function
20 *t = 20; // expected-warning {{integer constant not in range of enumerated type 'enum Test2'}}
21 return 10; // expected-warning {{integer constant not in range of enumerated type 'enum Test2'}}
constant-conversion.c 22 enum Test2 { K_zero, K_one };
23 enum Test2 test2(enum Test2 *t) { function
  /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/clang/test/Index/
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/icu4c/test/intltest/
rndmcoll.h 24 void Test2();
rndmcoll.cpp 74 void RandomCollatorTest::Test2(){
85 TESTCASE(1, Test2);
  /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/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/SemaObjC/
foreach.m 50 @interface Test2
53 void test2(NSObject<NSFastEnumeration> *collection) {
54 Test2 *obj;
  /external/clang/test/CodeGen/
2002-02-17-ArgumentAddress.c 19 int Test2(int X, struct Test A, int Y) {
  /external/clang/test/CXX/class.access/
p4.cpp 88 namespace test2 { namespace
99 class B : A { }; // expected-error {{base class 'test2::A' has private default constructor}}
107 class D : C { }; // expected-error {{inherited virtual base class 'test2::A' has private default constructor}}
169 Public test2() { return *this; } function in class:test4::Derived1
173 Public test2(Derived1 &d) { return d; } // expected-error {{cannot cast 'test4::Derived1' to its private base class}} \ function in namespace:test4
179 Public test2() { return *this; } function in class:test4::Derived2
182 Public test2(Derived2 &d) { return d; } function in namespace:test4
190 Public test2(Derived3 &d) { return d; } // expected-error {{'operator Public' is a private member of 'test4::Base'}} \ function in namespace:test4
198 Public test2(Derived4 &d) { return d; } function in namespace:test4
213 class Test2 : A {}; // expected-error {{private member}
214 void test2() { function in namespace:test5
233 void test2(const Test2 &t) { function in namespace:test6
382 int test2(A<int> &a) { function in class:test15::A
407 int test2(A<int> &a) { function in class:test15::B
    [all...]
  /external/chromium/testing/gtest/test/
gtest_filter_unittest_.cc 100 TEST(HasDeathTest, Test2) {
  /external/clang/test/CXX/class.derived/class.virtual/
p3-0x.cpp 15 namespace Test2 {

Completed in 282 milliseconds

1 2