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

<<31323334353637383940>>

  /external/autotest/client/tests/rmaptest/src/
rmap-test.c 112 void child(int childno) function
237 child(childno);
248 /* Catch each child error status and report. */
  /external/guava/guava/src/com/google/common/collect/
TreeTraverser.java 157 T child = top.childIterator.next();
158 stack.addLast(expand(child));
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
LexicalPreservingPrinter.java 246 for (Node child : node.getChildNodes()) {
247 Node found = findNodeForToken(child, tokenRange);
263 for (Node child : node.getChildNodes()) {
264 if (!PhantomNodeLogic.isPhantomNode(child)) {
265 if (!child.getRange().isPresent()) {
266 throw new RuntimeException("Range not present on node " + child);
268 elements.add(new Pair<>(child.getRange().get(), new ChildTextElement(child)));
296 String.format("I could not find child '%s' in parent '%s'. parentNodeText: %s",
  /external/libchrome/base/files/
file_path.h 210 // and BaseName().value() on each child component.
220 // Returns true if this FilePath is a strict parent of the |child|. Absolute
225 bool IsParent(const FilePath& child) const;
227 // If IsParent(child) holds, appends to path (if non-NULL) the
228 // relative path to child and returns true. For example, if parent
229 // holds "/Users/johndoe/Library/Application Support", child holds
232 // parent.AppendRelativePath(child, path) is called *path will hold
235 bool AppendRelativePath(const FilePath& child, FilePath* path) const;
  /external/linux-kselftest/tools/testing/selftests/breakpoints/
breakpoint_test_arm64.c 42 static void child(int size, int wr) function
134 child(wr_size, wr);
144 "child did not stop: %s\n", strerror(errno));
148 ksft_print_msg("child did not stop with SIGSTOP\n");
171 ksft_print_msg("child did not single-step\n");
175 ksft_print_msg("child did not stop\n");
179 ksft_print_msg("child did not stop with SIGTRAP\n");
step_after_suspend_test.c 33 void child(int cpu) function
70 child(cpu);
78 ksft_print_msg("child did not stop: %s\n", strerror(errno));
82 ksft_print_msg("child did not stop with SIGSTOP: %s\n",
104 ksft_print_msg("child did not single-step: %s\n",
109 ksft_print_msg("child did not stop: %s\n", strerror(errno));
113 ksft_print_msg("child did not stop with SIGTRAP: %s\n",
130 ksft_print_msg("child did not exit after PTRACE_CONT: %s\n",
  /external/linux-kselftest/tools/testing/selftests/ftrace/test.d/trigger/
trigger-multihist.tc 33 grep child events/sched/sched_process_fork/hist > /dev/null || \
  /external/linux-kselftest/tools/testing/selftests/x86/
ldt_gdt.c 332 pid_t child = fork(); local
333 if (child == 0) {
343 if (waitpid(child, &status, 0) != child ||
654 pid_t child = fork(); local
655 if (child == 0) {
661 if (waitpid(child, &status, 0) != child ||
  /external/ltp/testcases/kernel/fs/fs_bind/cloneNS/
test05 77 rm -rf parent* child*
test06 83 rm -rf parent* child* dir*
  /external/ltp/testcases/kernel/pty/
hangup01.c 152 "child process exited with status %d", status);
156 * Child process for hangup test. Write three messages to the slave
159 int child(int masterfd) function
165 printf("ptsname[child] failed: %s\n", strerror(errno));
233 exit(child(masterfd));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/
3-3.c 168 void child(void) function
188 ret = pthread_atfork(prepare, parent, child);
  /external/markdown/markdown/extensions/
toc.py 16 # Iterator wrapper to get parent and child all at once
19 for child in parent:
20 yield parent, child
  /external/mesa3d/src/compiler/nir/
nir_control_flow.c 637 foreach_list_typed(nir_cf_node, child, node, &if_stmt->then_list)
638 cleanup_cf_node(child, impl);
639 foreach_list_typed(nir_cf_node, child, node, &if_stmt->else_list)
640 cleanup_cf_node(child, impl);
648 foreach_list_typed(nir_cf_node, child, node, &loop->body)
649 cleanup_cf_node(child, impl);
654 foreach_list_typed(nir_cf_node, child, node, &impl->body)
655 cleanup_cf_node(child, impl);
nir_lower_io_types.c 85 while (tail->child != NULL) {
87 tail = tail->child;
  /external/python/cpython2/Lib/compiler/
symbols.py 73 def add_child(self, child):
74 self.children.append(child)
116 for child in self.children:
117 frees = child.get_free_vars()
120 child.force_global(name)
125 Some child of the current node had a free reference to name.
126 When the child was processed, it was labelled a free
129 walk back down the child chain and set the name to be global
132 Be careful to stop if a child does not think the name is
138 for child in self.children
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowDialog.java 135 View child = viewGroup.getChildAt(i); local
136 if (clickOnText(child, text)) {
  /external/selinux/sandbox/
seunshare.c 58 static int child = 0; variable
90 * If the user sends a siginto to seunshare, kill the child's session
93 if (child > 0) kill(-child,sig);
429 * process waits for it child to exit to attempt to remove the directory. If
741 /* spawn child process */
742 child = fork();
743 if (child == -1) {
748 if (child == 0) {
860 /* parent waits for child exit to do the cleanup *
    [all...]
  /external/skia/modules/sksg/src/
SkSGTransform.cpp 82 TransformEffect::TransformEffect(sk_sp<RenderNode> child, sk_sp<Transform> transform)
83 : INHERITED(std::move(child))
  /external/skia/tools/bookmaker/
includeParser.h 194 bool parseConst(Definition* child, Definition* markupDef);
195 bool parseDefine(Definition* child, Definition* markupDef);
196 bool parseEnum(Definition* child, Definition* markupDef);
210 bool parseMember(Definition* child, Definition* markupDef);
211 bool parseMethod(Definition* child, Definition* markupDef);
212 bool parseObject(Definition* child, Definition* markupDef);
215 bool parseTemplate(Definition* child, Definition* markupDef);
216 bool parseTypedef(Definition* child, Definition* markupDef);
  /external/skqp/tools/bookmaker/
includeParser.h 194 bool parseConst(Definition* child, Definition* markupDef);
195 bool parseDefine(Definition* child, Definition* markupDef);
196 bool parseEnum(Definition* child, Definition* markupDef);
210 bool parseMember(Definition* child, Definition* markupDef);
211 bool parseMethod(Definition* child, Definition* markupDef);
212 bool parseObject(Definition* child, Definition* markupDef);
215 bool parseTemplate(Definition* child, Definition* markupDef);
216 bool parseTypedef(Definition* child, Definition* markupDef);
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
FileUtils.java 71 for (File child : path.listFiles()) {
72 result &= delete(child);
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
slf4j-api-1.4.2.jar 
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
Human_WithArrayOfChildrenTest.java 138 for (Object child : fathersChildren) {
140 assertSame(Human_WithArrayOfChildren.class, child.getClass());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
HumanGenericsTest.java 173 for (Object child : children2) {
174 assertSame(HumanGen.class, child.getClass()); // check if type
315 for (Object child : children2) {
316 assertSame(HumanGen3.class, child.getClass()); // check if type
354 for (Object child : children2) {
355 assertSame(HumanGen.class, child.getClass()); // check if type
465 for (Object child : children2) {
466 assertSame(HumanGen3.class, child.getClass()); // check if type

Completed in 1786 milliseconds

<<31323334353637383940>>