HomeSort by: relevance | last modified time | path
    Searched defs:removeSections (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
Object.cpp 27 void Object::removeSections(function_ref<bool(const Section &)> ToRemove) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Object.cpp 89 void Object::removeSections(function_ref<bool(const Section &)> ToRemove) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
Object.cpp 68 Error Object::removeSections(
MachOObjcopy.cpp 52 static Error removeSections(const CommonConfig &Config, Object &Obj) {
80 return Obj.removeSections(RemovePred);
344 if (Error E = removeSections(Config, Obj))
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.cpp 2108 Error Object::removeSections(
2130 std::unordered_set<const SectionBase *> RemoveSections;
2131 RemoveSections.reserve(std::distance(Iter, std::end(Sections)));
2136 RemoveSections.insert(RemoveSec.get());
2146 AllowBrokenLinks, [&RemoveSections](const SectionBase *Sec) {
2147 return RemoveSections.find(Sec) != RemoveSections.end();
2442 return Obj.removeSections(false, [&](const SectionBase &Sec) {
2490 if (Error E = Obj.removeSections(false /*AllowBrokenLinks*/,

Completed in 16 milliseconds