Lines Matching defs:Sec
28 SectionRangeSymbolDesc(Section &Sec, bool IsStart)
29 : Sec(&Sec), IsStart(IsStart) {}
30 Section *Sec = nullptr;
51 if (D.Sec) {
52 auto &SR = getSectionRange(*D.Sec);
73 SectionRange &getSectionRange(Section &Sec) {
74 return SectionRanges.try_emplace(&Sec, Sec).first->second;
94 /// symbol then SectionRangeSymbolDesc(Sec, true), where Sec is a reference to
96 /// SectionRangeSymbolDesc(Sec, false) should be returned.
116 if (auto *Sec = G.findSectionByName(
118 return {*Sec, true};
120 if (auto *Sec =
122 return {*Sec, false};
138 if (auto *Sec = G.findSectionByName(SectionName))
139 return {*Sec, true};
144 if (auto *Sec = G.findSectionByName(SectionName))
145 return {*Sec, false};