HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 1 - 25 of 3822) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/s390x/
test_fork.stdout.exp 0 child
  /bionic/tests/libs/
pthread_atfork.cpp 19 extern "C" int proxy_pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) {
20 return pthread_atfork(prepare, parent, child);
  /external/elfutils/tests/
run-backtrace-demangle.sh 25 child=testfile-backtrace-demangle
26 testfiles $child{,.core}
27 tempfiles $child.{bt,err}
39 testrun ${abs_top_builddir}/src/stack -n 2 -e $child --core $child.core >$child.bt 2>$child.err || exitcode=$?
40 cat $child.{bt,err}
47 if test $exitcode != 1 || ! grep "shown max number of frames" $child.err; then
51 if ! grep -w f $child.bt; the
    [all...]
run-backtrace-native-core.sh 20 check_native_core backtrace-child
run-backtrace-native.sh 20 check_native backtrace-child
run-backtrace-native-biarch.sh 25 check_native backtrace-child-biarch
run-backtrace-native-core-biarch.sh 25 check_native_core backtrace-child-biarch
  /external/autotest/frontend/client/src/autotest/common/
DomUtils.java 7 Element child = elem.getFirstChildElement(); local
8 while (child != null) {
9 Element nextChild = child.getNextSiblingElement();
10 elem.removeChild(child);
11 child = nextChild;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
Parent1.java 20 private Child1 child; field in class:Parent1
31 return child;
34 public void setChild(Child1 child) {
35 this.child = child;
  /bionic/libc/arch-common/bionic/
pthread_atfork.h 19 extern int __register_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void), void* dso);
26 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) {
27 return __register_atfork(prepare, parent, child, &__dso_handle);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemUnknown.java 58 for (ElemTemplateElement child = m_firstChild; child != null;
59 child = child.m_nextSibling)
61 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK)
65 transformer.pushElemTemplateElement(child);
66 ((ElemFallback) child).executeFallback(transformer);
78 * Return true if this extension element has a <xsl:fallback> child element.
80 * @return true if this extension element has a <xsl:fallback> child element.
84 for (ElemTemplateElement child = m_firstChild; child != null
    [all...]
  /external/valgrind/none/tests/
allexec32.stdout.exp 3 child exited
5 child exited
7 child exited
10 child exited
12 child exited
14 child exited
allexec64.stdout.exp 3 child exited
5 child exited
7 child exited
10 child exited
12 child exited
14 child exited
  /external/boringssl/src/crypto/bn/
bn_asn1.c 22 CBS child; local
23 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_INTEGER) ||
24 CBS_len(&child) == 0) {
29 if (CBS_data(&child)[0] & 0x80) {
35 if (CBS_data(&child)[0] == 0x00 &&
36 CBS_len(&child) > 1 &&
37 !(CBS_data(&child)[1] & 0x80)) {
42 return BN_bin2bn(CBS_data(&child), CBS_len(&child), ret) != NULL;
46 CBS child; local
68 CBB child; local
    [all...]
  /external/libcxxabi/test/
inherited_exception.pass.cpp 38 struct Child : public Base, public Base2 {
43 Child child; local
44 child.b1 = 10;
45 child.b2 = 11;
46 child.c = 12;
47 throw child;
51 Child child; local
52 child.b1 = 10
59 static Child child; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
inherited_exception.pass.cpp 38 struct Child : public Base, public Base2 {
43 Child child; local
44 child.b1 = 10;
45 child.b2 = 11;
46 child.c = 12;
47 throw child;
51 Child child; local
52 child.b1 = 10
59 static Child child; local
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-multiple-nonvirtual-inheritance.cpp 21 void call_left_no_override(ChildNoOverride *child) {
23 // CHECK: %[[CHILD:.*]] = load %struct.ChildNoOverride
25 child->left();
27 // CHECK: %[[LEFT:.*]] = bitcast %struct.ChildNoOverride* %[[CHILD]] to %struct.Left*
50 void call_left_override(ChildOverride *child) {
52 // CHECK: %[[CHILD:.*]] = load %struct.ChildOverride
54 child->left();
55 // CHECK: %[[VFPTR:.*]] = bitcast %struct.ChildOverride* %[[CHILD]] to void (%struct.ChildOverride*)***
60 // CHECK: call x86_thiscallcc void %[[VFUN_VALUE]](%struct.ChildOverride* %[[CHILD]])
64 void call_right_no_override(ChildNoOverride *child) {
    [all...]
  /external/ltrace/testsuite/ltrace.minor/
trace-fork.c 2 Objectives : Verify that ltrace can trace to child process after
11 child () function
13 printf("Fork Child\n");
26 child();
29 printf("My child pid is %d\n",pid);
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
AsyncStructure.java 37 final ViewStructure child = structure.asyncNewChild(0); local
48 child.setClassName(AsyncStructure.class.getName());
49 child.setVisibility(View.VISIBLE);
50 child.setDimens(width / 4, height / 4, 0, 0, width / 2, height / 2);
51 child.setEnabled(true);
52 child.setContentDescription("This is some async content");
53 child.setText("We could have lots and lots of async text!");
54 child.asyncCommit();
  /external/valgrind/memcheck/tests/
noisy_child.c 22 pid_t child; local
29 child = fork();
30 assert(child != -1); /* assert fork did not fail */
32 if (child == 0) {
33 /* I am the child */
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
JsonValue.java 32 * for (JsonValue entry = map.child; entry != null; entry = entry.next)
47 public JsonValue child, next, prev, parent; field in class:JsonValue
79 /** Returns the child at the specified index. This requires walking the linked list to the specified entry, see
83 JsonValue current = child;
91 /** Returns the child with the specified name.
94 JsonValue current = child;
100 /** Returns true if a child with the specified name exists. */
105 /** Returns the child at the specified index. This requires walking the linked list to the specified entry, see
107 * @throws IllegalArgumentException if the child was not found. */
109 JsonValue current = child;
132 JsonValue child = get(index); local
148 JsonValue child = get(name); local
586 JsonValue child = get(name); local
593 JsonValue child = get(name); local
599 JsonValue child = get(name); local
605 JsonValue child = get(name); local
611 JsonValue child = get(name); local
617 JsonValue child = get(name); local
623 JsonValue child = get(name); local
629 JsonValue child = get(name); local
635 JsonValue child = get(name); local
641 JsonValue child = get(name); local
648 JsonValue child = get(name); local
656 JsonValue child = get(name); local
664 JsonValue child = get(name); local
672 JsonValue child = get(name); local
680 JsonValue child = get(name); local
688 JsonValue child = get(name); local
696 JsonValue child = get(name); local
704 JsonValue child = get(name); local
712 JsonValue child = get(name); local
720 JsonValue child = get(index); local
728 JsonValue child = get(index); local
736 JsonValue child = get(index); local
744 JsonValue child = get(index); local
752 JsonValue child = get(index); local
760 JsonValue child = get(index); local
768 JsonValue child = get(index); local
776 JsonValue child = get(index); local
784 JsonValue child = get(index); local
862 public JsonValue child () { method in class:JsonValue
    [all...]
  /external/valgrind/helgrind/tests/
tc01_simple_race.c 6 /* Simple test program, has a race. Parent and child both modify x
21 pthread_t child; local
22 if (pthread_create(&child, NULL, child_fn, NULL)) {
27 /* Unprotected relative to child */
30 if (pthread_join(child, NULL)) {
tc02_simple_tls.c 6 /* Simple test program, no race: parent only modified x after child
14 /* Unprotected relative to parent, but in child's segment only */
21 pthread_t child; local
25 if (pthread_create(&child, NULL, child_fn, NULL)) {
30 if (pthread_join(child, NULL)) {
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
MockView.java 60 public void addView(View child) {
61 if (child == mView) {
62 super.addView(child);
67 public void addView(View child, int index) {
68 if (child == mView) {
69 super.addView(child, index);
74 public void addView(View child, int width, int height) {
75 if (child == mView) {
76 super.addView(child, width, height);
81 public void addView(View child, ViewGroup.LayoutParams params)
    [all...]
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/utils/
ResourceCache.java 29 View child = mCachedViews.get(resId, null); local
30 if (child == null) {
31 child = view.findViewById(resId);
32 mCachedViews.put(resId, child);
34 return (ViewType) child;

Completed in 759 milliseconds

1 2 3 4 5 6 7 8 91011>>