HomeSort by relevance Sort by last modified time
    Searched refs:first_child (Results 1 - 16 of 16) sorted by null

  /external/cn-cbor/src/
cn-get.c 10 for (cp = cb->first_child; cp && cp->next; cp = cp->next->next) {
35 for (cp = cb->first_child; cp && cp->next; cp = cp->next->next) {
56 for (cp = cb->first_child; cp; cp = cp->next) {
cn-cbor.c 28 while ((p1 = p->first_child)) { /* go down */
33 p1->first_child = 0;
132 parent->first_child = cb;
254 if (catcher.first_child) {
255 catcher.first_child->parent = 0;
256 cn_cbor_free(catcher.first_child CBOR_CONTEXT_PARAM);
cn-create.c 87 cb_map->first_child = key;
173 cb_array->first_child = cb_value;
cn-encoder.c 192 if (p->first_child) {
193 p = p->first_child;
  /external/libchrome/base/json/
json_value_converter_unittest.cc 165 const SimpleMessage* first_child = message.children[0].get(); local
166 ASSERT_TRUE(first_child);
167 EXPECT_EQ(2, first_child->foo);
168 EXPECT_EQ("foobar", first_child->bar);
169 EXPECT_TRUE(first_child->baz);
170 EXPECT_TRUE(first_child->bstruct);
171 ASSERT_EQ(1U, first_child->string_values.size());
172 EXPECT_EQ("value_1", *first_child->string_values[0]);
  /external/selinux/libsepol/cil/src/
cil_tree.h 72 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 252 first_child: Function to call before entering list of children
262 int (*first_child)(struct cil_tree_node *node, void *extra_args),
284 rc = cil_tree_walk(node, process_node, first_child, last_child, extra_args);
298 int (*first_child)(struct cil_tree_node *node, void *extra_args),
308 if (first_child != NULL) {
309 rc = (*first_child)(node->cl_head, extra_args);
316 rc = cil_tree_walk_core(node->cl_head, process_node, first_child, last_child, extra_args);
    [all...]
  /external/cn-cbor/test/
test.c 60 for (cp = cb->first_child; cp; cp = cp->next) {
  /external/cn-cbor/include/cn-cbor/
cn-cbor.h 101 struct cn_cbor* first_child; member in struct:cn_cbor
  /external/autotest/server/site_tests/autoupdate_EndToEndTest/
update_engine_performance_monitor.py 187 first_child = os.fork()
188 if first_child != 0:
  /frameworks/av/services/audiopolicy/service/
AudioPolicyEffects.cpp 696 param = root->first_child;
718 param = param->first_child;
734 value = value->first_child;
755 cnode *node = root->first_child;
771 cnode *node = root->first_child;
813 node = node->first_child;
840 node = node->first_child;
880 node = node->first_child;
    [all...]
  /external/e2fsprogs/lib/support/
profile.c 144 struct profile_node *first_child; member in struct:profile_node
1042 * or more child nodes, pointed to by first_child.
1045 * containing a string. Its first_child pointer must be null.
1062 for (child=node->first_child; child; child = next) {
1127 if (node->value && node->first_child)
1131 for (p = node->first_child; p; last = p, p = p->next) {
1167 for (p=section->first_child, last = 0; p; last = p, p = p->next) {
1186 section->first_child = new;
1217 p = section->first_child;
1396 for (p=section->first_child; p; p = p->next)
    [all...]
  /external/grpc-grpc/src/core/lib/surface/
call.cc 105 grpc_call* first_child; member in struct:__anon23222
405 if (pc->first_child == nullptr) {
406 pc->first_child = call;
409 cc->sibling_next = pc->first_child;
410 cc->sibling_prev = pc->first_child->child->sibling_prev;
551 if (c == pc->first_child) {
552 pc->first_child = cc->sibling_next;
553 if (c == pc->first_child) {
554 pc->first_child = nullptr;
    [all...]
  /frameworks/av/media/libeffects/factory/
EffectsConfigLoader.c 86 node = node->first_child;
297 node = node->first_child;
  /external/android-clat/
config.c 323 if (root->first_child == NULL) {
  /cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java 704 View firstChild = mScrollViewCustom.findViewById(R.id.first_child);
726 View child = mScrollViewCustom.findViewById(R.id.first_child);
    [all...]

Completed in 738 milliseconds