HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 1 - 25 of 5270) 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/boringssl/src/crypto/bn_extra/
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;
52 CBB child; local
    [all...]
  /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;
  /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/ltp/testcases/kernel/fs/fs_bind/bind/
00_Descriptions.txt 25 test01 - shared child to shared parent.
26 test02 - shared child to private parent.
27 test03 - shared child to slave parent.
28 test04 - shared child to unclonable parent.
29 test05 - private child to shared parent.
30 test06 - private child to private parent.
31 test07 - private child to slave parent.
33 test08 - private child to uncloneable parent.
34 test09 - slave child to shared parent.
35 test10 - slave child to private parent
    [all...]
  /external/libcxxabi/test/
inherited_exception.pass.cpp 30 // Clang emits warnings about exceptions of type 'Child' being caught by
47 struct Child : public Base, public Base2 {
52 Child child; local
53 child.b1 = 10;
54 child.b2 = 11;
55 child.c = 12;
56 throw child;
60 Child child; local
68 static Child child; local
    [all...]
  /external/ltp/testcases/misc/math/float/exp_log/
genexp_log.c 69 pid_t child; local
80 child = create_file(funct, 0);
81 waitpid(child, NULL, 0);
84 child = create_file(funct, 0);
85 waitpid(child, NULL, 0);
88 child = create_file(funct, 0);
89 waitpid(child, NULL, 0);
92 child = create_file(funct, 0);
93 waitpid(child, NULL, 0);
96 child = create_file(funct, 0)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/test/
inherited_exception.pass.cpp 30 // Clang emits warnings about exceptions of type 'Child' being caught by
47 struct Child : public Base, public Base2 {
52 Child child; local
53 child.b1 = 10;
54 child.b2 = 11;
55 child.c = 12;
56 throw child;
60 Child child; local
68 static Child child; local
    [all...]
  /external/ltp/testcases/kernel/fs/fs_bind/rbind/
00_Descriptions.txt 26 test01 - shared child to shared parent.
27 test02 - shared child to private parent.
28 test03 - shared child to slave parent.
29 test04 - shared child to unclonable parent.
30 test05 - private child to shared parent.
31 test06 - private child to private parent.
32 test07 - private child to slave parent.
33 test08 - private child to uncloneable parent.
34 test09 - slave child to shared parent.
35 test10 - slave child to private parent
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
ChildTextElement.java 28 * Represent the position of a child node in the NodeText of its parent.
31 private final Node child; field in class:ChildTextElement
33 ChildTextElement(Node child) {
34 this.child = child;
38 return LexicalPreservingPrinter.print(child);
42 return child;
52 return node == child;
56 return LexicalPreservingPrinter.getOrCreateNodeText(child);
66 return child.equals(that.child)
    [all...]
  /external/ltp/testcases/misc/math/float/power/
genpower.c 69 pid_t child; local
80 child = create_file(funct, 0);
81 waitpid(child, NULL, 0);
84 child = create_file(funct, 0);
85 waitpid(child, NULL, 0);
88 child = create_file(funct, 0);
89 waitpid(child, NULL, 0);
92 child = create_file(funct, 0);
93 waitpid(child, NULL, 0);
96 child = create_file(funct, 0)
    [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/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/
TreeVisitor.java 28 for (Node child : node.getChildrenNodes()){
29 visitDepthFirst(child);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
3-1.c 22 * -> create a child; then terminate this child.
54 pid_t child, ctl; local
59 /* Create the child */
60 child = fork();
61 if (child == -1) {
65 /* child */
66 if (child == 0) {
67 /* The child stops immediatly */
71 /* Parent joins the child */
    [all...]
  /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 */

Completed in 660 milliseconds

1 2 3 4 5 6 7 8 91011>>