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

  /system/core/include/cutils/
config_utils.h 30 cnode *first_child; member in struct:cnode
  /external/libchrome/base/json/
json_value_converter_unittest.cc 166 const SimpleMessage* first_child = message.children[0]; local
167 ASSERT_TRUE(first_child);
168 EXPECT_EQ(2, first_child->foo);
169 EXPECT_EQ("foobar", first_child->bar);
170 EXPECT_TRUE(first_child->baz);
171 EXPECT_TRUE(first_child->bstruct);
172 ASSERT_EQ(1U, first_child->string_values.size());
173 EXPECT_EQ("value_1", *first_child->string_values[0]);
  /external/selinux/libsepol/cil/src/
cil_tree.h 68 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 166 first_child: Function to call before entering list of children
176 int (*first_child)(struct cil_tree_node *node, void *extra_args),
198 rc = cil_tree_walk(node, process_node, first_child, last_child, extra_args);
212 int (*first_child)(struct cil_tree_node *node, void *extra_args),
222 if (first_child != NULL) {
223 rc = (*first_child)(node->cl_head, extra_args);
230 rc = cil_tree_walk_core(node->cl_head, process_node, first_child, last_child, extra_args);
    [all...]
  /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...]
  /frameworks/av/services/audiopolicy/service/
AudioPolicyEffects.cpp 484 param = root->first_child;
506 param = param->first_child;
522 value = value->first_child;
543 cnode *node = root->first_child;
559 cnode *node = root->first_child;
601 node = node->first_child;
628 node = node->first_child;
668 node = node->first_child;
  /system/core/libcutils/
config_utils.c 44 for(node = root->first_child; node; node = node->next)
60 root->first_child = node;
321 cnode *cur = root->first_child;
  /toolchain/binutils/binutils-2.25/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/autotest/server/site_tests/autoupdate_EndToEndTest/
update_engine_performance_monitor.py 185 first_child = os.fork()
186 if first_child != 0:
  /external/e2fsprogs/e2fsck/
profile.c 142 struct profile_node *first_child; member in struct:profile_node
1039 * or more child nodes, pointed to by first_child.
1042 * containing a string. Its first_child pointer must be null.
1059 for (child=node->first_child; child; child = next) {
1124 if (node->value && node->first_child)
1128 for (p = node->first_child; p; last = p, p = p->next) {
1164 for (p=section->first_child, last = 0; p; last = p, p = p->next) {
1183 section->first_child = new;
1214 p = section->first_child;
1392 for (p=section->first_child; p; p = p->next)
    [all...]
  /external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/
_html5lib.py 243 first_child = to_append[0]
244 first_child.previous_element = new_parents_last_descendant
245 first_child.previous_sibling = new_parents_last_child
  /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 99 for (partnode = root->first_child; partnode; partnode = partnode->next) {
163 if (root->first_child == NULL) {
  /external/android-clat/
config.c 314 if(root->first_child == NULL) {
  /cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java 679 View firstChild = mScrollView.findViewById(R.id.first_child);
700 View child = mScrollView.findViewById(R.id.first_child);
    [all...]
  /frameworks/av/media/libeffects/factory/
EffectsFactory.c 500 node = node->first_child;
653 node = node->first_child;
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp     [all...]

Completed in 984 milliseconds