HomeSort by: relevance | last modified time | path
    Searched refs:SectionStack (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCStreamer.h 217 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack;
370 if (!SectionStack.empty())
371 return SectionStack.back().first;
378 if (!SectionStack.empty())
379 return SectionStack.back().second;
397 SectionStack.push_back(
406 if (SectionStack.size() <= 1)
408 auto I = SectionStack.end();
416 SectionStack.pop_back();
421 if (SectionStack.empty()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCStreamer.cpp 94 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>());
104 SectionStack.clear();
105 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>());
1195 MCSectionSubPair curSection = SectionStack.back().first;
1196 SectionStack.back().second = curSection;
1199 SectionStack.back().first = MCSectionSubPair(Section, Subsection);

Completed in 20 milliseconds