Lines Matching refs:Sec
62 for (const Section &Sec : Sections) { in markSymbols() local
63 for (const Relocation &R : Sec.Relocs) { in markSymbols()
100 auto RemoveAssociated = [&AssociatedSections](const Section &Sec) { in removeSections() argument
101 return AssociatedSections.count(Sec.UniqueId) == 1; in removeSections()
107 [ToRemove, &RemovedSections](const Section &Sec) { in removeSections() argument
108 bool Remove = ToRemove(Sec); in removeSections()
110 RemovedSections.insert(Sec.UniqueId); in removeSections()
137 for (Section &Sec : Sections) { in truncateSections()
138 if (ToTruncate(Sec)) { in truncateSections()
139 Sec.clearContents(); in truncateSections()
140 Sec.Relocs.clear(); in truncateSections()
141 Sec.Header.SizeOfRawData = 0; in truncateSections()