Home | History | Annotate | Download | only in Scalar

Lines Matching defs:NextI

291     range_iterator NextI = I;
292 while (++NextI != Ranges.end() && End >= NextI->Start) {
294 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end());
295 if (NextI->End > I->End)
296 I->End = NextI->End;
297 Ranges.erase(NextI);
298 NextI = I;