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

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction.java 44 public abstract class ImmutableInstruction implements Instruction {
47 protected ImmutableInstruction(@Nonnull Opcode opcode) {
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 makeImmutable(@Nonnull Instruction item)
    [all...]
  /prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar 

Completed in 259 milliseconds