Home
last modified time | relevance | path

Searched refs:child_node (Results 1 – 5 of 5) sorted by relevance

/external/cmockery/cmockery_0_1_2/src/
Dcmockery.c556 ListNode * const child_node = child_list->next; in remove_always_return_values() local
558 if (child_node->refcount < -1) { in remove_always_return_values()
559 list_remove_free(child_node, free_value, NULL); in remove_always_return_values()
595 const ListNode *child_node; in check_for_leftover_values() local
599 for (child_node = child_list->next; child_node != child_list; in check_for_leftover_values()
600 child_node = child_node->next) { in check_for_leftover_values()
601 const SourceLocation * const location = child_node->value; in check_for_leftover_values()
/external/dynamic_depth/internal/xmpmeta/xml/
Ddeserializer_impl.cc131 xmlNodePtr child_node = in CreateDeserializer() local
133 if (child_node == nullptr) { in CreateDeserializer()
137 new DeserializerImpl(child_node)); // NOLINT in CreateDeserializer()
/external/python/cpython3/Python/
Dhamt.c1699 PyHamtNode *child_node; in hamt_node_array_assoc() local
1717 child_node = hamt_node_bitmap_assoc( in hamt_node_array_assoc()
1721 if (child_node == NULL) { in hamt_node_array_assoc()
1728 Py_DECREF(child_node); in hamt_node_array_assoc()
1740 new_node->a_array[idx] = child_node; /* borrow */ in hamt_node_array_assoc()
1746 child_node = hamt_node_assoc( in hamt_node_array_assoc()
1748 if (child_node == NULL) { in hamt_node_array_assoc()
1751 else if (child_node == (PyHamtNode *)self) { in hamt_node_array_assoc()
1752 Py_DECREF(child_node); in hamt_node_array_assoc()
1758 Py_DECREF(child_node); in hamt_node_array_assoc()
[all …]
/external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
Dtraining_ops.cc127 const auto& child_node = nodes[child_id]; in IsTerminalSplitNode() local
128 CHECK(child_node.node_case() != TreeNode::NODE_NOT_SET); in IsTerminalSplitNode()
129 if (child_node.node_case() != TreeNode::kLeaf) { in IsTerminalSplitNode()
160 auto& child_node = (*nodes)[child_id]; in RecursivePruneTree() local
161 child_node.Clear(); in RecursivePruneTree()
/external/chromium-trace/catapult/devil/devil/utils/
Dfind_usb_devices.py127 for child_node in self._port_to_node.values():
128 for descendant_node in child_node.AllNodes():