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

1 2

  /cts/tools/dasm/src/dasm/
sym.java 25 static final int SPARSE_SWITCH = 61;
ReservedWords.java 84 reserved_words.put("sparse-switch", new token(sym.SPARSE_SWITCH));
parser.cup 79 SPARSE_SWITCH, SPARSE_SWITCH_END,
743 SPARSE_SWITCH ss_table
  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/instruction/
SmalideaSparseSwitchPayload.java 55 smaliMethod, Opcode.SPARSE_SWITCH, psiInstruction.getOffset());
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
InstructionDuplicator.java 76 if (opcode == Opcode.SPARSE_SWITCH || opcode == Opcode.PACKED_SWITCH
RandomInstructionGenerator.java 134 || Opcode.isBetween(newOpcode, Opcode.PACKED_SWITCH, Opcode.SPARSE_SWITCH)
  /art/libdexfile/dex/
bytecode_utils.h 32 sparse_(instruction.Opcode() == Instruction::SPARSE_SWITCH) {
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Opcode.java 64 SPARSE_SWITCH,
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
PayloadAlignmentTest.java 224 implBuilder.addInstruction(new BuilderInstruction31t(Opcode.SPARSE_SWITCH, 0,
237 Opcode.SPARSE_SWITCH});
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 89 public static final int SPARSE_SWITCH = 0x2c;
OpcodeInfo.java 238 public static final Info SPARSE_SWITCH =
239 new Info(Opcodes.SPARSE_SWITCH, "sparse-switch",
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvOps.java 78 public static final int SPARSE_SWITCH = 0x2c;
Dops.java 241 public static final Dop SPARSE_SWITCH =
242 new Dop(DalvOps.SPARSE_SWITCH, DalvOps.SPARSE_SWITCH,
    [all...]
RopToDop.java 106 MAP.put(Rops.SWITCH, Dops.SPARSE_SWITCH);
RopTranslator.java 640 Dops.PACKED_SWITCH : Dops.SPARSE_SWITCH;
  /dalvik/dx/src/com/android/dx/dex/code/
Dops.java 244 public static final Dop SPARSE_SWITCH =
245 new Dop(Opcodes.SPARSE_SWITCH, Opcodes.SPARSE_SWITCH,
    [all...]
RopToDop.java 89 // Opcodes.SPARSE_SWITCH
283 MAP.put(Rops.SWITCH, Dops.SPARSE_SWITCH);
RopTranslator.java 653 Dops.PACKED_SWITCH : Dops.SPARSE_SWITCH;
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 364 case SPARSE_SWITCH:
384 (instruction.opcode == Opcode.SPARSE_SWITCH &&
    [all...]
  /art/dexlayout/
compact_dex_writer.cc 180 opcode == Instruction::SPARSE_SWITCH) {
  /art/tools/dexfuzz/src/dexfuzz/program/
CodeTranslator.java 591 if (Opcode.isBetween(opcode, Opcode.PACKED_SWITCH, Opcode.SPARSE_SWITCH)) {
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItem.java 164 case SPARSE_SWITCH:
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 129 } else if (opcode == Opcode.SPARSE_SWITCH) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 520 if (instructionOpcode == Opcode.PACKED_SWITCH || instructionOpcode == Opcode.SPARSE_SWITCH) {
    [all...]
  /art/runtime/interpreter/
interpreter_common.h 535 DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH);
540 // Return length of SPARSE_SWITCH if size is 0.
561 // No corresponding value: move forward by 3 (size of SPARSE_SWITCH).

Completed in 1419 milliseconds

1 2