Home
last modified time | relevance | path

Searched refs:Instruction35c (Results 1 – 15 of 15) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
DInstructionRewriter.java65 return new RewrittenInstruction35c((Instruction35c)instruction); in rewrite()
160 … protected class RewrittenInstruction35c extends BaseRewrittenReferenceInstruction<Instruction35c>
161 implements Instruction35c {
162 public RewrittenInstruction35c(@Nonnull Instruction35c instruction) { in RewrittenInstruction35c()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
DImmutableInstruction35c.java36 import org.jf.dexlib2.iface.instruction.formats.Instruction35c;
44 public class ImmutableInstruction35c extends ImmutableInstruction implements Instruction35c {
73 public static ImmutableInstruction35c of(Instruction35c instruction) { in of()
DImmutableInstruction.java111 return ImmutableInstruction35c.of((Instruction35c)instruction); in of()
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/instruction/
DSmalideaInstruction35c.java34 import org.jf.dexlib2.iface.instruction.formats.Instruction35c;
39 public class SmalideaInstruction35c extends SmalideaInstruction implements Instruction35c {
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
DCustomMethodInlineTableTest.java42 import org.jf.dexlib2.iface.instruction.formats.Instruction35c;
83 …MethodReference methodReference = (MethodReference)((Instruction35c)deodexedInstruction).getRefere… in testCustomMethodInlineTable_Virtual()
112 …MethodReference methodReference = (MethodReference)((Instruction35c)deodexedInstruction).getRefere… in testCustomMethodInlineTable_Static()
141 …MethodReference methodReference = (MethodReference)((Instruction35c)deodexedInstruction).getRefere… in testCustomMethodInlineTable_Direct()
/external/smali/smali/src/test/java/org/jf/smali/
DImplicitReferenceTest.java44 import org.jf.dexlib2.iface.instruction.formats.Instruction35c;
87 Instruction35c instruction = (Instruction35c)instructions.get(0); in testImplicitMethodReference()
94 instruction = (Instruction35c)instructions.get(1); in testImplicitMethodReference()
101 instruction = (Instruction35c)instructions.get(2); in testImplicitMethodReference()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DDexBackedInstruction35c.java37 import org.jf.dexlib2.iface.instruction.formats.Instruction35c;
43 public class DexBackedInstruction35c extends DexBackedInstruction implements Instruction35c {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
DBuilderInstruction35c.java37 import org.jf.dexlib2.iface.instruction.formats.Instruction35c;
43 public class BuilderInstruction35c extends BuilderInstruction implements Instruction35c {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/formats/
DInstruction35c.java37 public interface Instruction35c extends FiveRegisterInstruction, ReferenceInstruction { interface
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DMethodAnalyzer.java1596Instruction35c deodexedInstruction = new ImmutableInstruction35c(deodexedOpcode, instruction.getRe…
1634 Instruction35c instruction = (Instruction35c)analyzedInstruction.instruction;
1636 Instruction35c deodexedInstruction = new ImmutableInstruction35c(Opcode.INVOKE_DIRECT,
1752 Instruction35c instruction = (Instruction35c)analyzedInstruction.instruction;
1768 Instruction35c instruction = (Instruction35c)analyzedInstruction.instruction;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DCodeItem.java133 annotateInstruction35c(out, (Instruction35c)instruction); in makeAnnotator()
253 …ate void annotateInstruction35c(@Nonnull AnnotatedBytes out, @Nonnull Instruction35c instruction) { in makeAnnotator()
/external/smali/smalidea/src/test/java/org/jf/smalidea/dexlib/
DSmalideaMethodTest.java269 Instruction35c instruction = (Instruction35c)instructions.get(21); in testSmalideaMethod()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMutableMethodImplementation.java637 setInstruction(location, newBuilderInstruction35c((Instruction35c) instruction));
859 private BuilderInstruction35c newBuilderInstruction35c(@Nonnull Instruction35c instruction) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DInstructionWriter.java334 public void write(@Nonnull Instruction35c instruction) { in write()
DDexWriter.java1048 instructionWriter.write((Instruction35c)instruction);