Lines Matching refs:SectionStack
96 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in MCStreamer()
105 SectionStack.clear(); in reset()
106 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in reset()
1245 if (SectionStack.size() <= 1) in popSection()
1247 auto I = SectionStack.end(); in popSection()
1255 SectionStack.pop_back(); in popSection()
1261 MCSectionSubPair curSection = SectionStack.back().first; in switchSection()
1262 SectionStack.back().second = curSection; in switchSection()
1265 SectionStack.back().first = MCSectionSubPair(Section, Subsection); in switchSection()
1293 SectionStack.back().second = SectionStack.back().first; in switchSectionNoPrint()
1294 SectionStack.back().first = MCSectionSubPair(Section, 0); in switchSectionNoPrint()