/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | TokenRewriteStream.cs | 132 class InsertBeforeOp : RewriteOperation { class in Antlr.Runtime.TokenRewriteStream 133 public InsertBeforeOp(TokenRewriteStream stream, int index, object text) : in InsertBeforeOp() method in Antlr.Runtime.TokenRewriteStream.InsertBeforeOp 269 RewriteOperation op = new InsertBeforeOp(this, index, text); in InsertBefore() 502 var inserts = GetKindOfOps(rewrites, typeof(InsertBeforeOp), i); in ReduceToSingleOperationPerIndex() 504 InsertBeforeOp iop = (InsertBeforeOp)inserts[j]; in ReduceToSingleOperationPerIndex() 536 if (!(op is InsertBeforeOp)) in ReduceToSingleOperationPerIndex() 538 InsertBeforeOp iop = (InsertBeforeOp)rewrites[i]; in ReduceToSingleOperationPerIndex() 540 var prevInserts = GetKindOfOps(rewrites, typeof(InsertBeforeOp), i); in ReduceToSingleOperationPerIndex() 542 InsertBeforeOp prevIop = (InsertBeforeOp)prevInserts[j]; in ReduceToSingleOperationPerIndex()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | TokenRewriteStream.cs | 148 private class InsertBeforeOp : RewriteOperation class in Antlr.Runtime.TokenRewriteStream 150 public InsertBeforeOp( TokenRewriteStream stream, int index, object text ) : in InsertBeforeOp() method in Antlr.Runtime.TokenRewriteStream.InsertBeforeOp 306 RewriteOperation op = new InsertBeforeOp( this, index, text ); in InsertBefore() 579 var inserts = GetKindOfOps( rewrites, typeof( InsertBeforeOp ), i ); in ReduceToSingleOperationPerIndex() 582 InsertBeforeOp iop = (InsertBeforeOp)inserts[j]; in ReduceToSingleOperationPerIndex() 636 if ( !( op is InsertBeforeOp ) ) in ReduceToSingleOperationPerIndex() 638 InsertBeforeOp iop = (InsertBeforeOp)rewrites[i]; in ReduceToSingleOperationPerIndex() 640 var prevInserts = GetKindOfOps( rewrites, typeof( InsertBeforeOp ), i ); in ReduceToSingleOperationPerIndex() 643 InsertBeforeOp prevIop = (InsertBeforeOp)prevInserts[j]; in ReduceToSingleOperationPerIndex()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/ |
D | TokenRewriteStream.java | 121 class InsertBeforeOp extends RewriteOperation { class in TokenRewriteStream 122 public InsertBeforeOp(int index, Object text) { in InsertBeforeOp() method in TokenRewriteStream.InsertBeforeOp 245 RewriteOperation op = new InsertBeforeOp(index,text); in insertBefore() 470 List<? extends InsertBeforeOp> inserts = getKindOfOps(rewrites, InsertBeforeOp.class, i); in reduceToSingleOperationPerIndex() 472 InsertBeforeOp iop = inserts.get(j); in reduceToSingleOperationPerIndex() 518 if ( !(op instanceof InsertBeforeOp) ) continue; in reduceToSingleOperationPerIndex() 519 InsertBeforeOp iop = (InsertBeforeOp)rewrites.get(i); in reduceToSingleOperationPerIndex() 521 List<? extends InsertBeforeOp> prevInserts = getKindOfOps(rewrites, InsertBeforeOp.class, i); in reduceToSingleOperationPerIndex() 523 InsertBeforeOp prevIop = prevInserts.get(j); in reduceToSingleOperationPerIndex()
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | TokenRewriteStream.as | 131 var op:RewriteOperation = new InsertBeforeOp(index,text); 323 var inserts:Array = getKindOfOps(rewrites, InsertBeforeOp, i); 325 var iop:InsertBeforeOp = InsertBeforeOp(inserts[j]); 354 if ( !(op is InsertBeforeOp) ) continue; 355 iop = InsertBeforeOp(rewrites[i]); 357 var prevInserts:Array = getKindOfOps(rewrites, InsertBeforeOp, i); 359 var prevIop:InsertBeforeOp = InsertBeforeOp(prevInserts[j]); 462 class InsertBeforeOp extends RewriteOperation { class 463 public function InsertBeforeOp(index:int, text:Object) { method in InsertBeforeOp 474 return "<InsertBeforeOp@" + index + ":\"" + text + "\">";
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | TokenRewriteStream.js | 108 trs.InsertBeforeOp = function(index, text) { class in trs 109 trs.InsertBeforeOp.superclass.constructor.call(this, index, text); 111 org.antlr.lang.extend(trs.InsertBeforeOp, trs.RewriteOperation, { 283 new trs.InsertBeforeOp(index,text)
|
/external/antlr/runtime/Python3/antlr3/ |
D | streams.py | 928 class InsertBeforeOp(RewriteOperation): class 1107 op = InsertBeforeOp(self, index, text) 1341 for j, iop in self.getKindOfOps(rewrites, InsertBeforeOp, i): 1386 if not isinstance(iop, InsertBeforeOp): 1390 for j, prevIop in self.getKindOfOps(rewrites, InsertBeforeOp, i):
|
/external/antlr/runtime/Python/antlr3/ |
D | streams.py | 982 class InsertBeforeOp(RewriteOperation): class 1162 op = InsertBeforeOp(self, index, text) 1401 for j, iop in self.getKindOfOps(rewrites, InsertBeforeOp, i): 1446 if not isinstance(iop, InsertBeforeOp): 1450 for j, prevIop in self.getKindOfOps(rewrites, InsertBeforeOp, i):
|