Home
last modified time | relevance | path

Searched refs:root_node (Results 1 – 14 of 14) sorted by relevance

/external/libxml2/doc/examples/
Dtree2.c29 xmlNodePtr root_node = NULL, node = NULL, node1 = NULL;/* node pointers */ in main() local
40 root_node = xmlNewNode(NULL, BAD_CAST "root"); in main()
41 xmlDocSetRootElement(doc, root_node); in main()
52 xmlNewChild(root_node, NULL, BAD_CAST "node1", in main()
57 xmlNewChild(root_node, NULL, BAD_CAST "node2", NULL); in main()
64 xmlNewChild(root_node, NULL, BAD_CAST "node3", in main()
78 xmlAddChild(root_node, node); in main()
85 node = xmlNewChild(root_node, NULL, BAD_CAST buff, NULL); in main()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
Dhandler.py29 def __init__(self, root_node, connection): argument
31 self.nodes = [('root', root_node)]
53 def __init__(self, root_node, connection): argument
54 self.handler = XmlHandler(root_node, connection)
Djsonresponse.py29 def __init__(self, root_node, connection): argument
31 self.nodes = [('root', root_node)]
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
Dlxmletree.py53 def __init__(self, root_node, name, public_id, system_id): argument
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/
Dmlnbayes.cpp454 void CvNormalBayesClassifier::read( CvFileStorage* fs, CvFileNode* root_node ) in read() argument
469 CV_CALL( var_count = cvReadIntByName( fs, root_node, "var_count", -1 )); in read()
470 CV_CALL( var_all = cvReadIntByName( fs, root_node, "var_all", -1 )); in read()
471 CV_CALL( var_idx = (CvMat*)cvReadByName( fs, root_node, "var_idx" )); in read()
472 CV_CALL( cls_labels = (CvMat*)cvReadByName( fs, root_node, "cls_labels" )); in read()
492 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "count" )); in read()
503 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "sum" )); in read()
514 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "productsum" )); in read()
525 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "avg" )); in read()
536 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "inv_eigen_values" )); in read()
[all …]
Dmlcnn.cpp1569 static void* icvReadCNNModel( CvFileStorage* fs, CvFileNode* root_node )
1586 CV_CALL(cnn->etalons = (CvMat*)cvReadByName( fs, root_node, "etalons" ));
1587 CV_CALL(cnn->cls_labels = (CvMat*)cvReadByName( fs, root_node, "cls_labels" ));
1592 CV_CALL( node = cvGetFileNodeByName( fs, root_node, "network" ));
/external/opencv/cv/src/
D_cvkdtree.hpp80 int root_node; // index of root node, -1 if empty tree member in CvKDTree
238 : deref(_deref), root_node(-1) { in CvKDTree()
267 root_node = insert(first, last, ctor); in set_data()
276 return remove(&root_node, p); in remove()
280 print(root_node); in print()
392 if (root_node == -1) in find_nn_bbf()
398 tmp_pq.push_back(bbf_node(root_node, 0)); in find_nn_bbf()
452 find_ortho_range(root_node, bounds_min, bounds_max, inbounds); in find_ortho_range()
/external/selinux/libsepol/cil/src/
Dcil_fqn.c130 int cil_fqn_qualify(struct cil_tree_node *root_node) in cil_fqn_qualify() argument
132 struct cil_root *root = root_node->data; in cil_fqn_qualify()
137 fqn_args.node = root_node; in cil_fqn_qualify()
Dcil_fqn.h36 int cil_fqn_qualify(struct cil_tree_node *root_node);
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Dvp8_partition_aggregator.cc40 PartitionTreeNode* root_node = new PartitionTreeNode( in CreateRootNode() local
42 root_node->set_packet_start(true); in CreateRootNode()
43 return root_node; in CreateRootNode()
/external/e2fsprogs/debugfs/
Dextent_cmds.ct11 root_node, root;
/external/opencv/cxcore/src/
Dcxpersistence.cpp1293 CvFileNode* root_node = (CvFileNode*)cvSeqPush( fs->roots, 0 ); in icvYMLParse() local
1295 CV_CALL( ptr = icvYMLParseValue( fs, ptr, root_node, CV_NODE_NONE, 0 )); in icvYMLParse()
1296 if( !CV_NODE_IS_COLLECTION(root_node->tag) ) in icvYMLParse()
2212 CvFileNode* root_node; in icvXMLParse() local
2218 root_node = (CvFileNode*)cvSeqPush( fs->roots, 0 ); in icvXMLParse()
2219 CV_CALL( ptr = icvXMLParseValue( fs, ptr, root_node, CV_NODE_NONE )); in icvXMLParse()
/external/opencv3/modules/core/src/
Dpersistence.cpp1389 CvFileNode* root_node = (CvFileNode*)cvSeqPush( fs->roots, 0 ); in icvYMLParse() local
1391 ptr = icvYMLParseValue( fs, ptr, root_node, CV_NODE_NONE, 0 ); in icvYMLParse()
1392 if( !CV_NODE_IS_COLLECTION(root_node->tag) ) in icvYMLParse()
2245 CvFileNode* root_node; in icvXMLParse() local
2251 root_node = (CvFileNode*)cvSeqPush( fs->roots, 0 ); in icvXMLParse()
2252 ptr = icvXMLParseValue( fs, ptr, root_node, CV_NODE_NONE ); in icvXMLParse()
/external/jemalloc/src/
Dctl.c488 static const ctl_named_node_t root_node[] = { variable