reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
36 if (Obj.getSections().empty()) 38 const Section &Last = Obj.getSections().back();tools/llvm-objcopy/COFF/Reader.cpp
88 ArrayRef<Section> Sections = Obj.getSections();
tools/llvm-objcopy/COFF/Writer.cpp112 for (const auto &S : Obj.getSections()) 184 Obj.CoffFileHeader.NumberOfSections = Obj.getSections().size(); 187 SizeOfHeaders += sizeof(coff_section) * Obj.getSections().size(); 202 if (!Obj.getSections().empty()) { 203 const Section &S = Obj.getSections().back(); 265 BigObjHeader.NumberOfSections = Obj.getSections().size(); 290 for (const auto &S : Obj.getSections()) { 297 for (const auto &S : Obj.getSections()) { 379 for (const auto &S : Obj.getSections()) { 407 bool IsBigObj = Obj.getSections().size() > MaxNumberOfSections16;