/external/qemu/android/ |
config.h | 25 AConfig* first_child; member in struct:AConfig
|
/system/core/include/cutils/ |
config_utils.h | 30 cnode *first_child; member in struct:cnode
|
/external/chromium_org/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/chromium_org/content/renderer/accessibility/ |
renderer_accessibility_browsertest.cc | 304 const WebAXObject& first_child = root_obj.childAt(0); local 306 first_child,
|
/external/chromium_org/cc/layers/ |
layer_unittest.cc | 931 scoped_refptr<Layer> first_child = Layer::Create(); local [all...] |
/external/e2fsprogs/e2fsck/ |
profile.c | 142 struct profile_node *first_child; member in struct:profile_node 1034 * or more child nodes, pointed to by first_child. 1037 * containing a string. Its first_child pointer must be null. 1054 for (child=node->first_child; child; child = next) { 1119 if (node->value && node->first_child) 1123 for (p = node->first_child; p; last = p, p = p->next) { 1159 for (p=section->first_child, last = 0; p; last = p, p = p->next) { 1178 section->first_child = new; 1209 p = section->first_child; 1387 for (p=section->first_child; p; p = p->next) [all...] |
/external/openfst/src/include/fst/extensions/ngram/ |
ngram-fst.h | 573 size_t first_child = context_index_.Select0(node_rank) + 1; local 574 if (context_index_.Get(first_child) == false) { 579 children = context_words_ + context_index_.Rank1(first_child); 580 loc = lower_bound(children, children + last_child - first_child + 1, 582 if (loc == children + last_child - first_child + 1 || 586 node = first_child + loc - children; 588 first_child = context_index_.Select0(node_rank) + 1; 589 if (context_index_.Get(first_child) == false) break; 609 size_t first_child = context_index_.Select0(node_rank) + 1; local 611 if (context_index_.Get(first_child) != false) [all...] |