Home | History | Annotate | Download | only in Scalar

Lines Matching defs:NextI

285     range_iterator NextI = I;
286 while (++NextI != Ranges.end() && End >= NextI->Start) {
288 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end());
289 if (NextI->End > I->End)
290 I->End = NextI->End;
291 Ranges.erase(NextI);
292 NextI = I;