Lines Matching refs:prevRop
1413 for j, prevRop in self.getKindOfOps(rewrites, ReplaceOp, i):
1414 if (prevRop.index >= rop.index
1415 and prevRop.lastIndex <= rop.lastIndex):
1421 disjoint = (prevRop.lastIndex < rop.index
1422 or prevRop.index > rop.lastIndex)
1423 same = (prevRop.index == rop.index
1424 and prevRop.lastIndex == rop.lastIndex)
1429 if prevRop.text is None and rop.text is None and not disjoint:
1431 rewrites[prevRop.instructionIndex] = None
1433 rop.index = min(prevRop.index, rop.index)
1434 rop.lastIndex = max(prevRop.lastIndex, rop.lastIndex)
1439 % (rop, prevRop))