Package com.android.dx.io.instructions

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


      int k = ps.getFirstKey();
      for (int i = 0; i < keys.length; i++) {
        keys[i] = k++;
      }
    } else {
      SparseSwitchPayloadDecodedInstruction ss = (SparseSwitchPayloadDecodedInstruction) payload;
      targets = ss.getTargets();
      keys = new Object[targets.length];
      for (int i = 0; i < keys.length; i++) {
        keys[i] = ss.getKeys()[i];
      }
    }
    // convert from relative to absolute offsets
    for (int i = 0; i < targets.length; i++) {
      targets[i] = targets[i] - payloadOffset + offset;
View Full Code Here

TOP

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

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.