OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:last_child
(Results
1 - 7
of
7
) sorted by null
/system/core/include/cutils/
config_utils.h
31
cnode *
last_child
;
member in struct:cnode
/external/selinux/libsepol/cil/src/
cil_tree.h
68
int cil_tree_walk(struct cil_tree_node *start_node, int (*process_node)(struct cil_tree_node *node, uint32_t *finished, void *extra_args), int (*first_child)(struct cil_tree_node *node, void *extra_args), int (*
last_child
)(struct cil_tree_node *node, void *extra_args), void *extra_args);
cil_tree.c
170
last_child
: Function to call when finished with the last child of a node's children
177
int (*
last_child
)(struct cil_tree_node *node, void *extra_args),
198
rc = cil_tree_walk(node, process_node, first_child,
last_child
, extra_args);
213
int (*
last_child
)(struct cil_tree_node *node, void *extra_args),
230
rc = cil_tree_walk_core(node->cl_head, process_node, first_child,
last_child
, extra_args);
235
if (
last_child
!= NULL) {
236
rc = (*
last_child
)(node->cl_tail, extra_args);
[
all
...]
/system/core/libcutils/
config_utils.c
57
if(root->
last_child
)
58
root->
last_child
->next = node;
62
root->
last_child
= node;
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/
_html5lib.py
248
last_child
= to_append[-1]
249
last_child
.next_element = new_parents_last_descendant_next_element
250
last_child
.next_sibling = None
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
element.py
240
last_child
= self._last_descendant()
241
next_element =
last_child
.next_element
248
last_child
.next_element = None
261
last_child
= self.next_sibling.previous_element
263
last_child
= self
264
while isinstance(
last_child
, Tag) and
last_child
.contents:
265
last_child
=
last_child
.contents[-1]
266
if not accept_self and
last_child
== self
[
all
...]
/cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java
680
View lastChild = mScrollView.findViewById(R.id.
last_child
);
[
all
...]
Completed in 104 milliseconds