Lines Matching refs:RemovePred

371   SectionPred RemovePred = [](const SectionBase &) { return false; };  in replaceAndRemoveSections()  local
375 RemovePred = [&Config](const SectionBase &Sec) { in replaceAndRemoveSections()
381 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
382 return isDWOSection(Sec) || RemovePred(Sec); in replaceAndRemoveSections()
386 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
387 return onlyKeepDWOPred(Obj, Sec) || RemovePred(Sec); in replaceAndRemoveSections()
391 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
392 if (RemovePred(Sec)) in replaceAndRemoveSections()
409 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
410 return RemovePred(Sec) || Sec.ParentSegment == nullptr; in replaceAndRemoveSections()
415 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
416 return RemovePred(Sec) || isDebugSection(Sec); in replaceAndRemoveSections()
421 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
422 if (RemovePred(Sec)) in replaceAndRemoveSections()
430 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
431 if (RemovePred(Sec)) in replaceAndRemoveSections()
449 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
450 if (RemovePred(Sec)) in replaceAndRemoveSections()
460 RemovePred = [&Config, RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
466 if (RemovePred(Sec)) in replaceAndRemoveSections()
482 RemovePred = [&Config, RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
487 return RemovePred(Sec); in replaceAndRemoveSections()
498 RemovePred = [&Obj, RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
501 return RemovePred(Sec); in replaceAndRemoveSections()
505 if (Error E = Obj.removeSections(ELFConfig.AllowBrokenLinks, RemovePred)) in replaceAndRemoveSections()