Searched refs:nonScriptI (Results 1 – 1 of 1) sorted by relevance
1315 auto nonScriptI = std::find_if(i, e, [](SectionCommand *cmd) { in sortOrphanSections() local1322 std::stable_sort(nonScriptI, e, compareSections); in sortOrphanSections()1335 while (nonScriptI != e) { in sortOrphanSections()1336 auto pos = findOrphanPos(i, nonScriptI); in sortOrphanSections()1337 OutputSection *orphan = &cast<OutputDesc>(*nonScriptI)->osec; in sortOrphanSections()1342 auto end = std::find_if(nonScriptI + 1, e, [=](SectionCommand *cmd) { in sortOrphanSections()1345 std::rotate(pos, nonScriptI, end); in sortOrphanSections()1346 nonScriptI = end; in sortOrphanSections()