Home
last modified time | relevance | path

Searched refs:first_child (Results 1 – 6 of 6) sorted by relevance

/external/libchrome/base/json/
Djson_value_converter_unittest.cc166 const SimpleMessage* first_child = message.children[0]; in TEST() local
167 ASSERT_TRUE(first_child); in TEST()
168 EXPECT_EQ(2, first_child->foo); in TEST()
169 EXPECT_EQ("foobar", first_child->bar); in TEST()
170 EXPECT_TRUE(first_child->baz); in TEST()
171 EXPECT_TRUE(first_child->bstruct); in TEST()
172 ASSERT_EQ(1U, first_child->string_values.size()); in TEST()
173 EXPECT_EQ("value_1", *first_child->string_values[0]); in TEST()
/external/e2fsprogs/lib/support/
Dprofile.c144 struct profile_node *first_child; member
1062 for (child=node->first_child; child; child = next) { in profile_free_node()
1127 if (node->value && node->first_child) in profile_verify_node()
1131 for (p = node->first_child; p; last = p, p = p->next) { in profile_verify_node()
1167 for (p=section->first_child, last = 0; p; last = p, p = p->next) { in profile_add_node()
1186 section->first_child = new; in profile_add_node()
1217 p = section->first_child; in profile_find_node()
1395 for (p=section->first_child; p; p = p->next) { in profile_node_iterator()
1413 iter->node = section->first_child; in profile_node_iterator()
/external/autotest/server/site_tests/autoupdate_EndToEndTest/
Dupdate_engine_performance_monitor.py185 first_child = os.fork()
186 if first_child != 0:
/external/selinux/libsepol/cil/src/
Dcil_tree.h72 …ruct cil_tree_node *node, uint32_t *finished, void *extra_args), int (*first_child)(struct cil_tre…
Dcil_tree.c262 int (*first_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()
298 int (*first_child)(struct cil_tree_node *node, void *extra_args), in cil_tree_walk()
308 if (first_child != NULL) { in cil_tree_walk()
309 rc = (*first_child)(node->cl_head, 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()
/external/android-clat/
Dconfig.c314 if(root->first_child == NULL) { in read_config()