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