Home
last modified time | relevance | path

Searched refs:first_child (Results 1 – 7 of 7) 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/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/
D_html5lib.py243 first_child = to_append[0]
244 first_child.previous_element = new_parents_last_descendant
245 first_child.previous_sibling = new_parents_last_child
/external/e2fsprogs/e2fsck/
Dprofile.c142 struct profile_node *first_child; member
1059 for (child=node->first_child; child; child = next) { in profile_free_node()
1124 if (node->value && node->first_child) in profile_verify_node()
1128 for (p = node->first_child; p; last = p, p = p->next) { in profile_verify_node()
1164 for (p=section->first_child, last = 0; p; last = p, p = p->next) { in profile_add_node()
1183 section->first_child = new; in profile_add_node()
1214 p = section->first_child; in profile_find_node()
1392 for (p=section->first_child; p; p = p->next) { in profile_node_iterator()
1410 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.h68 …ruct cil_tree_node *node, uint32_t *finished, void *extra_args), int (*first_child)(struct cil_tre…
Dcil_tree.c176 int (*first_child)(struct cil_tree_node *node, void *extra_args), in cil_tree_walk_core()
198 rc = cil_tree_walk(node, process_node, first_child, last_child, extra_args); in cil_tree_walk_core()
212 int (*first_child)(struct cil_tree_node *node, void *extra_args), in cil_tree_walk()
222 if (first_child != NULL) { in cil_tree_walk()
223 rc = (*first_child)(node->cl_head, extra_args); in cil_tree_walk()
230 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()