reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
   26               sizeof(MachO::section) * LC.Sections.size();
   30               sizeof(MachO::section_64) * LC.Sections.size();
  134       assert(LC.Sections.empty() && "__LINKEDIT segment has sections");
  143     for (auto &Sec : LC.Sections) {
  183           sizeof(MachO::section) * LC.Sections.size();
  184       MLC.segment_command_data.nsects = LC.Sections.size();
  192           sizeof(MachO::section_64) * LC.Sections.size();
  193       MLC.segment_command_64_data.nsects = LC.Sections.size();
  206     for (auto &Sec : LC.Sections) {
tools/llvm-objcopy/MachO/MachOReader.cpp
  122       LC.Sections = extractSections<MachO::section, MachO::segment_command>(
  126       LC.Sections =
  207     for (auto &Sec : LC.Sections)
tools/llvm-objcopy/MachO/MachOWriter.cpp
  114     for (const auto &S : LC.Sections) {
  160       for (const auto &Sec : LC.Sections)
  170       for (const auto &Sec : LC.Sections)
  231     for (const auto &Sec : LC.Sections) {
tools/llvm-objcopy/MachO/Object.cpp
   15     LC.Sections.erase(std::remove_if(std::begin(LC.Sections),
   15     LC.Sections.erase(std::remove_if(std::begin(LC.Sections),
   16                                      std::end(LC.Sections), ToRemove),
   17                       std::end(LC.Sections));