Home
last modified time | relevance | path

Searched refs:indexToDelete (Results 1 – 9 of 9) sorted by relevance

/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
DBaseTree.js150 var j, i, child, indexToDelete, c, killed, numToInsert;
167 indexToDelete = startChildIndex+numNewChildren;
168 for (c=indexToDelete; c<=stopChildIndex; c++) {
170 killed = this.children.splice(indexToDelete, 1)[0];
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBaseTree.cs320 int indexToDelete = startChildIndex + numNewChildren; in ReplaceChildren()
321 for (int c = indexToDelete; c <= stopChildIndex; c++) { in ReplaceChildren()
323 children.RemoveAt(indexToDelete); in ReplaceChildren()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBaseTree.cs406 int indexToDelete = startChildIndex + numNewChildren; in ReplaceChildren()
407 for ( int c = indexToDelete; c <= stopChildIndex; c++ ) in ReplaceChildren()
410 Children.RemoveAt( indexToDelete ); in ReplaceChildren()
/external/antlr/runtime/C/src/
Dantlr3basetree.c409 ANTLR3_UINT32 indexToDelete; in replaceChildren() local
421 indexToDelete = startChildIndex + numNewChildren; in replaceChildren()
423 for (j = indexToDelete; j <= (ANTLR3_INT32)stopChildIndex; j++) in replaceChildren()
425 parent->children->remove(parent->children, indexToDelete); in replaceChildren()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DBaseTree.java234 int indexToDelete = startChildIndex+numNewChildren; in replaceChildren() local
235 for (int c=indexToDelete; c<=stopChildIndex; c++) { in replaceChildren()
237 children.remove(indexToDelete); in replaceChildren()
/external/antlr/runtime/Cpp/include/
Dantlr3commontree.inl230 ANTLR_UINT32 indexToDelete; local
243 indexToDelete = startChildIndex + numNewChildren;
245 for (j = indexToDelete; j <= stopChildIndex; j++)
247 parent_children.erase( parent_children.begin() + indexToDelete);
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DBaseTree.as194 var indexToDelete:int = startChildIndex+numNewChildren;
195 for (var c:int=indexToDelete; c<=stopChildIndex; c++) {
197 var killed:BaseTree = BaseTree(children.remove(indexToDelete));
/external/antlr/runtime/ObjC/Framework/
DBaseTree.m297 int indexToDelete = startChildIndex+numNewChildren;
298 for (int c=indexToDelete; c<=stopChildIndex; c++) {
300 [children removeObjectAtIndex:indexToDelete];
/external/angle/third_party/VulkanMemoryAllocator/src/
DTests.cpp1494 size_t indexToDelete = rand.Generate() % (uint32_t)allocations.size(); in TestDefragmentationSimple() local
1495 DestroyAllocation(allocations[indexToDelete]); in TestDefragmentationSimple()
1496 allocations.erase(allocations.begin() + indexToDelete); in TestDefragmentationSimple()