HomeSort by relevance Sort by last modified time
    Searched full:tableswitch (Results 1 - 25 of 130) sorted by null

1 2 3 4 5 6

  /dalvik/dx/tests/103-verify-branch-ops/
op_tableswitch.j 23 tableswitch 0x10
expected.txt 36 tableswitch: expected failure occurred
run 45 oneop tableswitch
  /dalvik/dx/tests/031-bb-dead-code/
blort.j 77 ; dead code after tableswitch instruction
79 tableswitch 0x10
expected.txt 61 0000: tableswitch
  /external/javassist/src/main/javassist/bytecode/
InstructionPrinter.java 111 case TABLESWITCH:
112 return tableSwitch(iter, pos);
242 private static String tableSwitch(CodeIterator iter, int pos) {
243 StringBuffer buffer = new StringBuffer("tableswitch {\n");
CodeIterator.java 310 * includes <code>LOOKUPSWITCH</code> or <code>TABLESWITCH</code>.
333 * includes <code>LOOKUPSWITCH</code> or <code>TABLESWITCH</code>.
358 * includes <code>LOOKUPSWITCH</code> or <code>TABLESWITCH</code>.
383 * includes <code>LOOKUPSWITCH</code> or <code>TABLESWITCH</code>.
406 * includes <code>LOOKUPSWITCH</code> or <code>TABLESWITCH</code>.
431 * includes <code>LOOKUPSWITCH</code> or <code>TABLESWITCH</code>.
730 // 0 .. UNUSED (186), LOOKUPSWITCH, TABLESWITCH, WIDE
761 else if (opcode == TABLESWITCH) {
887 else if (inst == TABLESWITCH) {
    [all...]
Mnemonic.java 208 "tableswitch", /* 170*/
Opcode.java 228 int TABLESWITCH = 170;
414 -1, // tableswitch, 170
CodeAnalyzer.java 155 case TABLESWITCH :
  /dalvik/dx/tests/032-bb-live-code/
blort.j 130 ; Test tableswitch.
132 tableswitch 0x10
  /toolchain/binutils/binutils-2.25/opcodes/
pj-dis.c 73 /* The tableswitch instruction is followed by the default
76 if (strcmp (op->u.name, "tableswitch") == 0)
  /external/jacoco/org.jacoco.doc/docroot/doc/
flow.html 112 <code>THROW</code>, <code>TABLESWITCH</code> and <code>LOOKUPSWITCH</code></td>
118 <td><code>GOTO</code>, <code>IFx</code>, <code>TABLESWITCH</code> or
121 <td><code>TABLESWITCH</code> and <code>LOOKUPSWITCH</code> will define
  /dalvik/dx/src/com/android/dx/cf/code/
SwitchList.java 24 * {@code tableswitch} or {@code lookupswitch} instruction. It
ByteOps.java 197 public static final int TABLESWITCH = 0xaa;
302 /** "T": {@code tableswitch ...} */
525 "aa T tableswitch;" +
BytecodeArray.java 190 * <li>{@code tableswitch} becomes {@code lookupswitch}.
715 case ByteOps.TABLESWITCH: {
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
MethodProbesVisitor.java 98 * Visits a TABLESWITCH instruction with optional probes for each target
  /external/javassist/src/main/javassist/bytecode/analysis/
SubroutineScanner.java 86 if (opcode == TABLESWITCH) {