Home
last modified time | relevance | path

Searched refs:new_child (Results 1 – 25 of 33) sorted by relevance

12

/external/antlr/runtime/Ruby/test/unit/
Dtest-trees.rb628 new_child = new_node( new_token 5 )
631 t.replace_children(0, 0, new_child)
640 new_child = new_node( new_token 99, :text => 'c' )
641 t.replace_children(0,0,new_child)
653 new_child = new_node( new_token 99, :text => 'x' )
654 t.replace_children(1, 1, new_child)
665 new_child = new_node( new_token 99, :text => 'x' )
666 t.replace_children(0, 0, new_child)
677 new_child = new_node( new_token 99, :text => 'x' )
678 t.replace_children(2, 2, new_child)
[all …]
/external/ltp/testcases/kernel/device-drivers/acpi/
Dltp_acpi_cmds.c147 acpi_handle new_child; in acpi_traverse() local
154 parent, child, &new_child); in acpi_traverse()
172 status = acpi_get_object_info(new_child, &dev_info); in acpi_traverse()
176 get_sysfs_path(new_child); in acpi_traverse()
178 get_crs_object(new_child); in acpi_traverse()
189 if (ACPI_SUCCESS(get_str_object(new_child))) { in acpi_traverse()
194 start_parent = new_child; in acpi_traverse()
202 parent = new_child; in acpi_traverse()
/external/mesa3d/src/gallium/drivers/lima/ir/pp/
Dnode.c417 static void _ppir_node_replace_child(ppir_src *src, ppir_node *old_child, ppir_node *new_child) in _ppir_node_replace_child() argument
421 ppir_node_target_assign(src, new_child); in _ppir_node_replace_child()
425 void ppir_node_replace_child(ppir_node *parent, ppir_node *old_child, ppir_node *new_child) in ppir_node_replace_child() argument
432 _ppir_node_replace_child(alu->src + i, old_child, new_child); in ppir_node_replace_child()
439 _ppir_node_replace_child(branch->src + i, old_child, new_child); in ppir_node_replace_child()
445 _ppir_node_replace_child(&load->src, old_child, new_child); in ppir_node_replace_child()
452 _ppir_node_replace_child(ppir_node_get_src(parent, i), old_child, new_child); in ppir_node_replace_child()
458 _ppir_node_replace_child(&store->src, old_child, new_child); in ppir_node_replace_child()
Dppir.h412 void ppir_node_replace_child(ppir_node *parent, ppir_node *old_child, ppir_node *new_child);
/external/dtc/
Dlivetree.c145 struct node *new_child, *old_child; in merge_nodes() local
194 new_child = new_node->children; in merge_nodes()
195 new_node->children = new_child->next_sibling; in merge_nodes()
196 new_child->parent = NULL; in merge_nodes()
197 new_child->next_sibling = NULL; in merge_nodes()
199 if (new_child->deleted) { in merge_nodes()
200 delete_node_by_name(old_node, new_child->name); in merge_nodes()
201 free(new_child); in merge_nodes()
207 if (streq(old_child->name, new_child->name)) { in merge_nodes()
208 merge_nodes(old_child, new_child); in merge_nodes()
[all …]
/external/ruy/ruy/profiler/
Dtreeview.cc77 auto* new_child = new TreeView::Node; in AddOther() local
78 new_child->label = Label("[other]"); in AddOther()
79 new_child->weight = node->weight - top_level_children_weight; in AddOther()
80 node->children.emplace_back(new_child); in AddOther()
/external/python/pyfakefs/pyfakefs/
Dmox3_stubout.py124 def set(self, parent, child_name, new_child): argument
146 setattr(parent, child_name, new_child)
/external/protobuf/python/
Dstubout.py112 def Set(self, parent, child_name, new_child): argument
129 setattr(parent, child_name, new_child)
/external/mesa3d/src/gallium/drivers/lima/ir/gp/
Dnode.c372 gpir_node *new_child) in gpir_node_replace_child() argument
378 alu->children[i] = new_child; in gpir_node_replace_child()
384 store->child = new_child; in gpir_node_replace_child()
388 branch->cond = new_child; in gpir_node_replace_child()
Dgpir.h440 void gpir_node_replace_child(gpir_node *parent, gpir_node *old_child, gpir_node *new_child);
/external/tensorflow/tensorflow/python/platform/
Dgoogletest.py235 def Set(self, parent, child_name, new_child): argument
259 setattr(parent, child_name, new_child)
/external/perfetto/src/trace_processor/importers/memory_tracker/
Dgraph.cc144 Node* new_child = node_graph_->global_graph()->CreateNode(node_graph_, this); in CreateChild() local
145 InsertChild(name, new_child); in CreateChild()
146 return new_child; in CreateChild()
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.test.-stub-out-for-testing.pbtxt10 …argspec: "args=[\'self\', \'parent\', \'child_name\', \'new_child\'], varargs=None, keywords=None,…
/external/python/cpython3/Modules/
Dparsermodule.c963 node* new_child = CHILD(root, i - 1); in build_node_children() local
965 if (new_child != build_node_children(elem, new_child, line_num)) { in build_node_children()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dscalar_analysis.h120 SENode* UpdateChildNode(SENode* parent, SENode* child, SENode* new_child);
Dscalar_analysis.cpp411 SENode* new_child) { in UpdateChildNode() argument
418 new_children.push_back(new_child); in UpdateChildNode()
Dloop_dependence.cpp1440 SENode* new_child = scalar_evolution_.SimplifyExpression( in PropagateConstraints() local
1453 constraint->GetLoop(), prime_recurrent->GetOffset(), new_child); in PropagateConstraints()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dscalar_analysis.h120 SENode* UpdateChildNode(SENode* parent, SENode* child, SENode* new_child);
Dscalar_analysis.cpp411 SENode* new_child) { in UpdateChildNode() argument
418 new_children.push_back(new_child); in UpdateChildNode()
Dloop_dependence.cpp1440 SENode* new_child = scalar_evolution_.SimplifyExpression( in PropagateConstraints() local
1453 constraint->GetLoop(), prime_recurrent->GetOffset(), new_child); in PropagateConstraints()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dscalar_analysis.h120 SENode* UpdateChildNode(SENode* parent, SENode* child, SENode* new_child);
Dscalar_analysis.cpp411 SENode* new_child) { in UpdateChildNode() argument
418 new_children.push_back(new_child); in UpdateChildNode()
Dloop_dependence.cpp1440 SENode* new_child = scalar_evolution_.SimplifyExpression( in PropagateConstraints() local
1453 constraint->GetLoop(), prime_recurrent->GetOffset(), new_child); in PropagateConstraints()
/external/llvm-project/polly/lib/External/isl/
Disl_schedule_tree.h247 __isl_take isl_schedule_tree *new_child);
/external/python/cpython3/Doc/library/
Dcollections.rst80 .. method:: new_child(m=None)
85 specified, an empty dict is used, so that a call to ``d.new_child()``
134 :meth:`~collections.ChainMap.new_child` method and the
178 d = c.new_child() # Create nested child context
179 e = c.new_child() # Child of c, independent from d

12