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

References

lib/TextAPI/MachO/TextStub.cpp
  542         Section.Architectures = Architectures;
  552               Section.WeakRefSymbols.emplace_back(Symbol->getName());
  554               Section.Symbols.emplace_back(Symbol->getName());
  558               Section.Classes.emplace_back(
  561               Section.Classes.emplace_back(Symbol->getName());
  565               Section.Symbols.emplace_back(
  568               Section.ClassEHs.emplace_back(Symbol->getName());
  572               Section.IVars.emplace_back(
  575               Section.IVars.emplace_back(Symbol->getName());
  579         llvm::sort(Section.Symbols.begin(), Section.Symbols.end());
  579         llvm::sort(Section.Symbols.begin(), Section.Symbols.end());
  580         llvm::sort(Section.Classes.begin(), Section.Classes.end());
  580         llvm::sort(Section.Classes.begin(), Section.Classes.end());
  581         llvm::sort(Section.ClassEHs.begin(), Section.ClassEHs.end());
  581         llvm::sort(Section.ClassEHs.begin(), Section.ClassEHs.end());
  582         llvm::sort(Section.IVars.begin(), Section.IVars.end());
  582         llvm::sort(Section.IVars.begin(), Section.IVars.end());
  583         llvm::sort(Section.WeakRefSymbols.begin(),
  584                    Section.WeakRefSymbols.end());
  585         Undefineds.emplace_back(std::move(Section));