Home
last modified time | relevance | path

Searched refs:new_kids (Results 1 – 10 of 10) sorted by relevance

/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/mime/src/
H A Dmimecont.cpp145 MimeObject **old_kids, **new_kids; in MimeContainer_add_child() local
151 new_kids = in MimeContainer_add_child()
153 if (!new_kids) return MIME_OUT_OF_MEMORY; in MimeContainer_add_child()
156 memcpy(new_kids, old_kids, sizeof(MimeObject*) * cont->nchildren); in MimeContainer_add_child()
157 new_kids[cont->nchildren] = child; in MimeContainer_add_child()
159 cont->children = new_kids; in MimeContainer_add_child()
/dports/textproc/p5-XML-Parser-Lite-Tree/XML-Parser-Lite-Tree-0.14/lib/XML/Parser/Lite/
H A DTree.pm258 my $new_kids = [];
266 push @{$new_kids}, $child;
272 push @{$new_kids}, $child;
274 push @{$new_kids}, $child;
278 $obj->{children} = $new_kids;
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/files/
H A Dxml.py482 new_kids = children_to_nodes(module, children, in_type)
484 insert_target_children(tree, xpath, namespaces, new_kids, insertbefore, insertafter)
487 node.extend(new_kids)
573 new_kids = children_to_nodes(module, [nsnameToClark(eoa, namespaces)], "yaml")
575 for nk in new_kids:
579 node.extend(new_kids)
584 new_kids = children_to_nodes(module, [nsnameToClark(element, namespaces)], "yaml")
586 node.extend(new_kids)
587 for nk in new_kids:
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/modules/
H A Dxml.py509 new_kids = children_to_nodes(module, children, in_type)
511 insert_target_children(tree, xpath, namespaces, new_kids, insertbefore, insertafter)
514 node.extend(new_kids)
600 new_kids = children_to_nodes(module, [nsnameToClark(eoa, namespaces)], "yaml")
602 for nk in new_kids:
606 node.extend(new_kids)
611 new_kids = children_to_nodes(module, [nsnameToClark(element, namespaces)], "yaml")
613 node.extend(new_kids)
614 for nk in new_kids:
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/modules/files/
H A Dxml.py509 new_kids = children_to_nodes(module, children, in_type)
511 insert_target_children(tree, xpath, namespaces, new_kids, insertbefore, insertafter)
514 node.extend(new_kids)
600 new_kids = children_to_nodes(module, [nsnameToClark(eoa, namespaces)], "yaml")
602 for nk in new_kids:
606 node.extend(new_kids)
611 new_kids = children_to_nodes(module, [nsnameToClark(element, namespaces)], "yaml")
613 node.extend(new_kids)
614 for nk in new_kids:
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/support/integration/plugins/modules/
H A Dxml.py482 new_kids = children_to_nodes(module, children, in_type)
484 insert_target_children(tree, xpath, namespaces, new_kids, insertbefore, insertafter)
487 node.extend(new_kids)
573 new_kids = children_to_nodes(module, [nsnameToClark(eoa, namespaces)], "yaml")
575 for nk in new_kids:
579 node.extend(new_kids)
584 new_kids = children_to_nodes(module, [nsnameToClark(element, namespaces)], "yaml")
586 node.extend(new_kids)
587 for nk in new_kids:
/dports/www/moinmoin/moin-1.9.11/MoinMoin/action/
H A DLocalSiteMap.py106 def new_kids(self, name): member in PageTreeBuilder
131 kids = self.new_kids(tree.node)
/dports/graphics/librsvg2-rust/librsvg-2.52.8/vendor/lopdf/src/
H A Ddocument.rs344 while let Some((kid, new_kids)) = self.kids.and_then(|k| k.split_first()) { in next()
350 self.kids = Some(new_kids); in next()
/dports/print/qpdf/qpdf-10.5.0/libqpdf/
H A DNNTree.cc409 QPDFObjectHandle new_kids = QPDFObjectHandle::newArray(); in split() local
410 new_kids.appendItem(first_node); in split()
413 to_split.replaceKey("/Kids", new_kids); in split()
/dports/math/octave/octave-6.4.0/libinterp/corefcn/
H A Dgraphics.in.h1798 Matrix new_kids; in do_set() local
1802 new_kids = val.matrix_value (); in do_set()
1809 octave_idx_type nel = new_kids.numel (); in do_set()
1811 const Matrix new_kids_column = new_kids.reshape (dim_vector (nel, 1)); in do_set()
1818 if (visible_kids.numel () == new_kids.numel ()) in do_set()