Home
last modified time | relevance | path

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

/external/clang/test/CXX/class/class.mem/
Dp8-0x.cpp12 struct Base2 { struct
17 struct B : Base2 {
40 struct Base2 { struct
44 struct B : Base2 {
/external/clang/test/Analysis/
Dreinterpret-cast.cpp28 class Base2 {}; class
29 class Derived2 : public Base2 {};
31 void f2(Base2 *foo);
/external/clang/test/Index/
Dannotate-context-sensitive.cpp13 struct Base2 { struct
17 struct Derived2 : Base2 {
Dindex-suppress-refs.cpp6 typedef B2 Base2; typedef in Sub
/external/clang/test/Parser/
Dcxx0x-override-control-keywords.cpp20 struct Base2 { struct
24 struct A : Base2 {
/external/clang/test/CodeCompletion/
Dmember-access.cpp6 struct Base2 { struct
12 struct Base3 : Base1, Base2 { argument
/external/clang/test/Coverage/
Dcxx-language-features.inc19 class Base2 { };
21 class Derived1 : Base1, virtual public Base2 { };
/external/clang/test/CodeGenCXX/
Dapple-kext-indirect-call-2.C43 struct Base2 { }; struct
45 struct Derived2 : virtual Base2 {
Dthunks.cpp156 struct Base2 { struct
162 struct Thunks : Base1, Base2 {
Dvisibility.cpp363 struct Base2 : virtual Base1 { virtual void foo(); }; struct
364 template <class T> struct A : virtual Base1, Base2 {
/external/clang/test/SemaTemplate/
Dinstantiate-using-decl.cpp35 typedef Visitor2<Derived> Base2; typedef
38 using Base2::Visit;
Ddependent-base-classes.cpp71 struct Base2 { struct
76 struct Derived : Base1<T>, Base2 {
Dmember-access-expr.cpp21 typedef TheBase Base2; in call_f0_through_typedef() typedef
22 x.Base2::f0(); in call_f0_through_typedef()
/external/clang/test/SemaCXX/
Doffsetof.cpp45 struct Base2 { struct
49 struct Derived2 : public Base1, public Base2 { argument
Dvirtual-override.cpp150 struct Base2 { }; struct
154 (void)sizeof(Foo<Base2>); // expected-note{{instantiation}} in test()
164 Foo2<Base2> f2; in test2()
Dconversion-function.cpp312 struct Base2 { struct
320 struct Derived23 : Base2, Base3 {
321 using Base2::operator int;
DMicrosoftCompatibility.cpp135 typedef B<U> Base2; typedef in MissingTypename::C
142 Base2::TYPE a4; // expected-warning {{missing 'typename' prior to dependent type name}}
Dempty-class-layout.cpp153 struct Base2 : Empty { }; struct
154 struct Test : Base1, Base2 {
Dconstant-expression-cxx11.cpp727 struct Base2 : Bottom { struct
728 constexpr Base2(const int &r) : r(r) {} in Base2() function
732 struct Derived : Base, Base2 {
733 constexpr Derived() : Base(76), Base2(a) {} in Derived()
755 constexpr Bottom &bot2 = (Base2&)derived;
759 constexpr Bottom *pb2 = (Base2*)&derived;
764 constexpr Base2 &fail = (Base2&)bot1; // expected-error {{constant expression}} expected-note {{can…
766 constexpr Base2 &ok2 = (Base2&)bot2;
769 constexpr Base2 *pfail = (Base2*)pb1; // expected-error {{constant expression}} expected-note {{can…
771 constexpr Base2 *pok2 = (Base2*)pb2;
[all …]
Dwarn-thread-safety-parsing.cpp1416 class Base2 { }; class
1420 class Derived2 : public Base2, public Derived1 { };
1422 class Derived3 : public Base2 { };
Dwarn-thread-safety-analysis.cpp3493 class Base2 : public Base { class
3498 class Base3 : public Base2 {
/external/clang/test/CXX/class.access/
Dp4.cpp127 class Base2 : virtual Base<2> { ~Base2(); }; // expected-note 3 {{declared private here}} \ class
139 Base2, // expected-error {{base class 'test3::Base2' has private destructor}}
150 Base2, // expected-error 2 {{base class 'test3::Base2' has private destructor}}
/external/clang/lib/AST/
DASTImporter.cpp1025 Base2 = D2CXX->bases_begin(); in IsStructurallyEquivalent() local
1027 ++Base1, ++Base2) { in IsStructurallyEquivalent()
1029 Base1->getType(), Base2->getType())) { in IsStructurallyEquivalent()
1033 Context.Diag2(Base2->getLocStart(), diag::note_odr_base) in IsStructurallyEquivalent()
1034 << Base2->getType() in IsStructurallyEquivalent()
1035 << Base2->getSourceRange(); in IsStructurallyEquivalent()
1044 if (Base1->isVirtual() != Base2->isVirtual()) { in IsStructurallyEquivalent()
1048 Context.Diag2(Base2->getLocStart(), in IsStructurallyEquivalent()
1050 << Base2->isVirtual() << Base2->getSourceRange(); in IsStructurallyEquivalent()
/external/clang/lib/Sema/
DSemaChecking.cpp6939 Base2 = D2CXX->bases_begin(); in isLayoutCompatibleStruct() local
6941 ++Base1, ++Base2) { in isLayoutCompatibleStruct()
6942 if (!isLayoutCompatible(C, Base1->getType(), Base2->getType())) in isLayoutCompatibleStruct()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp10147 SDValue Base1, Base2; in isAlias() local
10152 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2); in isAlias()
10155 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2))) in isAlias()
10165 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex()); in isAlias()