Home
last modified time | relevance | path

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

/external/antlr/runtime/Ruby/test/unit/
Dtest-tree-wizard.rb254 @wizard.visit( tree, B ) do |node, parent, child_index, labels|
266 @wizard.visit( tree, C ) do |node, parent, child_index, labels|
278 @wizard.visit( tree, B ) do |node, parent, child_index, labels|
290 @wizard.visit( tree, A ) do |node, parent, child_index, labels|
305 @wizard.visit( tree, B ) do |node, parent, child_index, labels|
306 elements << context(node, parent, child_index)
317 @wizard.visit( tree, A ) do |node, parent, child_index, labels|
318 elements << context(node, parent, child_index)
328 @wizard.visit(tree, '(A B)') do |node, parent, child_index, labels|
340 @wizard.visit(tree, '(A B)') do |node, parent, child_index, labels|
[all …]
Dtest-trees.rb53 root_0.child_index.should == -1
54 t.child_index.should == 0
55 u.child_index.should == 1
469 t.child_index.should == -1
480 r0.child_index.should == -1
494 r0.child_index.should == -1
496 c0.child_index.should == 0
498 c1.child_index.should == 1
500 c2.child_index.should == 2
517 root.child_index.should == -1
[all …]
/external/mesa3d/src/mapi/glapi/gen/
DglX_server_table.py180 child_index = base_entry
221 print ' %u,' % (child_index)
222 child_index += child[2]
228 child_index = base_entry
231 self.dump_tree(child, base_opcode, remaining_bits - M, child_index, depth + 1)
232 child_index += child[2]
/external/llvm-project/lldb/source/Target/
DStackFrame.cpp747 long child_index = 0; in GetValueForVariableExpressionPath() local
762 if (index_expr.consumeInteger(0, child_index)) { in GetValueForVariableExpressionPath()
841 static_cast<uint32_t>(child_index) >= in GetValueForVariableExpressionPath()
846 "array index %ld is not valid for \"(%s) %s\"", child_index, in GetValueForVariableExpressionPath()
850 child_valobj_sp = synthetic->GetChildAtIndex(child_index, true); in GetValueForVariableExpressionPath()
854 "array index %ld is not valid for \"(%s) %s\"", child_index, in GetValueForVariableExpressionPath()
861 valobj_sp->GetSyntheticArrayMember(child_index, true); in GetValueForVariableExpressionPath()
867 child_index, in GetValueForVariableExpressionPath()
876 child_valobj_sp = valobj_sp->GetChildAtIndex(child_index, true); in GetValueForVariableExpressionPath()
879 valobj_sp->GetSyntheticArrayMember(child_index, true); in GetValueForVariableExpressionPath()
[all …]
/external/antlr/runtime/Ruby/lib/antlr3/tree/
Dwizard.rb387 index = @adaptor.child_index( tree )
396 index = @adaptor.child_index( tree )
410 visit( tree, pattern.type ) do | tree, parent, child_index, labels |
412 yield( tree, parent, child_index, labels )
/external/antlr/runtime/Ruby/lib/antlr3/
Dtree.rb339 child.child_index = length + index
343 child_tree.child_index = length
363 tree.child_index = index
393 node.child_index = i
698 def child_index( tree ) method
699 tree.child_index rescue 0
713 set_child_index( new_tree, child_index( tree ) )
772 tree.child_index = index
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
DAST.stg110 @adaptor.child_index( return_value.start ),
111 @adaptor.child_index( _last ),
/external/python/cpython3/Modules/
D_elementtree.c2077 Py_ssize_t child_index; member
2139 item->child_index = 0; in parent_stack_push_new()
2180 Py_ssize_t child_index = item->child_index; in elementiter_next() local
2184 if (!extra || child_index >= extra->length) { in elementiter_next()
2198 assert(Element_Check(extra->children[child_index])); in elementiter_next()
2199 elem = (ElementObject *)extra->children[child_index]; in elementiter_next()
2200 item->child_index++; in elementiter_next()