Home
last modified time | relevance | path

Searched refs:UnresolvedOdexInstruction (Results 1 – 6 of 6) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
DUnresolvedOdexInstructionMethodItem.java32 import org.jf.dexlib2.analysis.UnresolvedOdexInstruction;
38 …lass UnresolvedOdexInstructionMethodItem extends InstructionMethodItem<UnresolvedOdexInstruction> {
40 @Nonnull UnresolvedOdexInstruction instruction) { in UnresolvedOdexInstructionMethodItem()
DInstructionMethodItemFactory.java32 import org.jf.dexlib2.analysis.UnresolvedOdexInstruction;
51 if (instruction instanceof UnresolvedOdexInstruction) { in makeInstructionFormatMethodItem()
53 (UnresolvedOdexInstruction)instruction); in makeInstructionFormatMethodItem()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DUnresolvedOdexInstruction.java42 public class UnresolvedOdexInstruction implements Instruction { class
47 public UnresolvedOdexInstruction(Instruction originalInstruction, int objectRegisterNumber) { in UnresolvedOdexInstruction() method in UnresolvedOdexInstruction
DMethodAnalyzer.java281 new UnresolvedOdexInstruction(instruction, objectRegisterNumber)); in analyze()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DFormat.java71 UnresolvedOdexInstruction(-1); enumConstant
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DMethodDefinition.java487 … if (instruction.getInstruction().getOpcode().format == Format.UnresolvedOdexInstruction) { in addAnalyzedInstructionMethodItems()