HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 651 - 675 of 1841) sorted by null

<<21222324252627282930>>

  /external/wpa_supplicant_8/hs20/client/
osu_client.c 807 xml_node_t *child; local
809 xml_node_for_each_child(ctx->xml, child, spel) {
810 xml_node_for_each_check(ctx->xml, child);
811 set_pps_cred_policy_spe(ctx, id, child);
875 xml_node_t *child; local
877 xml_node_for_each_child(ctx->xml, child, prpl) {
878 xml_node_for_each_check(ctx->xml, child);
879 set_pps_cred_policy_prp(ctx, id, child);
959 xml_node_t *child; local
963 xml_node_for_each_child(ctx->xml, child, node)
1031 xml_node_t *child; local
1058 xml_node_t *child; local
1146 xml_node_t *child; local
1199 xml_node_t *child; local
1249 xml_node_t *child; local
1263 xml_node_t *child; local
1295 xml_node_t *child; local
1323 xml_node_t *child; local
1538 xml_node_t *child; local
1560 xml_node_t *child; local
1755 xml_node_t *child, *sim, *realm; local
1790 xml_node_t *child; local
1820 xml_node_t *child; local
    [all...]
  /external/boringssl/src/crypto/ec_extra/
ec_asn1.c 95 CBS child; local
96 if (!CBS_get_asn1(&ec_private_key, &child, kParametersTag)) {
100 inner_group = EC_KEY_parse_parameters(&child);
111 if (CBS_len(&child) != 0) {
138 CBS child, public_key; local
140 if (!CBS_get_asn1(&ec_private_key, &child, kPublicKeyTag) ||
141 !CBS_get_asn1(&child, &public_key, CBS_ASN1_BITSTRING) ||
151 CBS_len(&child) != 0) {
211 CBB child; local
212 if (!CBB_add_asn1(&ec_private_key, &child, kParametersTag) |
222 CBB child, public_key; local
360 CBB child; local
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_lower_vars_to_ssa.c 143 for (nir_deref *tail = deref->deref.child; tail; tail = tail->child) {
226 if (deref->child == NULL) {
229 switch (deref->child->deref_type) {
231 nir_deref_array *arr = nir_deref_as_array(deref->child);
235 deref->child, cb, state))
240 deref->child, cb, state))
247 nir_deref_struct *str = nir_deref_as_struct(deref->child);
250 deref->child, cb, state))
257 unreachable("Invalid deref child type")
    [all...]
  /external/skia/tools/bookmaker/
mdOut.cpp 41 ".tr_const tr:nth-child(even) { background-color: #f0f0f0; }" "\n"
42 ".td2_const td:first-child + td { text-align: center; }" "\n"
539 // example text is blocked by last child before std out, if it exists
755 for (auto child : found->fChildren) {
757 [child](string def) { return child->fName == def; } )) {
760 if (contains_referenced_child(child, refs)) {
786 // If undocumented but parent or child is referred to: good enough for now
2381 auto child = csParent->findClone(match); local
    [all...]
  /external/skqp/tools/bookmaker/
mdOut.cpp 40 ".tr_const tr:nth-child(even) { background-color: #f0f0f0; }" "\n"
41 ".td2_const td:first-child + td { text-align: center; }" "\n"
538 // example text is blocked by last child before std out, if it exists
755 for (auto child : found->fChildren) {
757 [child](string def) { return child->fName == def; } )) {
760 if (contains_referenced_child(child, refs)) {
786 // If undocumented but parent or child is referred to: good enough for now
2381 auto child = csParent->findClone(match); local
    [all...]
  /external/u-boot/scripts/kconfig/
qconf.cc 136 * depending whether it's at the view root or a child.
588 struct menu* child; local
606 for (child = menu->list; child; child = child->next) {
608 type = child->prompt ? child->prompt->type : P_UNKNOWN;
612 if (!(child->flags & MENU_ROOT))
616 if (child->flags & MENU_ROOT
653 struct menu* child; local
1811 struct menu *child; local
    [all...]
  /developers/samples/android/ui/text/TextStyling-Kotlin/app/src/main/java/com/android/example/text/styling/renderer/
MarkdownBuilder.kt 69 for (child in element.elements) {
70 buildElement(child, builder)
  /external/autotest/server/site_tests/firmware_Cr50PinWeaverServer/
firmware_Cr50PinWeaverServer.py 19 child = '\0' * 32
22 part = child * num_siblings
23 child = sha256(part + child).digest()
  /external/boringssl/src/crypto/bytestring/
ber.c 136 // without a child element.
238 CBS child; local
240 !CBS_get_asn1(in, &child, outer_tag | CBS_ASN1_CONSTRUCTED)) {
244 while (CBS_len(&child) > 0) {
246 if (!CBS_get_asn1(&child, &chunk, inner_tag) ||
  /external/boringssl/src/crypto/rand_extra/
rand_test.cc 68 pid_t child = fork(); local
69 if (child < 0) {
76 if (child == 0) {
77 // This is the child. Generate entropy and write it to the parent.
94 // This is the parent. Read the entropy from the child.
100 fprintf(stderr, "Unexpected EOF from child.\n");
114 // Wait for the child to exit.
116 if (waitpid(child, &status, 0) < 0) {
121 fprintf(stderr, "Child did not exit cleanly.\n");
135 // Draw entropy in two child processes and the parent process. This tes
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeTraverser.java 149 T child = top.childIterator.next();
150 stack.addLast(expand(child));
203 for (T child : children(result)) {
204 queue.add(checkNotNull(child));
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/
Node.java 303 for (Node child : getChildrenNodes()) {
304 if (child.getComment() != null) {
305 comments.add(child.getComment());
307 comments.addAll(child.getAllContainedComments());
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ACallCommand.java 123 void removeChild(@SuppressWarnings("unused") Node child)
125 // Remove child
126 if(this._position_ == child)
132 if(this._macro_.remove(child))
137 if(this._arguments_.remove(child))
142 throw new RuntimeException("Not a child.");
148 // Replace child
191 throw new RuntimeException("Not a child.");
  /external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/
Makefile 12 $(OUTPUT)/ptrace-pkey $(OUTPUT)/core-pkey: child.h
  /external/ltp/testcases/kernel/fs/fs_bind/bin/
lockfile 32 otherpid="$(cat ${lockfile}child 2> /dev/null)"
43 echo $$ >| ${lockfile}child
setupnslock 13 otherpid="$(cat ${lockfile}child 2> /dev/null)"
24 echo $$ >| ${lockfile}child
  /external/ltp/testcases/kernel/mem/cpuset/
cpuset01.c 50 int child, i, status; local
60 child = SAFE_FORK();
61 if (child == 0) {
77 SAFE_WAITPID(child, &status, WUNTRACED | WCONTINUED);
79 tst_res(TFAIL, "child exit status is %d", WEXITSTATUS(status));
161 tst_res(TFAIL, "child exit status is %d",
166 tst_res(TFAIL, "child caught signal %d",
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
16-1.c 150 pthread_t child; local
163 errno = pthread_create(&child, NULL, threaded, s);
168 * sync on the ready flag. Since the child is running in
179 errno = pthread_kill(child, s->sig);
192 errno = pthread_join(child, &thread_status);
  /external/mesa3d/src/intel/compiler/
brw_fs_sel_peephole.cpp 144 foreach_list_typed(bblock_link, child, link, &block->children) {
145 if (child->block != then_block) {
146 if (child->block->prev()->end()->opcode == BRW_OPCODE_ELSE) {
147 else_block = child->block;
  /external/mesa3d/src/util/
slab.h 27 * Objects are allocated from "child" pools that are connected to a "parent"
30 * Calls to slab_alloc/slab_free for the same child pool must not occur from
33 * Allocations obtained from one child pool should usually be freed in the
34 * same child pool. Freeing an allocation in a different child pool associated
39 * functions around a single parent-child pair.
84 struct slab_child_pool child; member in struct:slab_mempool
  /external/pdfium/fxjs/
cfxjse_resolveprocessor.cpp 277 for (CXFA_Node* child : children) {
279 if (child->GetClassHashCode() == uNameHash)
280 rnd.m_Objects.push_back(child);
281 } else if (child->GetNameHash() == uNameHash) {
282 rnd.m_Objects.push_back(child);
285 if (m_pNodeHelper->NodeIsTransparent(child) &&
286 child->GetElementType() != XFA_Element::PageSet) {
291 rndFind.m_CurObject = child;
382 CXFA_Node* child = parentNode->GetFirstChild(); local
391 while (child) {
    [all...]
  /external/protobuf/src/google/protobuf/util/
field_mask_util_test.cc 418 FieldMaskUtil::FromString("child.payload", &mask);
420 EXPECT_EQ(1234, nested_dst.child().payload().optional_int32());
421 EXPECT_EQ(0, nested_dst.child().child().payload().optional_int32());
423 FieldMaskUtil::FromString("child.child.payload", &mask);
425 EXPECT_EQ(1234, nested_dst.child().payload().optional_int32());
426 EXPECT_EQ(5678, nested_dst.child().child().payload().optional_int32());
429 FieldMaskUtil::FromString("child.child.payload", &mask)
    [all...]
  /external/robolectric-shadows/shadows/supportv4/src/test/java/org/robolectric/shadows/support/v4/
ShadowMediaBrowserCompatTest.java 32 private MediaItem child; field in class:ShadowMediaBrowserCompatTest
52 child = shadow.createMediaItem(ROOT_ID, CHILD_ID, "child_title", FLAG_PLAYABLE);
85 assertThat(mediaSubscriptionCallback.getResults()).isEqualTo(Collections.singletonList(child));
100 final List<MediaItem> expectedResults = Arrays.asList(root, child);
  /external/setupcompat/main/java/com/google/android/setupcompat/internal/
TemplateLayout.java 48 * The container of the actual content. This will be a view in the template, which child views
131 public void addView(View child, int index, ViewGroup.LayoutParams params) {
132 container.addView(child, index, params);
135 private void addViewInternal(View child) {
136 super.addView(child, -1, generateDefaultLayoutParams());
206 * as {@link View#onFinishInflate()} but for inflation of the template instead of for child views.
  /external/tensorflow/tensorflow/tools/compatibility/update/
generate_v2_renames_map.py 80 for child in children:
81 _, attr = tf_decorator.unwrap(child[1])
135 for child in children:
136 _, attr = tf_decorator.unwrap(child[1])

Completed in 1218 milliseconds

<<21222324252627282930>>