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

  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttribute.h 37 // subsection in ELF attribute section should have.
74 /** \class Subsection
78 class Subsection {
80 Subsection(ELFAttribute& pParent, ELFAttributeData& pAttrData)
92 /// subsection
95 /// emit - write out this attribute subsection to the buffer.
99 // The attribute section this subsection belongs to
102 // The attribute data containing in this subsection
106 // Obtain the corresponding subsection of the specified vendor
107 Subsection* getSubsection(llvm::StringRef pVendorName) const
    [all...]
  /art/runtime/
dex_file_layout.h 61 // A subsection is a a continuous range of dex file that is all part of the same layout hint.
62 class Subsection {
71 Subsection parts_[static_cast<size_t>(LayoutType::kLayoutTypeCount)];
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 75 addDirectiveHandler<&ELFAsmParser::ParseDirectiveSubsection>(".subsection");
186 const MCExpr *Subsection = nullptr;
188 if (getParser().parseExpression(Subsection))
194 Subsection);
371 const MCExpr *Subsection = nullptr;
387 if (getParser().parseExpression(Subsection))
524 getStreamer().SwitchSection(ELFSection, Subsection);
721 const MCExpr *Subsection = nullptr;
723 if (getParser().parseExpression(Subsection))
730 getStreamer().SubSection(Subsection)
    [all...]
  /external/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp 875 if (IDVal.lower() == ".subsection")
881 const MCExpr *Subsection = 0;
885 "Invalid subsection directive");
886 getParser().parseExpression(Subsection);
888 if (!Subsection->evaluateAsAbsolute(Res))
889 return Error(L, "Cannot evaluate subsection number");
    [all...]

Completed in 165 milliseconds