Home
last modified time | relevance | path

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

/external/antlr/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/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/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBaseTree.cs358 int replacingWithHowMany; in ReplaceChildren()
382 replacingWithHowMany = newChildren.Count; in ReplaceChildren()
384 int delta = replacingHowMany - replacingWithHowMany; in ReplaceChildren()
422 int numToInsert = replacingWithHowMany - replacingHowMany; in ReplaceChildren()
423 for ( int j = replacingHowMany; j < replacingWithHowMany; j++ ) in ReplaceChildren()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DBaseTree.java204 int replacingWithHowMany; in replaceChildren() local
215 replacingWithHowMany = newChildren.size(); in replaceChildren()
217 int delta = replacingHowMany - replacingWithHowMany; in replaceChildren()
246 int numToInsert = replacingWithHowMany-replacingHowMany; in replaceChildren()
247 for (int j=replacingHowMany; j<replacingWithHowMany; j++) { in replaceChildren()
/external/antlr/runtime/C/src/
Dantlr3basetree.c346 ANTLR3_INT32 replacingWithHowMany; // How many nodes will replace them in replaceChildren() local
386 replacingWithHowMany = newChildren->size(newChildren); in replaceChildren()
387 delta = replacingHowMany - replacingWithHowMany; in replaceChildren()
442 numToInsert = replacingWithHowMany - replacingHowMany; in replaceChildren()
444 for (j = replacingHowMany; j < replacingWithHowMany; j++) in replaceChildren()
/external/antlr/runtime/Cpp/include/
Dantlr3commontree.inl174 ANTLR_INT32 replacingWithHowMany; // How many nodes will replace them local
206 replacingWithHowMany = newChildren->size();
207 delta = replacingHowMany - replacingWithHowMany;
265 numToInsert = replacingWithHowMany - replacingHowMany;
267 for (j = replacingHowMany; j < replacingWithHowMany; j++)
/external/antlr/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/runtime/ObjC/Framework/
DBaseTree.m267 int replacingWithHowMany;
278 replacingWithHowMany = [newChildren count];
280 int delta = replacingHowMany - replacingWithHowMany;
309 // int numToInsert = replacingWithHowMany-replacingHowMany;
310 for (int j=replacingHowMany; j<replacingWithHowMany; j++) {
/external/antlr/runtime/Python/antlr3/
Dtree.py815 replacingWithHowMany = len(newChildren)
816 delta = replacingHowMany - replacingWithHowMany
/external/antlr/runtime/Python3/antlr3/
Dtree.py810 replacingWithHowMany = len(newChildren)
811 delta = replacingHowMany - replacingWithHowMany