Home
last modified time | relevance | path

Searched refs:ComponentLayout (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DVTableBuilder.h400 VTableComponentLayout ComponentLayout = Pointer);
433 return ComponentLayout; in getVTableComponentLayout()
436 bool isPointerLayout() const { return ComponentLayout == Pointer; } in isPointerLayout()
437 bool isRelativeLayout() const { return ComponentLayout == Relative; } in isRelativeLayout()
440 VTableComponentLayout ComponentLayout;
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.h638 class ComponentLayout {
665 ComponentLayout(ComponentKind Kind) : Kind(Kind) { in ComponentLayout() function
670 ComponentLayout(const ComponentProps &OpXProps) in ComponentLayout() function
704 class ComponentInfo : public ComponentLayout, public ComponentProps {
709 : ComponentLayout(Kind), ComponentProps(OpDesc) {} in ComponentLayout() function
713 : ComponentLayout(OpXProps), ComponentProps(OpDesc) {} in ComponentInfo()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DVTableBuilder.cpp2266 ASTContext &Context, VTableComponentLayout ComponentLayout) in ItaniumVTableContext() argument
2267 : VTableContextBase(/*MS=*/false), ComponentLayout(ComponentLayout) {} in ItaniumVTableContext()
H A DASTContext.cpp11877 auto ComponentLayout = getLangOpts().RelativeCXXABIVTables in getVTableContext() local
11880 VTContext.reset(new ItaniumVTableContext(*this, ComponentLayout)); in getVTableContext()