HomeSort by relevance Sort by last modified time
    Searched refs:new_child (Results 1 - 18 of 18) sorted by null

  /frameworks/base/tools/aapt2/
DominatorTree.cpp 41 bool DominatorTree::Node::TryAddChild(std::unique_ptr<Node> new_child) {
42 CHECK(new_child->value_) << "cannot add a root or empty node as a child";
43 if (value_ && !Dominates(new_child.get())) {
47 return AddChild(std::move(new_child));
50 bool DominatorTree::Node::AddChild(std::unique_ptr<Node> new_child) {
54 if (new_child->Dominates(child.get())) {
55 child->parent_ = new_child.get();
56 new_child->children_.push_back(std::move(child));
72 if (child->Dominates(new_child.get())) {
73 child->AddChild(std::move(new_child));
    [all...]
DominatorTree.h 68 bool TryAddChild(std::unique_ptr<Node> new_child);
71 bool AddChild(std::unique_ptr<Node> new_child);
  /external/ltp/testcases/kernel/device-drivers/acpi/
ltp_acpi_cmds.c 147 acpi_handle new_child; local
154 parent, child, &new_child);
172 status = acpi_get_object_info(new_child, &dev_info);
176 get_sysfs_path(new_child);
178 get_crs_object(new_child);
189 if (ACPI_SUCCESS(get_str_object(new_child))) {
194 start_parent = new_child;
202 parent = new_child;
  /external/protobuf/python/
stubout.py 109 def Set(self, parent, child_name, new_child):
110 """Replace child_name's old definition with new_child, in the context
113 method is being replaced. The named child is set to new_child, while
126 setattr(parent, child_name, new_child)
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-trees.rb 628 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/dtc/
livetree.c 140 struct node *new_child, *old_child; local
187 new_child = new_node->children;
188 new_node->children = new_child->next_sibling;
189 new_child->parent = NULL;
190 new_child->next_sibling = NULL;
192 if (new_child->deleted) {
193 delete_node_by_name(old_node, new_child->name);
194 free(new_child);
200 if (streq(old_child->name, new_child->name)) {
201 merge_nodes(old_child, new_child);
    [all...]
  /external/syslinux/gpxe/src/core/
settings.c 269 } *new_child; local
277 new_child = zalloc ( sizeof ( *new_child ) );
278 if ( ! new_child ) {
283 memcpy ( new_child->name, name, sizeof ( new_child->name ) );
284 generic_settings_init ( &new_child->generic, NULL, new_child->name );
285 settings = &new_child->generic.settings;
    [all...]
  /external/tensorflow/tensorflow/python/platform/
googletest.py 259 def Set(self, parent, child_name, new_child):
260 """In parent, replace child_name's old definition with new_child.
264 is being replaced. The named child is set to new_child, while the
274 new_child: The new value of the attribute.
283 setattr(parent, child_name, new_child)
  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement.h 196 void InsertChildAfter(XmlChild* predecessor, XmlChild* new_child);
  /external/python/cpython3/Modules/
parsermodule.c 957 node* new_child = CHILD(root, i - 1); local
959 if (new_child != build_node_children(elem, new_child, line_num)) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
parsermodule.c 837 node* new_child = CHILD(root, i - 1); local
839 if (new_child != build_node_children(elem, new_child, line_num)) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
parsermodule.c 808 node* new_child = CHILD(root, i - 1); local
810 if (new_child != build_node_children(elem, new_child, line_num)) {
    [all...]
  /external/python/cpython2/Modules/
parsermodule.c 837 node* new_child = CHILD(root, i - 1); local
839 if (new_child != build_node_children(elem, new_child, line_num)) {
    [all...]
  /external/python/cpython3/Lib/test/
test_collections.py 62 d = c.new_child()
111 f = d.new_child()
156 d = c.new_child(m)
175 d = c.new_child(m)
    [all...]
  /external/python/cpython3/Lib/collections/
__init__.py 918 def new_child(self, m=None): # like Django's Context.push() member in class:ChainMap
    [all...]
  /external/python/cpython3/Lib/unittest/
case.py 515 params_map = parent.params.new_child(params)
    [all...]
  /external/guice/extensions/struts2/lib/
jetty-util-6.1.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-util/8.1.14.v20131031/
jetty-util-8.1.14.v20131031.jar 

Completed in 743 milliseconds