Home
last modified time | relevance | path

Searched refs:replacingWithHowMany (Results 1 – 8 of 8) sorted by relevance

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DBaseTree.js136 var replacingWithHowMany;
147 replacingWithHowMany = newChildren.length;
149 var delta = replacingHowMany - replacingWithHowMany;
179 numToInsert = replacingWithHowMany-replacingHowMany;
180 for (j=replacingHowMany; j<replacingWithHowMany; j++) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBaseTree.cs283 int replacingWithHowMany; in ReplaceChildren()
301 replacingWithHowMany = newChildren.Count; in ReplaceChildren()
303 int delta = replacingHowMany - replacingWithHowMany; in ReplaceChildren()
332 int numToInsert = replacingWithHowMany - replacingHowMany; in ReplaceChildren()
333 for (int j = replacingHowMany; j < replacingWithHowMany; j++) { in ReplaceChildren()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBaseTree.cs334 int replacingWithHowMany; in ReplaceChildren()
358 replacingWithHowMany = newChildren.Count; in ReplaceChildren()
360 int delta = replacingHowMany - replacingWithHowMany; in ReplaceChildren()
398 int numToInsert = replacingWithHowMany - replacingHowMany; in ReplaceChildren()
399 for ( int j = replacingHowMany; j < replacingWithHowMany; j++ ) in ReplaceChildren()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DBaseTree.java191 int replacingWithHowMany; in replaceChildren() local
202 replacingWithHowMany = newChildren.size(); in replaceChildren()
204 int delta = replacingHowMany - replacingWithHowMany; in replaceChildren()
233 int numToInsert = replacingWithHowMany-replacingHowMany; in replaceChildren()
234 for (int j=replacingHowMany; j<replacingWithHowMany; j++) { in replaceChildren()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3basetree.c342 ANTLR3_INT32 replacingWithHowMany; // How many nodes will replace them in replaceChildren() local
382 replacingWithHowMany = newChildren->size(newChildren); in replaceChildren()
383 delta = replacingHowMany - replacingWithHowMany; in replaceChildren()
438 numToInsert = replacingWithHowMany - replacingHowMany; in replaceChildren()
440 for (j = replacingHowMany; j < replacingWithHowMany; j++) in replaceChildren()
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DBaseTree.as164 var replacingWithHowMany:int;
175 replacingWithHowMany = newChildren.length;
177 var delta:int = replacingHowMany - replacingWithHowMany;
206 var numToInsert:int = replacingWithHowMany-replacingHowMany;
207 for (j=replacingHowMany; j<replacingWithHowMany; j++) {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRBaseTree.m262 int replacingWithHowMany;
273 replacingWithHowMany = [newChildren count];
275 int delta = replacingHowMany - replacingWithHowMany;
304 // int numToInsert = replacingWithHowMany-replacingHowMany;
305 for (int j=replacingHowMany; j<replacingWithHowMany; j++) {
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dtree.py815 replacingWithHowMany = len(newChildren)
816 delta = replacingHowMany - replacingWithHowMany