Home
last modified time | relevance | path

Searched refs:last_child (Results 1 – 7 of 7) sorted by relevance

/external/cn-cbor/src/
Dcn-create.c112 if(cb_map->last_child) { in _append_kv()
113 cb_map->last_child->next = key; in _append_kv()
117 cb_map->last_child = val; in _append_kv()
198 if(cb_array->last_child) { in cn_cbor_array_append()
199 cb_array->last_child->next = cb_value; in cn_cbor_array_append()
203 cb_array->last_child = cb_value; in cn_cbor_array_append()
Dcn-cbor.c144 if (parent->last_child) { in decode_item()
145 parent->last_child->next = cb; in decode_item()
149 parent->last_child = cb; in decode_item()
/external/selinux/libsepol/cil/src/
Dcil_tree.h72 …nt (*first_child)(struct cil_tree_node *node, void *extra_args), int (*last_child)(struct cil_tree…
Dcil_tree.c263 int (*last_child)(struct cil_tree_node *node, void *extra_args), in cil_tree_walk_core()
284 rc = cil_tree_walk(node, process_node, first_child, last_child, extra_args); in cil_tree_walk_core()
299 int (*last_child)(struct cil_tree_node *node, void *extra_args), in cil_tree_walk()
316 rc = cil_tree_walk_core(node->cl_head, process_node, first_child, last_child, extra_args); in cil_tree_walk()
321 if (last_child != NULL) { in cil_tree_walk()
322 rc = (*last_child)(node->cl_tail, extra_args); in cil_tree_walk()
/external/cn-cbor/include/cn-cbor/
Dcn-cbor.h108 struct cn_cbor* last_child; member
/external/rust/crates/intrusive-collections/src/
Drbtree.rs376 unsafe fn last_child<T: RBTreeOps>(link_ops: &T, ptr: T::LinkPtr) -> T::LinkPtr { in last_child() function
407 Some(last_child(link_ops, left)) in prev()
840 self.current = Some(unsafe { last_child(self.tree.adapter.link_ops(), root) });
939 self.current = Some(unsafe { last_child(self.tree.adapter.link_ops(), root) });
1119 last_child(link_ops, root),
1333 tail: Some(unsafe { last_child(link_ops, root) }),
1768 tail: Some(unsafe { last_child(link_ops, root) }), in into_iter()
2055 self.tail = Some(last_child(link_ops, left));
/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp2458 bool highlight, bool last_child) { in DisplayRowObject() argument
2518 const bool last_child = row.parent && &rows[rows.size() - 1] == &row; in DisplayRows() local
2529 last_child)) { in DisplayRows()