Searched defs:InsertBeforeOp (Results 1 - 7 of 7) sorted by relevance

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DTokenRewriteStream.js108 trs.InsertBeforeOp = function(index, text) {
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/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs132 class InsertBeforeOp : RewriteOperation { class in class:Antlr.Runtime.TokenRewriteStream
133 public InsertBeforeOp(TokenRewriteStream stream, int index, object text) : method in class:Antlr.Runtime.TokenRewriteStream.InsertBeforeOp
268 //addToSortedRewriteList(programName, new InsertBeforeOp(index,text));
269 RewriteOperation op = new InsertBeforeOp(this, index, text);
502 var inserts = GetKindOfOps(rewrites, typeof(InsertBeforeOp), i);
504 InsertBeforeOp iop = (InsertBeforeOp)inserts[j];
536 if (!(op is InsertBeforeOp))
538 InsertBeforeOp iop = (InsertBeforeOp)rewrite
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs148 private class InsertBeforeOp : RewriteOperation class in class:Antlr.Runtime.TokenRewriteStream
150 public InsertBeforeOp( TokenRewriteStream stream, int index, object text ) : method in class:Antlr.Runtime.TokenRewriteStream.InsertBeforeOp
306 RewriteOperation op = new InsertBeforeOp( this, index, text );
579 var inserts = GetKindOfOps( rewrites, typeof( InsertBeforeOp ), i );
582 InsertBeforeOp iop = (InsertBeforeOp)inserts[j];
636 if ( !( op is InsertBeforeOp ) )
638 InsertBeforeOp iop = (InsertBeforeOp)rewrites[i];
640 var prevInserts = GetKindOfOps( rewrites, typeof( InsertBeforeOp ),
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java120 class InsertBeforeOp extends RewriteOperation { class in class:TokenRewriteStream
121 public InsertBeforeOp(int index, Object text) { method in class:TokenRewriteStream.InsertBeforeOp
241 RewriteOperation op = new InsertBeforeOp(index,text);
466 List inserts = getKindOfOps(rewrites, InsertBeforeOp.class, i);
468 InsertBeforeOp iop = (InsertBeforeOp) inserts.get(j);
514 if ( !(op instanceof InsertBeforeOp) ) continue;
515 InsertBeforeOp iop = (InsertBeforeOp)rewrites.get(i);
517 List prevInserts = getKindOfOps(rewrites, InsertBeforeOp
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py982 class InsertBeforeOp(RewriteOperation): class in inherits:RewriteOperation
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):
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 229 milliseconds