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

  /bionic/libc/bionic/
tdestroy.cpp 24 node_t* root_node = reinterpret_cast<node_t*>(root); local
25 if (root_node == NULL) {
28 if (root_node->llink) {
29 tdestroy(root_node->llink, destroy_func);
31 if (root_node->rlink) {
32 tdestroy(root_node->rlink, destroy_func);
34 (*destroy_func)(root_node->key);
system_properties.cpp 150 prop_bt *root_node();
405 inline prop_bt *prop_area::root_node() function in class:prop_area
634 return find_property(root_node(), name, strlen(name), nullptr, 0, false);
639 return find_property(root_node(), name, namelen, value, valuelen, true);
643 return foreach_property(root_node(), propfn, cookie);
    [all...]
  /external/selinux/libsepol/cil/src/
cil_fqn.h 36 int cil_fqn_qualify(struct cil_tree_node *root_node);
cil_fqn.c 130 int cil_fqn_qualify(struct cil_tree_node *root_node)
132 struct cil_root *root = root_node->data;
137 fqn_args.node = root_node;
  /external/libxml2/doc/examples/
tree2.c 29 xmlNodePtr root_node = NULL, node = NULL, node1 = NULL;/* node pointers */ local
40 root_node = xmlNewNode(NULL, BAD_CAST "root");
41 xmlDocSetRootElement(doc, root_node);
50 * of root_node node.
52 xmlNewChild(root_node, NULL, BAD_CAST "node1",
57 xmlNewChild(root_node, NULL, BAD_CAST "node2", NULL);
64 xmlNewChild(root_node, NULL, BAD_CAST "node3",
78 xmlAddChild(root_node, node);
85 node = xmlNewChild(root_node, NULL, BAD_CAST buff, NULL);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
handler.py 29 def __init__(self, root_node, connection):
31 self.nodes = [('root', root_node)]
53 def __init__(self, root_node, connection):
54 self.handler = XmlHandler(root_node, connection)
jsonresponse.py 29 def __init__(self, root_node, connection):
31 self.nodes = [('root', root_node)]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
lxmletree.py 53 def __init__(self, root_node, name, public_id, system_id):
54 self.root_node = root_node
63 return self.root_node.children[1]
77 self.root_node = fragment_root
92 siblings = self.root_node.children
  /external/opencv/ml/src/
mlnbayes.cpp 454 void CvNormalBayesClassifier::read( CvFileStorage* fs, CvFileNode* root_node )
469 CV_CALL( var_count = cvReadIntByName( fs, root_node, "var_count", -1 ));
470 CV_CALL( var_all = cvReadIntByName( fs, root_node, "var_all", -1 ));
471 CV_CALL( var_idx = (CvMat*)cvReadByName( fs, root_node, "var_idx" ));
472 CV_CALL( cls_labels = (CvMat*)cvReadByName( fs, root_node, "cls_labels" ));
492 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "count" ));
503 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "sum" ));
514 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "productsum" ));
525 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "avg" ));
536 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "inv_eigen_values" ))
    [all...]
mlcnn.cpp     [all...]
  /external/e2fsprogs/debugfs/
extent_cmds.ct 11 root_node, root;
  /external/opencv/cv/src/
_cvkdtree.hpp 80 int root_node; // index of root node, -1 if empty tree member in class:CvKDTree
238 : deref(_deref), root_node(-1) {
267 root_node = insert(first, last, ctor);
276 return remove(&root_node, p);
280 print(root_node);
392 if (root_node == -1)
395 // add root_node to bbf_node priority queue;
398 tmp_pq.push_back(bbf_node(root_node, 0));
452 find_ortho_range(root_node, bounds_min, bounds_max, inbounds);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationToggle.java 242 * @param root_node The root of the node hierarchy to examine.
246 private Node validateNode(Node root_node, Node xml_node) {
247 if (root_node == xml_node) {
250 for (Node node = root_node.getFirstChild(); node != null;
252 if (root_node == xml_node || validateNode(node, xml_node) != null) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
NewItemSelectionDialog.java 57 * Can be null -- which means new items must be created in the root_node. */
59 /** The root node chosen by the user, either root_node or the one passed
84 * @param root_node The root of the Ui Tree, either the UiDocumentNode or a sub-node.
89 UiElementNode root_node) {
92 mLocalRootNode = root_node;
140 String xmlName = getLastUsedXmlName(root_node);
143 xmlName = getMostUsedXmlName(root_node);
148 xmlName = getLeafFileName(root_node);
  /external/v8/build/android/gyp/
generate_v14_compatible_resources.py 106 root_node = IterateXmlElements(dom).next()
107 return bool(root_node.nodeName == 'resources' and
108 list(root_node.getElementsByTagName('style')))
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
vp8_partition_aggregator.cc 40 PartitionTreeNode* root_node = new PartitionTreeNode( local
42 root_node->set_packet_start(true);
43 return root_node;
  /toolchain/binutils/binutils-2.25/gold/
arm-reloc-property.cc 164 Tree_node* root_node = Tree_node::make_tree(operation);
165 Tree_node* node = root_node;
252 delete root_node;
  /external/v8/tools/gyp/pylib/gyp/
input.py     [all...]
  /external/jemalloc/src/
ctl.c 488 static const ctl_named_node_t root_node[] = { variable
    [all...]

Completed in 1698 milliseconds