HomeSort by relevance Sort by last modified time
    Searched defs:VirtualBase (Results 1 - 4 of 4) sorted by null

  /external/clang/test/CodeGenCXX/
debug-info.cpp 45 namespace VirtualBase {
  /external/clang/test/CXX/class/class.union/
p1.cpp 13 class VirtualBase : virtual Okay { // expected-note 4 {{because type 'VirtualBase' has a virtual base class}}
40 VirtualBase vbase; // expected-error {{union member 'vbase' has a non-trivial copy constructor}}
55 VirtualBase vbase; // expected-note {{because the function selected to copy field of type 'VirtualBase' is not trivial}}
80 struct s2 : VirtualBase { // expected-note {{because the function selected to copy base class of type 'VirtualBase' is not trivial}}
127 Either<int,VirtualBase> vbase(0); // expected-note {{in instantiation of template}}
  /external/clang/lib/AST/
VTableBuilder.cpp 37 /// VirtualBase - If the path from the derived class to the base class
40 const CXXRecordDecl *VirtualBase;
48 BaseOffset() : DerivedClass(nullptr), VirtualBase(nullptr),
51 const CXXRecordDecl *VirtualBase, CharUnits NonVirtualOffset)
52 : DerivedClass(DerivedClass), VirtualBase(VirtualBase),
55 bool isEmpty() const { return NonVirtualOffset.isZero() && !VirtualBase; }
67 /// VirtualBase - The virtual base class subobject of this overridder.
69 const CXXRecordDecl *VirtualBase;
74 OverriderInfo() : Method(nullptr), VirtualBase(nullptr)
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp     [all...]

Completed in 66 milliseconds