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

1 2

  /external/clang/test/CodeGenCXX/
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...]
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 }
devirtualize-virtual-function-calls-final.cpp 15 namespace Test2 {
value-init.cpp 96 struct Test2 {
119 Test2 empty2[3] = {};
thunks-available-externally.cpp 41 namespace Test2 {
vtable-layout-abi-examples.cpp 159 namespace Test2 {
167 // CHECK: Vtable for 'Test2::D' (11 entries).
171 // CHECK-NEXT: 3 | Test2::D RTTI
172 // CHECK-NEXT: -- (Test2::A, 0) vtable address --
173 // CHECK-NEXT: -- (Test2::B, 0) vtable address --
174 // CHECK-NEXT: -- (Test2::D, 0) vtable address --
175 // CHECK-NEXT: 4 | void Test2::A::f()
176 // CHECK-NEXT: 5 | void Test2::D::d()
180 // CHECK-NEXT: 9 | Test2::D RTTI
181 // CHECK-NEXT: -- (Test2::C, 16) vtable address -
    [all...]
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 {
vtt-layout.cpp 14 // Check that we don't add a secondary virtual pointer for Test2::A, since Test2::A doesn't have any virtual member functions or bases.
15 namespace Test2 {
  /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()
class-base-member-init.cpp 39 namespace Test2 {
class-layout.cpp 90 namespace Test2 {
  /external/clang/test/Sema/
constant-conversion.c 22 enum Test2 { K_zero, K_one };
23 enum Test2 test2(enum Test2 *t) { function
  /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 29 class Test2 {
32 Test2(int &y) : x(y) {}
33 ~Test2() { ++x; }
36 int test2(int x) { function
37 { 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/CXX/class.derived/class.virtual/
p3-0x.cpp 15 namespace Test2 {
  /external/gtest/test/
gtest_list_tests_unittest_.cc 71 TEST_F(FooTest, Test2) {
  /external/llvm/test/FrontendC/
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) {

Completed in 442 milliseconds

1 2