Searched defs:Base1 (Results 1 - 13 of 13) sorted by relevance

/external/clang/test/Index/
H A Dindex-suppress-refs.cpp5 typedef B1 Base1; typedef in class:Sub
/external/clang/test/CXX/class/class.mem/
H A Dp8-0x.cpp3 struct Base1 { struct
7 struct A : Base1 {
31 struct Base1 { struct in namespace:inline_extension
35 struct A : Base1 {
/external/clang/test/CodeCompletion/
H A Dmember-access.cpp1 struct Base1 { struct
12 struct Base3 : Base1, Base2 {
31 // CHECK-CC1: Base1 : Base1::
32 // CHECK-CC1: member1 : [#int#][#Base1::#]member1
34 // CHECK-CC1: member2 : [#float#][#Base1::#]member2
/external/clang/test/SemaTemplate/
H A Dinstantiate-using-decl.cpp34 typedef Visitor1<Derived> Base1; typedef in struct:test1::JoinVisitor
H A Ddependent-base-classes.cpp67 struct Base1 { struct in namespace:Ambig
76 struct Derived : Base1<T>, Base2 {
/external/clang/test/SemaCXX/
H A Dempty-class-layout.cpp151 struct Base1 : Empty { }; struct in namespace:Test7
153 struct Test : Base1, Base2 {
H A Doffsetof.cpp41 struct Base1 { struct
49 struct Derived2 : public Base1, public Base2 {
H A DMicrosoftCompatibility.cpp134 typedef A<T> Base1; typedef in class:MissingTypename::C
139 Base1::TYPE a2; // expected-warning {{missing 'typename' prior to dependent type name}}
H A Dvirtual-override.cpp149 struct Base1 { virtual void f(int); }; struct
153 (void)sizeof(Foo<Base1>);
163 Foo2<Base1> f1;
H A Dconstructor-initializer.cpp83 struct Base1 {}; struct
85 struct Derived : Base, Base1, virtual V {
94 Derived::Base1(), // expected-error {{type 'Derived::Base1' is not a direct or virtual base of 'Current'}}
/external/clang/test/CodeGenCXX/
H A Dthunks.cpp150 struct Base1 { struct in namespace:Test6
162 struct Thunks : Base1, Base2 {
H A Dvisibility.cpp358 struct Base1 { virtual void foo(); }; struct in namespace:Test16
359 struct Base2 : virtual Base1 { virtual void foo(); };
360 template <class T> struct A : virtual Base1, Base2 {
/external/clang/lib/AST/
H A DASTImporter.cpp933 for (CXXRecordDecl::base_class_iterator Base1 = D1CXX->bases_begin(),
936 Base1 != BaseEnd1;
937 ++Base1, ++Base2) {
939 Base1->getType(), Base2->getType())) {
945 Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
946 << Base1->getType()
947 << Base1->getSourceRange();
952 if (Base1->isVirtual() != Base2->isVirtual()) {
958 Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
959 << Base1
967 const CXXBaseSpecifier *Base1 = D1CXX->bases_begin(); local
[all...]

Completed in 590 milliseconds