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

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
InfSectionParser.py 80 for SubSection in SubSectionList:
81 SectionList = SubSection.split(TAB_SPLIT)
  /external/llvm/include/llvm/MC/
MCStreamer.h 343 bool SubSection(const MCExpr *Subsection) {
347 SwitchSection(SectionStack.back().first.first, Subsection);
356 const MCExpr *Subsection = nullptr);
362 const MCExpr *Subsection = nullptr) {
366 if (MCSectionSubPair(Section, Subsection) != curSection)
367 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
    [all...]
  /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 163 milliseconds