Lines Matching refs:ToRemove
53 void SectionBase::removeSymbols(function_ref<bool(const Symbol &)> ToRemove) {} in removeSymbols() argument
450 function_ref<bool(const Symbol &)> ToRemove) { in removeSymbols() argument
453 [ToRemove](const SymPtr &Sym) { return ToRemove(*Sym); }), in removeSymbols()
613 function_ref<bool(const Symbol &)> ToRemove) { in removeSymbols() argument
615 if (ToRemove(*Reloc.RelocSymbol)) in removeSymbols()
652 void GroupSection::removeSymbols(function_ref<bool(const Symbol &)> ToRemove) { in removeSymbols() argument
653 if (ToRemove(*Sym)) { in removeSymbols()
1321 void Object::removeSections(std::function<bool(const SectionBase &)> ToRemove) { in removeSections() argument
1325 if (ToRemove(*Sec)) in removeSections()
1329 return !ToRemove(*ToRelSec); in removeSections()
1333 if (SymbolTable != nullptr && ToRemove(*SymbolTable)) in removeSections()
1335 if (SectionNames != nullptr && ToRemove(*SectionNames)) in removeSections()
1337 if (SectionIndexTable != nullptr && ToRemove(*SectionIndexTable)) in removeSections()
1352 void Object::removeSymbols(function_ref<bool(const Symbol &)> ToRemove) { in removeSymbols() argument
1357 Sec->removeSymbols(ToRemove); in removeSymbols()