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

  /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/test/CodeGenCXX/
debug-info.cpp 45 namespace VirtualBase {
const-init-cxx11.cpp 471 namespace VirtualBase {
  /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...]
CXXInheritance.cpp 481 void Collect(const CXXRecordDecl *RD, bool VirtualBase,
488 bool VirtualBase,
492 if (!VirtualBase)
ASTContext.cpp 523 if (const CXXRecordDecl *VirtualBase = Ty->getAsCXXRecordDecl()) {
524 if (!(VirtualBase= VirtualBase->getDefinition()))
526 if (comments::FullComment *FC = getCommentForDecl((VirtualBase), PP))
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 750 bool VirtualBase = true;
785 VirtualBase = VirtualBase && IsVirtual;
789 assert((VirtualBase || NonZeroOffset) &&
799 << DerivedType << BaseType << !VirtualBase << int(ReinterpretKind)
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp     [all...]

Completed in 426 milliseconds