Searched defs:which (Results 1 - 8 of 8) sorted by relevance

/dalvik/tests/003-omnibus-opcodes/src/
H A DGoto.java25 static int smallGoto(boolean which) { argument
30 if (which) {
39 static int mediumGoto(boolean which) { argument
44 if (which) {
62 static int bigGoto(boolean which) { argument
67 if (which) {
/dalvik/tests/054-uncaught/src/
H A DMain.java15 private static void testThread(int which) { argument
16 Thread t = new Helper(which);
26 static void catchTheUncaught(int which) { argument
30 System.out.println("Test " + which);
31 switch (which) {
53 private int which; field in class:Main.Helper
55 public Helper(int which) { argument
56 this.which = which;
60 catchTheUncaught(which);
[all...]
/dalvik/tests/047-returns/src/
H A DMain.java21 public static Runnable pickOne(int which) { argument
24 if (which == 1)
26 else if (which == 2)
28 else if (which == 3)
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DOutputCollector.java25 * by the primary list, such as switch case tables) — which it
31 * {@code non-null;} the associated finisher (which holds the instruction
66 * Reverses a branch which is buried a given number of instructions
70 * @param which how many instructions back to find the branch;
75 public void reverseBranch(int which, CodeAddress newTarget) { argument
76 finisher.reverseBranch(which, newTarget);
106 * Helper for {@link #getFinisher}, which appends the suffix to
H A DOutputFinisher.java34 * Processor for instruction lists, which takes a "first cut" of
98 * Helper for {@link #add} which scrutinizes a single
125 * Helper for {@link #hasAnyLocalInfo} which scrutinizes a single
154 * Helper for {@link #getAllConstants} which adds all the info for
178 * Helper for {@link #getAllConstants} which adds all the info for
231 * which updates the position and local info flags.
251 * Reverses a branch which is buried a given number of instructions
255 * @param which how many instructions back to find the branch;
260 public void reverseBranch(int which, CodeAddress newTarget) { argument
262 int index = size - which
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputCollector.java27 * by the primary list, such as switch case tables) — which it
33 * {@code non-null;} the associated finisher (which holds the instruction
69 * Reverses a branch which is buried a given number of instructions
73 * @param which how many instructions back to find the branch;
78 public void reverseBranch(int which, CodeAddress newTarget) { argument
79 finisher.reverseBranch(which, newTarget);
109 * Helper for {@link #getFinisher}, which appends the suffix to
H A DOutputFinisher.java38 * Processor for instruction lists, which takes a "first cut" of
107 * Helper for {@link #add} which scrutinizes a single
134 * Helper for {@link #hasAnyLocalInfo} which scrutinizes a single
163 * Helper for {@link #getAllConstants} which adds all the info for
187 * Helper for {@link #getAllConstants} which adds all the info for
240 * which updates the position and local info flags.
260 * Reverses a branch which is buried a given number of instructions
264 * @param which how many instructions back to find the branch;
270 public void reverseBranch(int which, CodeAddress newTarget) { argument
272 int index = size - which
[all...]
/dalvik/vm/
H A DMisc.h105 DebugTargetKind which; member in struct:DebugOutputTarget
137 * Return a newly-allocated string in which all occurrences of '.' have
263 * have elapsed. Pass in the start time, which must be a value returned by

Completed in 319 milliseconds