Lines Matching refs:RemovePred

418   SectionPred RemovePred = [](const SectionBase &) { return false; };  in replaceAndRemoveSections()  local
422 RemovePred = [&Config](const SectionBase &Sec) { in replaceAndRemoveSections()
428 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
429 return isDWOSection(Sec) || RemovePred(Sec); in replaceAndRemoveSections()
433 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
434 return onlyKeepDWOPred(Obj, Sec) || RemovePred(Sec); in replaceAndRemoveSections()
438 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
439 if (RemovePred(Sec)) in replaceAndRemoveSections()
456 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
457 return RemovePred(Sec) || Sec.ParentSegment == nullptr; in replaceAndRemoveSections()
462 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
463 return RemovePred(Sec) || isDebugSection(Sec); in replaceAndRemoveSections()
468 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
469 if (RemovePred(Sec)) in replaceAndRemoveSections()
477 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
478 if (RemovePred(Sec)) in replaceAndRemoveSections()
498 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
499 if (RemovePred(Sec)) in replaceAndRemoveSections()
509 RemovePred = [&Config, RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
515 if (RemovePred(Sec)) in replaceAndRemoveSections()
531 RemovePred = [&Config, RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
536 return RemovePred(Sec); in replaceAndRemoveSections()
547 RemovePred = [&Obj, RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
550 return RemovePred(Sec); in replaceAndRemoveSections()
554 if (Error E = Obj.removeSections(ELFConfig.AllowBrokenLinks, RemovePred)) in replaceAndRemoveSections()