Searched refs:prevIop (Results 1 – 6 of 6) sorted by relevance
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | TokenRewriteStream.cs | 542 InsertBeforeOp prevIop = (InsertBeforeOp)prevInserts[j]; in ReduceToSingleOperationPerIndex() 543 if (prevIop.index == iop.index) { // combine objects in ReduceToSingleOperationPerIndex() 546 iop.text = CatOpText(iop.text, prevIop.text); in ReduceToSingleOperationPerIndex() 548 rewrites[prevIop.instructionIndex] = null; in ReduceToSingleOperationPerIndex()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/ |
D | TokenRewriteStream.java | 523 InsertBeforeOp prevIop = prevInserts.get(j); in reduceToSingleOperationPerIndex() local 524 if ( prevIop.index == iop.index ) { // combine objects in reduceToSingleOperationPerIndex() 527 iop.text = catOpText(iop.text,prevIop.text); in reduceToSingleOperationPerIndex() 529 rewrites.set(prevIop.instructionIndex, null); in reduceToSingleOperationPerIndex()
|
/external/antlr/runtime/Python3/antlr3/ |
D | streams.py | 1390 for j, prevIop in self.getKindOfOps(rewrites, InsertBeforeOp, i): 1391 if prevIop.index == iop.index: # combine objects 1395 iop.text = self.catOpText(iop.text, prevIop.text)
|
/external/antlr/runtime/Python/antlr3/ |
D | streams.py | 1450 for j, prevIop in self.getKindOfOps(rewrites, InsertBeforeOp, i): 1451 if prevIop.index == iop.index: # combine objects 1455 iop.text = self.catOpText(iop.text, prevIop.text)
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | 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/ObjC/Framework/ |
D | TokenRewriteStream.m | 608 ANTLRInsertBeforeOp *prevIop = (ANTLRInsertBeforeOp *) [prevInserts objectAtIndex:j]; 609 if ( prevIop.rwIndex == iop.rwIndex ) { // combine objects 612 iop.text = [self catOpText:iop.text PrevText:prevIop.text]; 614 [rewrites setObject:nil atIndex:prevIop.instructionIndex];
|