HomeSort by relevance Sort by last modified time
    Searched refs:TABLESWITCH (Results 1 - 25 of 36) sorted by null

1 2

  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
TABLESWITCH.java 26 * TABLESWITCH - Switch within given range of values, i.e., low..high
31 public class TABLESWITCH extends Select {
37 TABLESWITCH() {
47 public TABLESWITCH(final int[] match, final InstructionHandle[] targets, final InstructionHandle defaultTarget) {
48 super(org.apache.bcel.Const.TABLESWITCH, match, targets, defaultTarget);
SWITCH.java 22 * TABLESWITCH instruction, depending on whether the match values (int[]) can be
38 * between the numbers, a TABLESWITCH instruction is generated, and
54 instruction = new TABLESWITCH(match, targets, target);
59 instruction = new TABLESWITCH(this.match, this.targets, target);
Instruction.java 392 case Const.TABLESWITCH:
393 obj = new TABLESWITCH();
Visitor.java 219 void visitTABLESWITCH( TABLESWITCH obj );
EmptyVisitor.java 343 public void visitTABLESWITCH( final TABLESWITCH obj ) {
InstructionList.java 204 if (bi instanceof Select) { // Either LOOKUPSWITCH or TABLESWITCH
894 * (short vs. int) or alignment issues (TABLESWITCH and LOOKUPSWITCH).
901 case Const.TABLESWITCH:
    [all...]
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
InstructionHandleTestCase.java 60 new TABLESWITCH(new int[0], new InstructionHandle[0], ih);
61 new TABLESWITCH(new int[0], new InstructionHandle[0], ih);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
StringSwitchJavacFilter.java 47 } else if (start.getOpcode() == Opcodes.TABLESWITCH) {
94 nextIs(Opcodes.TABLESWITCH);
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
CodeHTML.java 99 if ((opcode == Const.TABLESWITCH) || (opcode == Const.LOOKUPSWITCH)) {
109 case Const.TABLESWITCH:
415 // Get target addresses from GOTO, JSR, TABLESWITCH, etc.
420 case Const.TABLESWITCH:
432 if (opcode == Const.TABLESWITCH) {
  /external/apache-commons-bcel/src/examples/
JasminVisitor.java 52 import org.apache.bcel.generic.TABLESWITCH;
185 if (bi instanceof Select) { // Special cases LOOKUPSWITCH and TABLESWITCH
240 if (inst instanceof Select) { // Special cases LOOKUPSWITCH and TABLESWITCH
245 if (s instanceof TABLESWITCH) {
  /dalvik/dx/src/com/android/dx/cf/code/
ByteOps.java 197 public static final int TABLESWITCH = 0xaa;
302 /** "T": {@code tableswitch ...} */
525 "aa T tableswitch;" +
BytecodeArray.java 189 * <li>{@code tableswitch} becomes {@code lookupswitch}.
714 case ByteOps.TABLESWITCH: {
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/
Const.java     [all...]
Constants.java     [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
Utility.java 201 if ((opcode == Const.TABLESWITCH) || (opcode == Const.LOOKUPSWITCH)) {
217 case Const.TABLESWITCH:
    [all...]
  /external/jarjar/lib/
asm-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-3.3.jar 
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java     [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
Pass3aVerifier.java 90 import org.apache.bcel.generic.TABLESWITCH;
535 // tableswitch: BCEL will do it, supposedly.
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
ExecutionVisitor.java     [all...]
InstConstraintVisitor.java     [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /external/guice/lib/build/
asm-6.0.jar 
jarjar-1.1.jar 
  /external/testng/lib-supplied/
jarjar-issue-21.jar 

Completed in 954 milliseconds

1 2