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

References

lib/TextAPI/MachO/TextStub.cpp
  474         Section.Architectures = Architectures;
  478             Section.AllowableClients.emplace_back(Library.getInstallName());
  482             Section.ReexportedLibraries.emplace_back(Library.getInstallName());
  492               Section.WeakDefSymbols.emplace_back(Symbol->getName());
  494               Section.TLVSymbols.emplace_back(Symbol->getName());
  496               Section.Symbols.emplace_back(Symbol->getName());
  500               Section.Classes.emplace_back(
  503               Section.Classes.emplace_back(Symbol->getName());
  507               Section.Symbols.emplace_back(
  510               Section.ClassEHs.emplace_back(Symbol->getName());
  514               Section.IVars.emplace_back(
  517               Section.IVars.emplace_back(Symbol->getName());
  521         llvm::sort(Section.Symbols.begin(), Section.Symbols.end());
  521         llvm::sort(Section.Symbols.begin(), Section.Symbols.end());
  522         llvm::sort(Section.Classes.begin(), Section.Classes.end());
  522         llvm::sort(Section.Classes.begin(), Section.Classes.end());
  523         llvm::sort(Section.ClassEHs.begin(), Section.ClassEHs.end());
  523         llvm::sort(Section.ClassEHs.begin(), Section.ClassEHs.end());
  524         llvm::sort(Section.IVars.begin(), Section.IVars.end());
  524         llvm::sort(Section.IVars.begin(), Section.IVars.end());
  525         llvm::sort(Section.WeakDefSymbols.begin(),
  526                    Section.WeakDefSymbols.end());
  527         llvm::sort(Section.TLVSymbols.begin(), Section.TLVSymbols.end());
  527         llvm::sort(Section.TLVSymbols.begin(), Section.TLVSymbols.end());
  528         Exports.emplace_back(std::move(Section));