Package com.android.dx.io.instructions

Examples of com.android.dx.io.instructions.PackedSwitchPayloadDecodedInstruction


    int payloadOffset = insn.getTarget();
    DecodedInstruction payload = insnArr[payloadOffset];
    Object[] keys;
    int[] targets;
    if (packed) {
      PackedSwitchPayloadDecodedInstruction ps = (PackedSwitchPayloadDecodedInstruction) payload;
      targets = ps.getTargets();
      keys = new Object[targets.length];
      int k = ps.getFirstKey();
      for (int i = 0; i < keys.length; i++) {
        keys[i] = k++;
      }
    } else {
      SparseSwitchPayloadDecodedInstruction ss = (SparseSwitchPayloadDecodedInstruction) payload;
View Full Code Here

TOP

Related Classes of com.android.dx.io.instructions.PackedSwitchPayloadDecodedInstruction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.