HomeSort by relevance Sort by last modified time
    Searched refs:first_child (Results 1 - 21 of 21) 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;
  /system/core/libcutils/include/cutils/
config_utils.h 30 cnode *first_child; member in struct:cnode
  /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]);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
ConfigParsingUtils.cpp 36 cnode *node = root->first_child;
82 cnode *node = root->first_child;
103 cnode *node = root->first_child;
120 node = root->first_child;
153 cnode *node = root->first_child;
227 node = node->first_child;
241 node = node->first_child;
253 node = node->first_child;
276 node = node->first_child;
333 node = node->first_child;
    [all...]
  /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) {
  /system/core/libcutils/
config_utils.cpp 43 for(node = root->first_child; node; node = node->next)
59 root->first_child = node;
320 cnode *cur = root->first_child;
  /toolchain/binutils/binutils-2.27/bfd/
dwarf1.c 81 bfd_byte *first_child; member in struct:dwarf1_unit
340 The first child die of 'aUnit' should be in 'aUnit->first_child',
349 if (aUnit->first_child)
350 for (eachDie = aUnit->first_child;
545 aUnit->first_child = stash->currentDie + aDieInfo.length;
547 aUnit->first_child = 0;
  /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 499 param = root->first_child;
521 param = param->first_child;
537 value = value->first_child;
558 cnode *node = root->first_child;
574 cnode *node = root->first_child;
616 node = node->first_child;
643 node = node->first_child;
683 node = node->first_child;
  /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;
1395 for (p=section->first_child; p; p = p->next)
    [all...]
  /frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
ParameterManagerWrapper.cpp 143 for (node = root->first_child; node != NULL; node = node->next) {
208 for (node = root->first_child; node != NULL; node = node->next) {
248 for (node = node->first_child; node != NULL; node = node->next) {
  /system/core/libdiskconfig/
diskconfig.c 97 for (partnode = root->first_child; partnode; partnode = partnode->next) {
161 if (root->first_child == NULL) {
  /frameworks/av/media/libeffects/factory/
EffectsConfigLoader.c 86 node = node->first_child;
297 node = node->first_child;
  /external/android-clat/
config.c 317 if(root->first_child == NULL) {
  /cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java 701 View firstChild = mScrollViewCustom.findViewById(R.id.first_child);
723 View child = mScrollViewCustom.findViewById(R.id.first_child);
    [all...]

Completed in 977 milliseconds