• Home
  • Raw
  • Download

Lines Matching refs:rop

577                 ReplaceOp rop = (ReplaceOp)rewrites[i];  in ReduceToSingleOperationPerIndex()
583 if (iop.index == rop.index) in ReduceToSingleOperationPerIndex()
588rop.text = iop.text.ToString() + (rop.text != null ? rop.text.ToString() : string.Empty); in ReduceToSingleOperationPerIndex()
590 else if (iop.index > rop.index && iop.index <= rop.lastIndex) in ReduceToSingleOperationPerIndex()
601 if ( prevRop.index >= rop.index && prevRop.lastIndex <= rop.lastIndex ) in ReduceToSingleOperationPerIndex()
609 prevRop.lastIndex < rop.index || prevRop.index > rop.lastIndex; in ReduceToSingleOperationPerIndex()
611 prevRop.index == rop.index && prevRop.lastIndex == rop.lastIndex; in ReduceToSingleOperationPerIndex()
614 if (prevRop.text == null && rop.text == null && !disjoint) in ReduceToSingleOperationPerIndex()
618 rop.index = Math.Min(prevRop.index, rop.index); in ReduceToSingleOperationPerIndex()
619 rop.lastIndex = Math.Max(prevRop.lastIndex, rop.lastIndex); in ReduceToSingleOperationPerIndex()
620 Console.WriteLine("new rop " + rop); in ReduceToSingleOperationPerIndex()
624 throw new ArgumentException( "replace op boundaries of " + rop + in ReduceToSingleOperationPerIndex()
657 ReplaceOp rop = (ReplaceOp)prevReplaces[j]; in ReduceToSingleOperationPerIndex()
658 if ( iop.index == rop.index ) in ReduceToSingleOperationPerIndex()
660 rop.text = CatOpText( iop.text, rop.text ); in ReduceToSingleOperationPerIndex()
664 if ( iop.index >= rop.index && iop.index <= rop.lastIndex ) in ReduceToSingleOperationPerIndex()
667 … " within boundaries of previous " + rop ); in ReduceToSingleOperationPerIndex()