Lines Matching refs:iop
1401 for j, iop in self.getKindOfOps(rewrites, InsertBeforeOp, i):
1402 if iop.index == rop.index:
1405 rewrites[iop.instructionIndex] = None
1406 rop.text = self.catOpText(iop.text, rop.text)
1408 elif iop.index > rop.index and iop.index <= rop.lastIndex:
1442 for i, iop in enumerate(rewrites):
1443 if iop is None:
1446 if not isinstance(iop, InsertBeforeOp):
1451 if prevIop.index == iop.index: # combine objects
1455 iop.text = self.catOpText(iop.text, prevIop.text)
1461 if iop.index == rop.index:
1462 rop.text = self.catOpText(iop.text, rop.text)
1467 if iop.index >= rop.index and iop.index <= rop.lastIndex:
1470 % (iop, rop))