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

1 2

  /external/clang/test/CodeGenCXX/
ms_struct.cpp 8 struct ATTR VBase {
12 struct ATTR Base : virtual VBase {
24 // CHECK: [[BASE]] = type { [[VBASE:%.*]] }
25 // CHECK: [[VBASE]] = type { i32 (...)** }
constructors.cpp 4 struct VBase { int x; VBase(); VBase(int); VBase(const VBase &); };
55 virtual bases (for now). This is necessary because a vbase
microsoft-abi-virtual-inheritance.cpp 8 struct VBase {
9 virtual ~VBase();
15 struct B : virtual VBase {
95 // CHECK2: %[[VBASE:.*]] = bitcast i8* %[[VBASE_i8]] to %struct.VBase*
96 // CHECK2: call x86_thiscallcc void @"\01??1VBase@@UAE@XZ"(%struct.VBase* %[[VBASE]])
113 // B::foo gets 'this' cast to VBase* in ECX (i.e. this+8) so we
132 // CHECK: %[[VBASE:.*]] = bitcast i8* %[[VBASE_i8]] to %struct.VBase
    [all...]
destructors.cpp 80 struct VBase { ~VBase(); };
101 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 92 struct VBase {};
93 struct HasVBase : virtual VBase {}; // expected-note 2{{virtual base class declared here}}
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-hangul.cc 99 #define VBase 0x1161u
109 #define isCombiningV(u) (hb_in_range ((u), VBase, VBase+VCount-1))
266 hb_codepoint_t s = SBase + (l - LBase) * NCount + (v - VBase) * TCount + tindex;
336 VBase + vindex,
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
NormalizerBuilder.java 238 second = (char)(VBase + (SIndex % NCount) / TCount);
252 SBase = 0xAC00, LBase = 0x1100, VBase = 0x1161, TBase = 0x11A7,
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
NormalizerBuilder.java 237 second = (char)(VBase + (SIndex % NCount) / TCount);
251 SBase = 0xAC00, LBase = 0x1100, VBase = 0x1161, TBase = 0x11A7,
  /external/clang/include/clang/AST/
VTableBuilder.h 309 /// Compute and store all vtable related information (vtable layout, vbase
388 const CXXRecordDecl *VBase);
428 /// derived class indirectly inherits from the same vbase twice, we only keep
470 /// If nonnull, holds the last vbase which contains the vfptr that the
472 const CXXRecordDecl *VBase;
474 /// This is the offset of the vfptr from the start of the last vbase, or the
482 : VBTableIndex(0), VBase(nullptr), VFPtrOffset(CharUnits::Zero()),
485 MethodVFTableLocation(uint64_t VBTableIndex, const CXXRecordDecl *VBase,
487 : VBTableIndex(VBTableIndex), VBase(VBase),
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 71 /// or at the beginning of the structure. Determining if a VBase actually
80 enum InfoKind { VFPtr, VBPtr, Field, Base, VBase, Scissor } Kind;
180 /// \brief Recursively searches all of the bases to find out if a vbase is
181 /// not the primary vbase of some base class.
475 // In the itanium ABI, it's possible to place a vbase at a dsize that is
484 // If the vbase is a primary virtual base of some base, then it doesn't
498 // If the vbase is a primary virtual base of some base, then it doesn't
503 Members.push_back(MemberInfo(Offset, MemberInfo::VBase, nullptr,
511 Members.push_back(MemberInfo(Offset, MemberInfo::VBase,
536 Member->Kind == MemberInfo::VBase) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
VTableBuilder.h 308 /// Compute and store all vtable related information (vtable layout, vbase
386 const CXXRecordDecl *VBase);
426 /// derived class indirectly inherits from the same vbase twice, we only keep
466 /// If nonnull, holds the last vbase which contains the vfptr that the
468 const CXXRecordDecl *VBase;
470 /// This is the offset of the vfptr from the start of the last vbase, or the
478 : VBTableIndex(0), VBase(nullptr), VFPtrOffset(CharUnits::Zero()),
481 MethodVFTableLocation(uint64_t VBTableIndex, const CXXRecordDecl *VBase,
483 : VBTableIndex(VBTableIndex), VBase(VBase),
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
VTableBuilder.h 308 /// Compute and store all vtable related information (vtable layout, vbase
386 const CXXRecordDecl *VBase);
426 /// derived class indirectly inherits from the same vbase twice, we only keep
466 /// If nonnull, holds the last vbase which contains the vfptr that the
468 const CXXRecordDecl *VBase;
470 /// This is the offset of the vfptr from the start of the last vbase, or the
478 : VBTableIndex(0), VBase(nullptr), VFPtrOffset(CharUnits::Zero()),
481 MethodVFTableLocation(uint64_t VBTableIndex, const CXXRecordDecl *VBase,
483 : VBTableIndex(VBTableIndex), VBase(VBase),
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
VTableBuilder.h 308 /// Compute and store all vtable related information (vtable layout, vbase
386 const CXXRecordDecl *VBase);
426 /// derived class indirectly inherits from the same vbase twice, we only keep
466 /// If nonnull, holds the last vbase which contains the vfptr that the
468 const CXXRecordDecl *VBase;
470 /// This is the offset of the vfptr from the start of the last vbase, or the
478 : VBTableIndex(0), VBase(nullptr), VFPtrOffset(CharUnits::Zero()),
481 MethodVFTableLocation(uint64_t VBTableIndex, const CXXRecordDecl *VBase,
483 : VBTableIndex(VBTableIndex), VBase(VBase),
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
VTableBuilder.h 308 /// Compute and store all vtable related information (vtable layout, vbase
386 const CXXRecordDecl *VBase);
426 /// derived class indirectly inherits from the same vbase twice, we only keep
466 /// If nonnull, holds the last vbase which contains the vfptr that the
468 const CXXRecordDecl *VBase;
470 /// This is the offset of the vfptr from the start of the last vbase, or the
478 : VBTableIndex(0), VBase(nullptr), VFPtrOffset(CharUnits::Zero()),
481 MethodVFTableLocation(uint64_t VBTableIndex, const CXXRecordDecl *VBase,
483 : VBTableIndex(VBTableIndex), VBase(VBase),
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
VTableBuilder.h 308 /// Compute and store all vtable related information (vtable layout, vbase
386 const CXXRecordDecl *VBase);
426 /// derived class indirectly inherits from the same vbase twice, we only keep
466 /// If nonnull, holds the last vbase which contains the vfptr that the
468 const CXXRecordDecl *VBase;
470 /// This is the offset of the vfptr from the start of the last vbase, or the
478 : VBTableIndex(0), VBase(nullptr), VFPtrOffset(CharUnits::Zero()),
481 MethodVFTableLocation(uint64_t VBTableIndex, const CXXRecordDecl *VBase,
483 : VBTableIndex(VBTableIndex), VBase(VBase),
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
VTableBuilder.h 308 /// Compute and store all vtable related information (vtable layout, vbase
386 const CXXRecordDecl *VBase);
426 /// derived class indirectly inherits from the same vbase twice, we only keep
466 /// If nonnull, holds the last vbase which contains the vfptr that the
468 const CXXRecordDecl *VBase;
470 /// This is the offset of the vfptr from the start of the last vbase, or the
478 : VBTableIndex(0), VBase(nullptr), VFPtrOffset(CharUnits::Zero()),
481 MethodVFTableLocation(uint64_t VBTableIndex, const CXXRecordDecl *VBase,
483 : VBTableIndex(VBTableIndex), VBase(VBase),
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
VTableBuilder.h 308 /// Compute and store all vtable related information (vtable layout, vbase
386 const CXXRecordDecl *VBase);
426 /// derived class indirectly inherits from the same vbase twice, we only keep
466 /// If nonnull, holds the last vbase which contains the vfptr that the
468 const CXXRecordDecl *VBase;
470 /// This is the offset of the vfptr from the start of the last vbase, or the
478 : VBTableIndex(0), VBase(nullptr), VFPtrOffset(CharUnits::Zero()),
481 MethodVFTableLocation(uint64_t VBTableIndex, const CXXRecordDecl *VBase,
483 : VBTableIndex(VBTableIndex), VBase(VBase),
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
VTableBuilder.h 308 /// Compute and store all vtable related information (vtable layout, vbase
386 const CXXRecordDecl *VBase);
426 /// derived class indirectly inherits from the same vbase twice, we only keep
466 /// If nonnull, holds the last vbase which contains the vfptr that the
468 const CXXRecordDecl *VBase;
470 /// This is the offset of the vfptr from the start of the last vbase, or the
478 : VBTableIndex(0), VBase(nullptr), VFPtrOffset(CharUnits::Zero()),
481 MethodVFTableLocation(uint64_t VBTableIndex, const CXXRecordDecl *VBase,
483 : VBTableIndex(VBTableIndex), VBase(VBase),
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
unicodedata.c 488 #define VBase 0x1161
542 int V = VBase + (SIndex % NCount) / TCount;
667 VBase <= i[1] && i[1] <= (VBase+VCount)) {
670 VIndex = i[1] - VBase;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
unicodedata.c 488 #define VBase 0x1161
535 int V = VBase + (SIndex % NCount) / TCount;
660 VBase <= i[1] && i[1] <= (VBase+VCount)) {
663 VIndex = i[1] - VBase;
    [all...]
  /external/python/cpython2/Modules/
unicodedata.c 488 #define VBase 0x1161
542 int V = VBase + (SIndex % NCount) / TCount;
667 VBase <= i[1] && i[1] <= (VBase+VCount)) {
670 VIndex = i[1] - VBase;
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopRerollPass.cpp     [all...]

Completed in 767 milliseconds

1 2