Searched defs:ImmutableInstruction (Results 1 - 1 of 1) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstruction.java44 public abstract class ImmutableInstruction implements Instruction { class in inherits:Instruction
47 protected ImmutableInstruction(@Nonnull Opcode opcode) { method in class:ImmutableInstruction
53 public static ImmutableInstruction of(Instruction instruction) {
54 if (instruction instanceof ImmutableInstruction) {
55 return (ImmutableInstruction)instruction;
146 public static ImmutableList<ImmutableInstruction> immutableListOf(Iterable<? extends Instruction> list) {
150 private static final ImmutableConverter<ImmutableInstruction, Instruction> CONVERTER =
151 new ImmutableConverter<ImmutableInstruction, Instruction>() {
154 return item instanceof ImmutableInstruction;
159 protected ImmutableInstruction makeImmutabl
[all...]

Completed in 200 milliseconds