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.java132 for (SsaBasicBlock child : node.getDomChildren()) {
136 sb.append(child);
H A DSsaRenamer.java60 * and used as the initial state for child blocks.<p>
398 for (SsaBasicBlock child : block.getDomChildren()) {
399 if (child != block) {
400 // Don't bother duplicating the array for the first child.
404 startsForBlocks[child.getIndex()] = childStart;
409 // currentMapping is owned by a child now.
H A DSsaBasicBlock.java180 * Adds a basic block as a dom child for this block. Used when constructing
183 * @param child {@code non-null;} new dom child
185 public void addDomChild(SsaBasicBlock child) { argument
186 domChildren.add(child);
H A DSsaMethod.java758 // We push the parent first, then the child on the stack.
809 SsaBasicBlock child = curDomChildren.get(i);
810 stack.add(child);

Completed in 167 milliseconds