HomeSort by relevance Sort by last modified time
    Searched refs:ImmutableInstruction20bc (Results 1 - 3 of 3) sorted by null

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction20bc.java 45 public class ImmutableInstruction20bc extends ImmutableInstruction implements Instruction20bc {
51 public ImmutableInstruction20bc(@Nonnull Opcode opcode,
59 public static ImmutableInstruction20bc of(Instruction20bc instruction) {
60 if (instruction instanceof ImmutableInstruction20bc) {
61 return (ImmutableInstruction20bc)instruction;
63 return new ImmutableInstruction20bc(
ImmutableInstructionFactory.java 75 public ImmutableInstruction20bc makeInstruction20bc(@Nonnull Opcode opcode,
78 return new ImmutableInstruction20bc(opcode, verificationError, reference);
ImmutableInstruction.java 73 return ImmutableInstruction20bc.of((Instruction20bc)instruction);

Completed in 167 milliseconds