Searched refs:child (Results 1 - 6 of 6) sorted by relevance

/dalvik/tests/063-process-manager/src/
H A DMain.java7 System.out.println("\nspawning child #" + i);
8 child();
15 static private void child() throws Exception { method in class:Main
16 System.out.println("spawning child");
22 System.out.println("child died");
/dalvik/tools/dmtracedump/
H A DTraceDump.c1278 /* This routine adds the given time to the parent and child methods.
1279 * This is called when the child routine exits, after the child has
1281 * duration of the child routine, including time spent in called routines.
1283 void addInclusiveTime(MethodEntry *parent, MethodEntry *child, argument
1290 if (strcmp(child->className, debugClassName) == 0)
1294 int childIsRecursive = (child->recursiveEntries > 0);
1297 if (child->recursiveEntries == 0) {
1298 child->elapsedInclusive += elapsedTime;
1299 } else if (child
1615 checkThreshold(MethodEntry* parent, MethodEntry* child) argument
1633 TimedMethod* child; local
1647 TimedMethod* child; local
[all...]
/dalvik/dx/src/com/android/dx/ssa/
H A DDomFront.java128 for (SsaBasicBlock child : node.getDomChildren()) {
132 sb.append(child);
H A DSsaRenamer.java59 * and used as the initial state for child blocks.<p>
397 for (SsaBasicBlock child : block.getDomChildren()) {
398 if (child != block) {
399 // Don't bother duplicating the array for the first child.
403 startsForBlocks[child.getIndex()] = childStart;
408 // currentMapping is owned by a child now.
H A DSsaBasicBlock.java179 * Adds a basic block as a dom child for this block. Used when constructing
182 * @param child {@code non-null;} new dom child
184 public void addDomChild(SsaBasicBlock child) { argument
185 domChildren.add(child);
H A DSsaMethod.java757 // We push the parent first, then the child on the stack.
808 SsaBasicBlock child = curDomChildren.get(i);
809 stack.add(child);

Completed in 66 milliseconds