Searched refs:nonScriptI (Results 1 – 1 of 1) sorted by relevance
1610 auto nonScriptI = std::find_if(i, e, [](BaseCommand *base) { in sortSections() local1617 std::stable_sort(nonScriptI, e, compareSections); in sortSections()1630 while (nonScriptI != e) { in sortSections()1631 auto pos = findOrphanPos(i, nonScriptI); in sortSections()1632 OutputSection *orphan = cast<OutputSection>(*nonScriptI); in sortSections()1637 auto end = std::find_if(nonScriptI + 1, e, [=](BaseCommand *cmd) { in sortSections()1640 std::rotate(pos, nonScriptI, end); in sortSections()1641 nonScriptI = end; in sortSections()