Lines Matching defs:RemovePred
61 SectionPred RemovePred = [](const Section &) { return false; };
65 RemovePred = [&Config](const Section &Sec) {
71 RemovePred = [RemovePred](const Section &Sec) {
72 return RemovePred(Sec) || isDebugSection(Sec);
77 RemovePred = [RemovePred](const Section &Sec) {
78 return RemovePred(Sec) || isDebugSection(Sec) || isLinkerSection(Sec) ||
84 RemovePred = [&Config](const Section &Sec) {
92 RemovePred = [&Config](const Section &Sec) {
100 RemovePred = [&Config, RemovePred](const Section &Sec) {
104 // Otherwise defer to RemovePred.
105 return RemovePred(Sec);
109 Obj.removeSections(RemovePred);