Home
last modified time | relevance | path

Searched refs:indexType (Results 1 – 14 of 14) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
DZeroRegisterDecodedInstruction.java29 int index, IndexType indexType, int target, long literal) { in ZeroRegisterDecodedInstruction() argument
30 super(format, opcode, index, indexType, target, literal); in ZeroRegisterDecodedInstruction()
DOneRegisterDecodedInstruction.java32 int index, IndexType indexType, int target, long literal, in OneRegisterDecodedInstruction() argument
34 super(format, opcode, index, indexType, target, literal); in OneRegisterDecodedInstruction()
DRegisterRangeDecodedInstruction.java36 int index, IndexType indexType, int target, long literal, in RegisterRangeDecodedInstruction() argument
38 super(format, opcode, index, indexType, target, literal); in RegisterRangeDecodedInstruction()
DTwoRegisterDecodedInstruction.java35 int index, IndexType indexType, int target, long literal, in TwoRegisterDecodedInstruction() argument
37 super(format, opcode, index, indexType, target, literal); in TwoRegisterDecodedInstruction()
DThreeRegisterDecodedInstruction.java38 int index, IndexType indexType, int target, long literal, in ThreeRegisterDecodedInstruction() argument
40 super(format, opcode, index, indexType, target, literal); in ThreeRegisterDecodedInstruction()
DFourRegisterDecodedInstruction.java41 int index, IndexType indexType, int target, long literal, in FourRegisterDecodedInstruction() argument
43 super(format, opcode, index, indexType, target, literal); in FourRegisterDecodedInstruction()
DFiveRegisterDecodedInstruction.java44 int index, IndexType indexType, int target, long literal, in FiveRegisterDecodedInstruction() argument
46 super(format, opcode, index, indexType, target, literal); in FiveRegisterDecodedInstruction()
DDecodedInstruction.java50 private final IndexType indexType; field in DecodedInstruction
102 int index, IndexType indexType, int target, long literal) { in DecodedInstruction() argument
114 this.indexType = indexType; in DecodedInstruction()
146 return indexType; in getIndexType()
DInstructionCodec.java260 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_21C() local
262 this, opcode, index, indexType, in FORMAT_21C()
368 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_22C() local
370 this, opcode, index, indexType, in FORMAT_22C()
502 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_31C() local
504 this, opcode, index, indexType, in FORMAT_31C()
779 IndexType indexType = OpcodeInfo.getIndexType(opcode); in decodeRegisterList() local
785 format, opcode, index, indexType, in decodeRegisterList()
789 format, opcode, index, indexType, in decodeRegisterList()
794 format, opcode, index, indexType, in decodeRegisterList()
[all …]
/dalvik/opcode-gen/
Dopcode-gen.awk112 itype = toupper(indexType[i]);
298 indexType[idx] = parts[5];
325 if (indexTypeValues[indexType[idx]] == "") {
326 printf("unknown index type: %s\n", indexType[idx]) >"/dev/stderr";
418 packedIndexType[i] = indexType[op];
/dalvik/libdex/
DInstrUtils.h136 InstructionIndexType indexType; member
DInstrUtils.cpp497 pDec->indexType = dexGetIndexTypeFromOpcode(opcode); in dexDecodeInstruction()
/dalvik/dx/src/com/android/dx/io/
DOpcodeInfo.java1239 private final IndexType indexType; field in OpcodeInfo.Info
1242 IndexType indexType) { in Info() argument
1246 this.indexType = indexType; in Info()
1262 return indexType; in getIndexType()
/dalvik/dexdump/
DDexDump.cpp746 switch (pDecInsn->indexType) { in indexString()
890 if (pDecInsn->indexType != kIndexNone) { in dumpInstruction()