/external/antlr/antlr-3.4/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/antlr-3.4/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/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | TokenRewriteStream.java | 120 class InsertBeforeOp extends RewriteOperation { class in TokenRewriteStream 121 public InsertBeforeOp(int index, Object text) { in InsertBeforeOp() method in TokenRewriteStream.InsertBeforeOp 241 RewriteOperation op = new InsertBeforeOp(index,text); in insertBefore() 466 List inserts = getKindOfOps(rewrites, InsertBeforeOp.class, i); in reduceToSingleOperationPerIndex() 468 InsertBeforeOp iop = (InsertBeforeOp) inserts.get(j); in reduceToSingleOperationPerIndex() 514 if ( !(op instanceof InsertBeforeOp) ) continue; in reduceToSingleOperationPerIndex() 515 InsertBeforeOp iop = (InsertBeforeOp)rewrites.get(i); in reduceToSingleOperationPerIndex() 517 List prevInserts = getKindOfOps(rewrites, InsertBeforeOp.class, i); in reduceToSingleOperationPerIndex() 519 InsertBeforeOp prevIop = (InsertBeforeOp) prevInserts.get(j); in reduceToSingleOperationPerIndex()
|
/external/antlr/antlr-3.4/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/antlr-3.4/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/antlr-3.4/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):
|