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

  /ndk/tests/device/test-stlport_shared-exception/jni/
ctor2.cpp 10 struct VBase
13 VBase() { p = this; }
14 ~VBase() { if (p != this) r = 1; }
22 struct Stream : public virtual VBase, public StreamBase
  /ndk/tests/device/test-stlport_static-exception/jni/
ctor2.cpp 10 struct VBase
13 VBase() { p = this; }
14 ~VBase() { if (p != this) r = 1; }
22 struct Stream : public virtual VBase, public StreamBase
  /external/clang/test/CodeGenCXX/
constructors.cpp 4 struct VBase { int x; VBase(); VBase(int); VBase(const VBase &); };
57 virtual bases (for now). This is necessary because a vbase
destructors.cpp 82 struct VBase { ~VBase(); };
102 struct B : Base, virtual VBase {
  /external/clang/test/CXX/special/class.copy/
p12-0x.cpp 40 struct VBase : virtual Trivial {};
41 using _ = not_trivially_copyable<VBase>;
p25-0x.cpp 43 struct VBase : virtual Trivial {};
44 using _ = not_trivially_assignable<VBase>;
  /external/clang/test/CXX/basic/basic.types/
p10.cpp 87 struct VBase {};
88 struct HasVBase : virtual VBase {}; // expected-note 2{{virtual base class declared here}}
  /external/clang/lib/AST/
CXXInheritance.cpp 336 CXXRecordDecl *VBase = 0;
338 VBase = cast<CXXRecordDecl>(Record->getDecl());
339 if (!VBase)
357 if (HidingClass->isVirtuallyDerivedFrom(VBase)) {
RecordLayoutBuilder.cpp 1261 const CXXRecordDecl *vbase = I->getType()->getAsCXXRecordDecl(); local
    [all...]
VTableBuilder.cpp 430 Out << Offset.VirtualBase->getQualifiedNameAsString() << " vbase, ";
533 /// VCallAndVBaseOffsetBuilder - Class for building vcall and vbase offsets.
541 /// and vbase offsets.
552 /// Components - vcall and vbase offset components
571 /// AddVCallAndVBaseOffsets - Add vcall offsets and vbase offsets for the
579 /// AddVBaseOffsets - Add vbase offsets for the given class.
583 /// getCurrentOffsetOffset - Get the current vcall or vbase offset offset in
596 // Add vcall and vbase offsets.
619 // and vbase offsets added by the derived class all come before the vcall
620 // and vbase offsets required by the base class, so that the latter may b
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 144 const CXXRecordDecl *VBase = 0;
151 VBase =
160 ComputeNonVirtualBaseClassOffset(getContext(), VBase ? VBase : Derived,
166 if (VBase && Derived->hasAttr<FinalAttr>()) {
168 CharUnits vBaseOffset = layout.getVBaseClassOffset(VBase);
170 VBase = 0; // we no longer have a virtual step
179 if (NonVirtualOffset.isZero() && !VBase) {
200 if (VBase) {
201 VirtualOffset = GetVirtualBaseClassOffset(Value, Derived, VBase);
    [all...]
  /external/icu4c/i18n/
ucol.cpp     [all...]

Completed in 388 milliseconds