Home
last modified time | relevance | path

Searched refs:new_child (Results 1 - 20 of 20) sorted by relevance

/third_party/eudev/src/udev/
H A Dudevadm-hwdb.c194 _cleanup_free_ struct trie_node *new_child = NULL; in trie_insert() local
200 new_child = new0(struct trie_node, 1); in trie_insert()
201 if (!new_child) in trie_insert()
205 new_child->prefix_off = node->prefix_off + p+1; in trie_insert()
206 new_child->children = node->children; in trie_insert()
207 new_child->children_count = node->children_count; in trie_insert()
208 new_child->values = node->values; in trie_insert()
209 new_child->values_count = node->values_count; in trie_insert()
225 err = node_add_child(trie, node, new_child, c); in trie_insert()
229 new_child in trie_insert()
[all...]
/third_party/ltp/testcases/kernel/device-drivers/acpi/
H A 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()
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A Dnode.c422 static void _ppir_node_replace_child(ppir_src *src, ppir_node *old_child, ppir_node *new_child) in _ppir_node_replace_child() argument
426 ppir_node_target_assign(src, new_child); in _ppir_node_replace_child()
430 void ppir_node_replace_child(ppir_node *parent, ppir_node *old_child, ppir_node *new_child) in ppir_node_replace_child() argument
437 _ppir_node_replace_child(alu->src + i, old_child, new_child); in ppir_node_replace_child()
444 _ppir_node_replace_child(branch->src + i, old_child, new_child); in ppir_node_replace_child()
450 _ppir_node_replace_child(&load->src, old_child, new_child); in ppir_node_replace_child()
457 _ppir_node_replace_child(ppir_node_get_src(parent, i), old_child, new_child); in ppir_node_replace_child() local
463 _ppir_node_replace_child(&store->src, old_child, new_child); in ppir_node_replace_child()
H A Dppir.h448 void ppir_node_replace_child(ppir_node *parent, ppir_node *old_child, ppir_node *new_child);
/third_party/protobuf/python/
H A Dstubout.py112 def Set(self, parent, child_name, new_child):
113 """Replace child_name's old definition with new_child, in the context
116 method is being replaced. The named child is set to new_child, while
129 setattr(parent, child_name, new_child)
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
H A Dnode.c375 gpir_node *new_child) in gpir_node_replace_child()
381 alu->children[i] = new_child; in gpir_node_replace_child()
387 store->child = new_child; in gpir_node_replace_child()
391 branch->cond = new_child; in gpir_node_replace_child()
374 gpir_node_replace_child(gpir_node *parent, gpir_node *old_child, gpir_node *new_child) gpir_node_replace_child() argument
H A Dgpir.h441 void gpir_node_replace_child(gpir_node *parent, gpir_node *old_child, gpir_node *new_child);
/third_party/node/deps/v8/src/profiler/
H A Dsampling-heap-profiler.cc126 auto new_child = std::make_unique<AllocationNode>( in FindOrAddChildNode() local
128 return parent->AddChildNode(id, std::move(new_child)); in FindOrAddChildNode()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dscalar_analysis.h120 SENode* UpdateChildNode(SENode* parent, SENode* child, SENode* new_child);
H A Dscalar_analysis.cpp411 SENode* new_child) { in UpdateChildNode()
418 new_children.push_back(new_child); in UpdateChildNode()
409 UpdateChildNode(SENode* parent, SENode* old_child, SENode* new_child) UpdateChildNode() argument
H A Dloop_dependence.cpp1440 SENode* new_child = scalar_evolution_.SimplifyExpression( in PropagateConstraints() local
1453 constraint->GetLoop(), prime_recurrent->GetOffset(), new_child); in PropagateConstraints()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dscalar_analysis.h120 SENode* UpdateChildNode(SENode* parent, SENode* child, SENode* new_child);
H A Dscalar_analysis.cpp411 SENode* new_child) { in UpdateChildNode()
418 new_children.push_back(new_child); in UpdateChildNode()
409 UpdateChildNode(SENode* parent, SENode* old_child, SENode* new_child) UpdateChildNode() argument
H A Dloop_dependence.cpp1440 SENode* new_child = scalar_evolution_.SimplifyExpression( in PropagateConstraints() local
1453 constraint->GetLoop(), prime_recurrent->GetOffset(), new_child); in PropagateConstraints()
/third_party/spirv-tools/source/opt/
H A Dscalar_analysis.h120 SENode* UpdateChildNode(SENode* parent, SENode* child, SENode* new_child);
H A Dscalar_analysis.cpp410 SENode* new_child) { in UpdateChildNode()
417 new_children.push_back(new_child); in UpdateChildNode()
408 UpdateChildNode(SENode* parent, SENode* old_child, SENode* new_child) UpdateChildNode() argument
H A Dloop_dependence.cpp1439 SENode* new_child = scalar_evolution_.SimplifyExpression( in PropagateConstraints() local
1452 constraint->GetLoop(), prime_recurrent->GetOffset(), new_child); in PropagateConstraints()
/third_party/python/Lib/test/
H A Dtest_collections.py85 d = c.new_child()
134 f = d.new_child()
226 d = c.new_child(m)
245 d = c.new_child(m)
253 d = c.new_child(b=20, c=30)
/third_party/python/Lib/unittest/
H A Dcase.py534 params_map = parent.params.new_child(params)
/third_party/python/Lib/collections/
H A D__init__.py1039 def new_child(self, m=None, **kwargs): # like Django's Context.push() member in ChainMap

Completed in 47 milliseconds