Home
last modified time | relevance | path

Searched refs:indexType (Results 1 – 16 of 16) 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()
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()
DThreeRegisterDecodedInstruction.java38 int index, IndexType indexType, int target, long literal, in ThreeRegisterDecodedInstruction() argument
40 super(format, opcode, index, indexType, target, literal); in ThreeRegisterDecodedInstruction()
DInvokePolymorphicRangeDecodedInstruction.java32 IndexType indexType, in InvokePolymorphicRangeDecodedInstruction() argument
36 super(format, opcode, methodIndex, indexType, 0, 0); in InvokePolymorphicRangeDecodedInstruction()
DInstructionCodec.java286 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_21C() local
288 this, opcode, index, indexType, in FORMAT_21C()
404 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_22C() local
406 this, opcode, index, indexType, in FORMAT_22C()
551 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_31C() local
553 this, opcode, index, indexType, in FORMAT_31C()
690 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_45CC() local
699 this, opcode, methodIndex, indexType, protoIndex, registers); in FORMAT_45CC()
729 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_4RCC() local
731 this, opcode, methodIndex, indexType, c, registerCount, protoIndex); in FORMAT_4RCC()
[all …]
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()
DInvokePolymorphicDecodedInstruction.java31 IndexType indexType, in InvokePolymorphicDecodedInstruction() argument
34 super(format, opcode, methodIndex, indexType, 0, 0); in InvokePolymorphicDecodedInstruction()
/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.h142 InstructionIndexType indexType; member
DInstrUtils.cpp497 pDec->indexType = dexGetIndexTypeFromOpcode(opcode); in dexDecodeInstruction()
/dalvik/dx/src/com/android/dx/io/
DOpcodeInfo.java1269 private final IndexType indexType; field in OpcodeInfo.Info
1272 IndexType indexType) { in Info() argument
1276 this.indexType = indexType; in Info()
1292 return indexType; in getIndexType()
/dalvik/dexdump/
DDexDump.cpp816 switch (pDecInsn->indexType) { in indexString()
998 if (pDecInsn->indexType != kIndexNone) { in dumpInstruction()