HomeSort by relevance Sort by last modified time
    Searched refs:prevRop (Results 1 - 6 of 6) sorted by null

  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 600 ReplaceOp prevRop = (ReplaceOp)prevReplaces[j];
601 if ( prevRop.index >= rop.index && prevRop.lastIndex <= rop.lastIndex )
604 rewrites[prevRop.instructionIndex] = null;
609 prevRop.lastIndex < rop.index || prevRop.index > rop.lastIndex;
611 prevRop.index == rop.index && prevRop.lastIndex == rop.lastIndex;
614 if (prevRop.text == null && rop.text == null && !disjoint)
616 //System.out.println("overlapping deletes: "+prevRop+", "+rop)
    [all...]
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 487 ReplaceOp prevRop = prevReplaces.get(j);
488 if ( prevRop.index>=rop.index && prevRop.lastIndex <= rop.lastIndex ) {
490 rewrites.set(prevRop.instructionIndex, null);
495 prevRop.lastIndex<rop.index || prevRop.index > rop.lastIndex;
497 prevRop.index==rop.index && prevRop.lastIndex==rop.lastIndex;
500 if ( prevRop.text==null && rop.text==null && !disjoint ) {
501 //System.out.println("overlapping deletes: "+prevRop+", "+rop)
    [all...]
  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
TokenRewriteStream.as 333 var prevRop:ReplaceOp = ReplaceOp(prevReplaces[j]);
334 if ( prevRop.index>=rop.index && prevRop.lastIndex <= rop.lastIndex ) {
335 rewrites[prevRop.instructionIndex] = null; // delete replace as it's a no-op.
340 prevRop.lastIndex<rop.index || prevRop.index > rop.lastIndex;
342 prevRop.index==rop.index && prevRop.lastIndex==rop.lastIndex;
345 " overlap with previous "+prevRop);
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 513 ReplaceOp prevRop = (ReplaceOp)prevReplaces[j];
514 if (prevRop.index >= rop.index && prevRop.lastIndex <= rop.lastIndex) {
516 rewrites[prevRop.instructionIndex] = null;
521 prevRop.lastIndex < rop.index || prevRop.index > rop.lastIndex;
523 prevRop.index == rop.index && prevRop.lastIndex == rop.lastIndex;
526 " overlap with previous " + prevRop);
  /external/antlr/runtime/Python/antlr3/
streams.py     [all...]
  /external/antlr/runtime/Python3/antlr3/
streams.py     [all...]

Completed in 160 milliseconds