Home
last modified time | relevance | path

Searched refs:RETURN_VOID (Results 1 – 12 of 12) sorted by relevance

/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
DFixGotoTest.java29 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID)); in testFixGotoToGoto16()
52 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID)); in testFixGotoToGoto32()
75 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID)); in testFixGoto16ToGoto32()
111 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID)); in testFixGotoCascading()
DFixOffsetsTest.java91 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID)); in testFixOffsets()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DJumboStringConversionTest.java72 methodBuilder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID)); in testJumboStringConversion()
119 Assert.assertEquals(Opcode.RETURN_VOID, instructions.get(66000).getOpcode()); in testJumboStringConversion()
151 instructions.add(new ImmutableInstruction10x(Opcode.RETURN_VOID)); in testJumboStringConversion_NonMethodBuilder()
216 Assert.assertEquals(Opcode.RETURN_VOID, actualInstructions.get(66000).getOpcode()); in testJumboStringConversion_NonMethodBuilder()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
DCustomMethodInlineTableTest.java60 new ImmutableInstruction10x(Opcode.RETURN_VOID)); in testCustomMethodInlineTable_Virtual()
87 new ImmutableInstruction10x(Opcode.RETURN_VOID)); in testCustomMethodInlineTable_Static()
114 new ImmutableInstruction10x(Opcode.RETURN_VOID)); in testCustomMethodInlineTable_Direct()
/external/dexmaker/src/dx/java/com/android/dx/io/
DOpcodes.java58 public static final int RETURN_VOID = 0x0e; field in Opcodes
DOpcodeInfo.java118 public static final Info RETURN_VOID = field in OpcodeInfo
119 new Info(Opcodes.RETURN_VOID, "return-void",
1119 set(RETURN_VOID);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DRopToDop.java374 MAP.put(Rops.RETURN_VOID, Dops.RETURN_VOID); in MAP.put() argument
DDops.java125 public static final Dop RETURN_VOID = field in Dops
126 new Dop(Opcodes.RETURN_VOID, Opcodes.RETURN_VOID,
1120 set(RETURN_VOID);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DRops.java598 public static final Rop RETURN_VOID = field in Rops
1159 return RETURN_VOID; in ropFor()
1770 case Type.BT_VOID: return RETURN_VOID; in opReturn()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DMethodAnalyzer.java575 case RETURN_VOID:
1069 Instruction10x deodexedInstruction = new ImmutableInstruction10x(Opcode.RETURN_VOID);
/external/dexmaker/src/main/java/com/google/dexmaker/
DCode.java816 addInstruction(new PlainInsn(Rops.RETURN_VOID, sourcePosition, null, in returnVoid()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DOpcode.java50 RETURN_VOID((short)0x0e, "return-void", ReferenceType.NONE, Format.Format10x), enumConstant