Home
last modified time | relevance | path

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

/external/libchrome/base/json/
Djson_value_converter_unittest.cc165 const SimpleMessage* first_child = message.children[0].get(); in TEST() local
166 ASSERT_TRUE(first_child); in TEST()
167 EXPECT_EQ(2, first_child->foo); in TEST()
168 EXPECT_EQ("foobar", first_child->bar); in TEST()
169 EXPECT_TRUE(first_child->baz); in TEST()
170 EXPECT_TRUE(first_child->bstruct); in TEST()
171 ASSERT_EQ(1U, first_child->string_values.size()); in TEST()
172 EXPECT_EQ("value_1", *first_child->string_values[0]); in TEST()
/external/cn-cbor/src/
Dcn-cbor.c28 while ((p1 = p->first_child)) { /* go down */ in cn_cbor_free()
33 p1->first_child = 0; in cn_cbor_free()
132 parent->first_child = cb; in decode_item()
254 if (catcher.first_child) { in cn_cbor_decode()
255 catcher.first_child->parent = 0; in cn_cbor_decode()
256 cn_cbor_free(catcher.first_child CBOR_CONTEXT_PARAM); in cn_cbor_decode()
Dcn-get.c10 for (cp = cb->first_child; cp && cp->next; cp = cp->next->next) { in cn_cbor_mapget_int()
35 for (cp = cb->first_child; cp && cp->next; cp = cp->next->next) { in cn_cbor_mapget_string()
56 for (cp = cb->first_child; cp; cp = cp->next) { in cn_cbor_index()
Dcn-create.c87 cb_map->first_child = key; in _append_kv()
173 cb_array->first_child = cb_value; in cn_cbor_array_append()
Dcn-encoder.c192 if (p->first_child) { in _visit()
193 p = p->first_child; in _visit()
/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()
1396 for (p=section->first_child; p; p = p->next) { in profile_node_iterator()
1415 iter->node = section->first_child; in profile_node_iterator()
/external/autotest/server/site_tests/autoupdate_EndToEndTest/
Dupdate_engine_performance_monitor.py187 first_child = os.fork()
188 if first_child != 0:
/external/grpc-grpc/src/core/lib/surface/
Dcall.cc105 grpc_call* first_child; member
405 if (pc->first_child == nullptr) { in grpc_call_create()
406 pc->first_child = call; in grpc_call_create()
409 cc->sibling_next = pc->first_child; in grpc_call_create()
410 cc->sibling_prev = pc->first_child->child->sibling_prev; in grpc_call_create()
551 if (c == pc->first_child) { in grpc_call_unref()
552 pc->first_child = cc->sibling_next; in grpc_call_unref()
553 if (c == pc->first_child) { in grpc_call_unref()
554 pc->first_child = nullptr; in grpc_call_unref()
1153 child = pc->first_child; in post_batch_completion()
[all …]
/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/cn-cbor/include/cn-cbor/
Dcn-cbor.h101 struct cn_cbor* first_child; member
/external/cn-cbor/test/
Dtest.c60 for (cp = cb->first_child; cp; cp = cp->next) { in dump()
/external/android-clat/
Dconfig.c323 if (root->first_child == NULL) { in read_config()