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 36 /// VirtualBase - If the path from the derived class to the base class
39 const CXXRecordDecl *VirtualBase;
47 BaseOffset() : DerivedClass(0), VirtualBase(0),
50 const CXXRecordDecl *VirtualBase, CharUnits NonVirtualOffset)
51 : DerivedClass(DerivedClass), VirtualBase(VirtualBase),
54 bool isEmpty() const { return NonVirtualOffset.isZero() && !VirtualBase; }
218 const CXXRecordDecl *VirtualBase = 0;
227 VirtualBase = VBaseType->getAsCXXRecordDecl();
247 return BaseOffset(DerivedRD, VirtualBase, NonVirtualOffset)
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp     [all...]

Completed in 215 milliseconds