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 auto I = SectionRanges.find(&Sec);
76 I = SectionRanges.insert(std::make_pair(&Sec, SectionRange(Sec))).first;
97 /// symbol then SectionRangeSymbolDesc(Sec, true), where Sec is a reference to
99 /// SectionRangeSymbolDesc(Sec, false) should be returned.
119 if (auto *Sec =
121 return {*Sec, true};
123 if (auto *Sec =
125 return {*Sec, false};
141 if (auto *Sec = G.findSectionByName(SectionName))
142 return {*Sec, true};
147 if (auto *Sec = G.findSectionByName(SectionName))
148 return {*Sec, false};