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

  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
TokenRewriteStream.as 359 var prevIop:InsertBeforeOp = InsertBeforeOp(prevInserts[j]);
360 if ( prevIop.index == iop.index ) { // combine objects
363 iop.text = catOpText(iop.text,prevIop.text);
364 rewrites[prevIop.instructionIndex] = null; // delete redundant prior insert
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 542 InsertBeforeOp prevIop = (InsertBeforeOp)prevInserts[j];
543 if (prevIop.index == iop.index) { // combine objects
546 iop.text = CatOpText(iop.text, prevIop.text);
548 rewrites[prevIop.instructionIndex] = null;
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 643 InsertBeforeOp prevIop = (InsertBeforeOp)prevInserts[j];
644 if ( prevIop.index == iop.index )
648 iop.text = CatOpText( iop.text, prevIop.text );
650 rewrites[prevIop.instructionIndex] = null;
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 523 InsertBeforeOp prevIop = prevInserts.get(j);
524 if ( prevIop.index == iop.index ) { // combine objects
527 iop.text = catOpText(iop.text,prevIop.text);
529 rewrites.set(prevIop.instructionIndex, null);
  /external/antlr/runtime/Python/antlr3/
streams.py     [all...]
  /external/antlr/runtime/Python3/antlr3/
streams.py     [all...]

Completed in 70 milliseconds