HomeSort by relevance Sort by last modified time
    Searched refs:root_node (Results 1 - 21 of 21) 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 165 prop_bt* root_node();
359 inline prop_bt* prop_area::root_node() { function in class:prop_area
684 return find_property(root_node(), name, strlen(name), nullptr, 0, false);
689 return find_property(root_node(), name, namelen, value, valuelen, true);
693 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/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);
  /external/lisa/libs/utils/platforms/
hikey_energy.py 56 root_node=EnergyModelRoot(children=[ variable
juno_energy.py 94 root_node=EnergyModelRoot( variable
pixel_energy.py 154 root_node=EnergyModelRoot(children=[
  /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/lisa/tests/lisa/
test_energy_model.py 96 root_node=EnergyModelRoot(children=[ variable
135 root_node = EnergyModelRoot(children=[
146 EnergyModel(root_node=root_node,
  /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/libusb/libusb/os/
sunos_usb.c 328 di_node_t root_node; local
335 if ((root_node = di_init("/", DINFOCPYALL)) == DI_NODE_NIL) {
341 di_fini(root_node);
349 if (di_walk_node(root_node, DI_WALK_SIBFIRST, &args,
352 di_fini(root_node);
357 di_fini(root_node);
    [all...]
  /external/lisa/libs/utils/
energy_model.py 275 :param root_node: Root of :class:`EnergyModelNode` tree
314 def __init__(self, root_node, root_power_domain, freq_domains):
315 self.cpus = root_node.cpus
331 for node in root_node.iter_nodes():
351 self.root = root_node
352 self.cpu_nodes = sorted_leaves(root_node)
    [all...]
  /external/dtc/tests/
run_tests.sh 241 run_test root_node $TREE
  /external/jemalloc/src/
ctl.c 494 static const ctl_named_node_t root_node[] = { variable
    [all...]

Completed in 589 milliseconds