HomeSort by: relevance | last modified time | path
    Searched refs:RemovedSections (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Object.cpp 95 DenseSet<ssize_t> RemovedSections;
96 llvm::erase_if(Sections, [ToRemove, &RemovedSections](const Section &Sec) {
99 RemovedSections.insert(Sec.UniqueId);
105 Symbols, [&RemovedSections, &AssociatedSections](const Symbol &Sym) {
110 if (RemovedSections.count(Sym.AssociativeComdatTargetSectionId) == 1)
112 return RemovedSections.contains(Sym.TargetSectionId);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.h 1018 std::vector<SecPtr> RemovedSections;
1074 SectionTableRef removedSections() { return SectionTableRef(RemovedSections); }
Object.cpp 2092 for (auto &Sec : Obj.removedSections()) {
2152 // Transfer removed sections into the Object RemovedSections container for use
2154 std::move(Iter, Sections.end(), std::back_inserter(RemovedSections));

Completed in 19 milliseconds