Searched refs:Base2 (Results 1 - 25 of 27) sorted by relevance

12

/external/clang/test/Index/
H A Dindex-suppress-refs.cpp6 typedef B2 Base2; typedef in class:Sub
H A Dannotate-context-sensitive.cpp13 struct Base2 { struct
17 struct Derived2 : Base2 {
/external/clang/test/CXX/class/class.mem/
H A Dp8-0x.cpp12 struct Base2 { struct
17 struct B : Base2 {
40 struct Base2 { struct in namespace:inline_extension
44 struct B : Base2 {
/external/clang/test/CodeCompletion/
H A Dmember-access.cpp6 struct Base2 { struct
12 struct Base3 : Base1, Base2 {
33 // CHECK-CC1: member1 : [#int#][#Base2::#]member1
39 // CHECK-CC1: memfun1 (Hidden) : [#void#]Base2::memfun1(<#int#>)
/external/clang/test/Parser/
H A Dcxx0x-override-control-keywords.cpp18 struct Base2 { struct
22 struct A : Base2 {
/external/clang/test/CodeGenCXX/
H A Dhomogeneous-aggregates.cpp17 struct Base2 { struct
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 {};
H A Dapple-kext-indirect-call-2.cpp43 struct Base2 { }; struct
45 struct Derived2 : virtual Base2 {
H A Dthunks.cpp156 struct Base2 { struct in namespace:Test6
162 struct Thunks : Base1, Base2 {
H A Dvisibility.cpp368 struct Base2 : virtual Base1 { virtual void foo(); }; struct in namespace:Test16
369 template <class T> struct A : virtual Base1, Base2 {
/external/libcxxabi/test/
H A Dinherited_exception.pass.cpp34 struct Base2 { struct
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)
/external/clang/test/Analysis/
H A Dreinterpret-cast.cpp28 class Base2 {}; class in namespace:PR14872
29 class Derived2 : public Base2 {};
31 void f2(Base2 *foo);
/external/clang/test/SemaCXX/
H A Doffsetof.cpp45 struct Base2 { struct
49 struct Derived2 : public Base1, public Base2 {
H A Dvirtual-override.cpp151 struct Base2 { }; struct
155 (void)sizeof(Foo<Base2>); // expected-note{{instantiation}}
165 Foo2<Base2> f2;
H A DMicrosoftCompatibility.cpp176 typedef B<U> Base2; typedef in class:MissingTypename::C
183 Base2::TYPE a4; // expected-warning {{missing 'typename' prior to dependent type name}}
H A DMicrosoftSuper.cpp53 struct Base2 { struct
57 struct MemberFunctionInMultipleBases : Base1, Base2 {
H A Dempty-class-layout.cpp153 struct Base2 : Empty { }; struct in namespace:Test7
154 struct Test : Base1, Base2 {
H A Dconversion-function.cpp313 struct Base2 { struct in namespace:rdar8018274
321 struct Derived23 : Base2, Base3 {
322 using Base2::operator int;
H A Dconstant-expression-cxx11.cpp729 struct Base2 : Bottom {
730 constexpr Base2(const int &r) : r(r) {}
734 struct Derived : Base, Base2 {
735 constexpr Derived() : Base(76), Base2(a) {}
757 constexpr Bottom &bot2 = (Base2&)derived;
761 constexpr Bottom *pb2 = (Base2*)&derived;
766 constexpr Base2 &fail = (Base2&)bot1; // expected-error {{constant expression}} expected-note {{cannot cast object of dynamic type 'const Class::Derived' to type 'Class::Base2'}}
768 constexpr Base2
[all...]
H A Dwarn-thread-safety-parsing.cpp1418 class Base2 { }; class in namespace:InheritanceTest
1422 class Derived2 : public Base2, public Derived1 { };
1424 class Derived3 : public Base2 { };
/external/clang/test/SemaTemplate/
H A Dinstantiate-using-decl.cpp35 typedef Visitor2<Derived> Base2; typedef in struct:test1::JoinVisitor
38 using Base2::Visit;
H A Ddependent-base-classes.cpp71 struct Base2 { struct in namespace:Ambig
76 struct Derived : Base1<T>, Base2 {
H A Dmember-access-expr.cpp21 typedef TheBase Base2; typedef
22 x.Base2::f0();
/external/clang/test/CXX/class.access/
H A Dp4.cpp127 class Base2 : virtual Base<2> { ~Base2(); }; // expected-note 3 {{declared private here}} \ class in namespace:test3
139 Base2, // expected-error {{base class 'test3::Base2' has private destructor}}
150 Base2, // expected-error 2 {{base class 'test3::Base2' has private destructor}}
/external/chromium-trace/trace-viewer/third_party/six/
H A Dtest_six.py689 class Base2(object): class in function:test_with_metaclass
691 class X(six.with_metaclass(Meta, Base, Base2)):
695 assert issubclass(X, Base2)
696 assert X.__mro__ == (X, Base, Base2, object)
746 class Base2(object): class in function:test_add_metaclass
748 class X(Base, Base2):
753 assert issubclass(X, Base2)
/external/clang/lib/AST/
H A DASTImporter.cpp1024 Base2 = D2CXX->bases_begin();
1026 ++Base1, ++Base2) {
1028 Base1->getType(), Base2->getType())) {
1032 Context.Diag2(Base2->getLocStart(), diag::note_odr_base)
1033 << Base2->getType()
1034 << Base2->getSourceRange();
1043 if (Base1->isVirtual() != Base2->isVirtual()) {
1047 Context.Diag2(Base2->getLocStart(),
1049 << Base2->isVirtual() << Base2
[all...]

Completed in 457 milliseconds

12