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

1 2

  /external/clang/test/Index/
index-suppress-refs.cpp 6 typedef B2 Base2;
annotate-context-sensitive.cpp 13 struct Base2 {
17 struct Derived2 : Base2 {
  /external/clang/test/Parser/
cxx-invalid-function-decl.cpp 24 struct Base2 {
26 Base2(T a2) : x2(a2) {}
29 struct S : public Base1<int>, public Base2<float> {
33 S() : ::Base1<int>(0) ::new, ::Base2<float>(1.0) ::delete x(2) {} // expected-error{{expected class member or base class name}}
37 S(int a) : Base1<int>(a), ::Base2<float>(1.0), ::, // expected-error{{expected class member or base class name}}
38 ::new, ! ::delete, ::Base2<() x(3) {} // expected-error{{expected class member or base class name}}
41 S(const S &) : Base1<int>(0) ::Base2<float>(1.0) x(2) {} // expected-error2{{missing ',' between base or member initializers}}
cxx0x-override-control-keywords.cpp 18 struct Base2 {
22 struct A : Base2 {
  /external/clang/test/CXX/class/class.mem/
p8-0x.cpp 12 struct Base2 {
17 struct B : Base2 {
40 struct Base2 {
44 struct B : Base2 {
  /external/clang/test/CodeCompletion/
member-access.cpp 6 struct Base2 {
12 struct Base3 : Base1, Base2 {
33 // CHECK-CC1: member1 : [#int#][#Base2::#]member1
39 // CHECK-CC1: memfun1 (Hidden) : [#void#]Base2::memfun1(<#int#>)
  /external/clang/test/CodeGenCXX/
homogeneous-aggregates.cpp 17 struct Base2 {
26 struct D2 : Base2 { // homogeneous aggregate
29 struct D3 : Base1, Base2 { // non-homogeneous aggregate
32 struct D4 : Base2, Base3 { // homogeneous aggregate
36 struct I1 : Base2 {};
37 struct I2 : Base2 {};
38 struct I3 : Base2 {};
apple-kext-indirect-call-2.cpp 43 struct Base2 { };
45 struct Derived2 : virtual Base2 {
  /external/libcxxabi/test/
inherited_exception.pass.cpp 43 struct Base2 {
47 struct Child : public Base, public Base2 {
64 throw static_cast<Base2&>(child);
72 throw static_cast<Base2*>(&child);
118 catch (const Base2& c)
144 catch (const Base2& b)
166 catch (const Base2* c)
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
inherited_exception.pass.cpp 34 struct Base2 {
38 struct Child : public Base, public Base2 {
55 throw static_cast<Base2&>(child);
63 throw static_cast<Base2*>(&child);
109 catch (const Base2& c)
135 catch (const Base2& b)
157 catch (const Base2* c)
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/test/
inherited_exception.pass.cpp 34 struct Base2 {
38 struct Child : public Base, public Base2 {
55 throw static_cast<Base2&>(child);
63 throw static_cast<Base2*>(&child);
109 catch (const Base2& c)
135 catch (const Base2& b)
157 catch (const Base2* c)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/
loosing_mro_ref.py 15 X.__bases__ = (Base2,)
27 class Base2(object):
28 mykey = 'from Base2'
  /external/python/cpython2/Lib/test/crashers/
loosing_mro_ref.py 15 X.__bases__ = (Base2,)
27 class Base2(object):
28 mykey = 'from Base2'
  /frameworks/support/lifecycle/compiler/src/tests/test-data/
InheritanceOk1.java 46 class Base2 {
52 class Derived3 extends Base2 {
  /external/testng/src/test/java/test/superclass/
Base2.java 8 public class Base2 {
Child2Test.java 6 public class Child2Test extends Base2 {
  /external/clang/test/Analysis/
reinterpret-cast.cpp 28 class Base2 {};
29 class Derived2 : public Base2 {};
31 void f2(Base2 *foo);
  /external/clang/test/SemaCXX/
offsetof.cpp 45 struct Base2 {
49 struct Derived2 : public Base1, public Base2 {
virtual-override.cpp 151 struct Base2 { };
155 (void)sizeof(Foo<Base2>); // expected-note{{instantiation}}
165 Foo2<Base2> f2;
MicrosoftSuper.cpp 53 struct Base2 {
57 struct MemberFunctionInMultipleBases : Base1, Base2 {
empty-class-layout.cpp 153 struct Base2 : Empty { };
154 struct Test : Base1, Base2 {
  /external/protobuf/src/google/protobuf/stubs/
statusor_test.cc 50 class Base2 {
52 virtual ~Base2() {}
56 class Derived : public Base1, public Base2 {
206 StatusOr<Base2*> copy(original);
208 EXPECT_EQ(static_cast<const Base2*>(original.ValueOrDie()),
214 StatusOr<Base2*> copy(original);
237 StatusOr<Base2*> target;
240 EXPECT_EQ(static_cast<const Base2*>(source.ValueOrDie()),
246 StatusOr<Base2*> target;
  /external/clang/test/SemaTemplate/
dependent-base-classes.cpp 71 struct Base2 {
76 struct Derived : Base1<T>, Base2 {
instantiate-using-decl.cpp 36 typedef Visitor2<Derived> Base2;
39 using Base2::Visit;
member-access-expr.cpp 24 typedef TheBase Base2;
25 x.Base2::f0();

Completed in 758 milliseconds

1 2