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

1 2

  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format21c.java 67 if (info.opcode == Opcode.CONST_STRING) {
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
JumboStringConversionTest.java 69 methodBuilder.addInstruction(new BuilderInstruction21c(Opcode.CONST_STRING, 0,
110 Assert.assertEquals(Opcode.CONST_STRING, instructions.get(i).getOpcode());
143 return Opcode.CONST_STRING;
207 Assert.assertEquals(Opcode.CONST_STRING, actualInstructions.get(i).getOpcode());
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
NonsenseStringPrinter.java 123 constStringInsn.insn.info = Instruction.getOpcodeInfo(Opcode.CONST_STRING);
ValuePrinter.java 217 if (opcode == Opcode.CONST_STRING || opcode == Opcode.CONST_STRING_JUMBO) {
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
CodeItem.java 152 if (opcode == Opcode.CONST_STRING || opcode == Opcode.CONST_STRING_JUMBO) {
Opcode.java 46 CONST_STRING,
Instruction.java 346 addOpcodeInfo(Opcode.CONST_STRING, "const-string", 0x1a, new Format21c());
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/util/
InstructionOffsetMapTest.java 54 /*06: 0x07*/ new ImmutableInstruction21c(Opcode.CONST_STRING, 8, new ImmutableStringReference("blah")),
  /art/tools/veridex/
hidden_api_finder.cc 70 case Instruction::CONST_STRING: {
flow_analysis.cc 301 case Instruction::CONST_STRING: {
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 71 public static final int CONST_STRING = 0x1a;
OpcodeInfo.java 166 public static final Info CONST_STRING =
167 new Info(Opcodes.CONST_STRING, "const-string",
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvOps.java 60 public static final int CONST_STRING = 0x1a;
Dops.java 169 public static final Dop CONST_STRING =
170 new Dop(DalvOps.CONST_STRING, DalvOps.CONST_STRING,
174 new Dop(DalvOps.CONST_STRING_JUMBO, DalvOps.CONST_STRING,
    [all...]
RopToDop.java 80 * into either CONST_STRING or CONST_CLASS.
407 return Dops.CONST_STRING;
  /dalvik/dx/src/com/android/dx/dex/code/
Dops.java 172 public static final Dop CONST_STRING =
173 new Dop(Opcodes.CONST_STRING, Opcodes.CONST_STRING,
177 new Dop(Opcodes.CONST_STRING_JUMBO, Opcodes.CONST_STRING,
    [all...]
OutputFinisher.java 572 * Don't break out for const_string to generate jumbo version
576 guess.getOpcode() != Opcodes.CONST_STRING) {
    [all...]
RopToDop.java 75 // Opcodes.CONST_STRING
257 * into either CONST_STRING or CONST_CLASS.
586 return Dops.CONST_STRING;
  /art/tools/dexanalyze/
dexanalyze_bytecode.cc 292 case Instruction::CONST_STRING:
298 new_opcode = Instruction::CONST_STRING;
dexanalyze_experiments.cc 323 case Instruction::CONST_STRING: {
  /art/libdexfile/dex/
dex_instruction.cc 202 case CONST_STRING:
dex_instruction_list.h 48 V(0x1A, CONST_STRING, "const-string", k21c, kIndexStringRef, kContinue | kThrow, 0, kVerifyRegA | kVerifyRegBString) \
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexWriter.java     [all...]
  /art/dex2oat/driver/
compiler_driver.cc 724 case Instruction::CONST_STRING:
726 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
Opcode.java 70 CONST_STRING(0x1a, "const-string", ReferenceType.STRING, Format.Format21c, Opcode.CAN_THROW | Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
    [all...]

Completed in 144 milliseconds

1 2