Lines Matching defs:Sec
55 for (const Section &Sec : Sections) {
56 for (const Relocation &R : Sec.Relocs) {
90 auto RemoveAssociated = [&AssociatedSections](const Section &Sec) {
91 return AssociatedSections.contains(Sec.UniqueId);
95 llvm::erase_if(Sections, [ToRemove, &RemovedSections](const Section &Sec) {
96 bool Remove = ToRemove(Sec);
98 RemovedSections.insert(Sec.UniqueId);
120 for (Section &Sec : Sections) {
121 if (ToTruncate(Sec)) {
122 Sec.clearContents();
123 Sec.Relocs.clear();
124 Sec.Header.SizeOfRawData = 0;