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

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableUnknownInstruction.java 38 public class ImmutableUnknownInstruction extends ImmutableInstruction implements UnknownInstruction {
43 public ImmutableUnknownInstruction(int originalOpcode) {
48 public static ImmutableUnknownInstruction of(UnknownInstruction instruction) {
49 if (instruction instanceof ImmutableUnknownInstruction) {
50 return (ImmutableUnknownInstruction)instruction;
52 return new ImmutableUnknownInstruction(instruction.getOriginalOpcode());
ImmutableInstruction.java 63 return ImmutableUnknownInstruction.of((UnknownInstruction)instruction);

Completed in 200 milliseconds