Home
last modified time | relevance | path

Searched refs:InstructionWithReference (Results 1 – 16 of 16) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
DInstructionWithReference.java34 public abstract class InstructionWithReference extends Instruction { class
38 protected InstructionWithReference(Opcode opcode, Item referencedItem) { in InstructionWithReference() method in InstructionWithReference
45 …protected InstructionWithReference(Opcode opcode, Item referencedItem, ReferenceType referenceType… in InstructionWithReference() method in InstructionWithReference
52 …protected InstructionWithReference(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)… in InstructionWithReference() method in InstructionWithReference
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DSyntheticAccessorResolver.java34 import org.jf.dexlib.Code.InstructionWithReference;
92 InstructionWithReference instruction = (InstructionWithReference)instructions[0]; in getAccessedMember()
DMethodAnalyzer.java1723InstructionWithReference invokeInstruction = (InstructionWithReference)previousInstruction.instruc… in analyzeMoveResult()
1754InstructionWithReference invokeInstruction = (InstructionWithReference)previousInstruction.getInst… in verifyMoveResult()
1943InstructionWithReference instruction = (InstructionWithReference)analyzedInstruction.instruction; in verifyConstClass()
1958InstructionWithReference instruction = (InstructionWithReference)analyzedInstruction.instruction; in analyzeCheckCast()
1978InstructionWithReference instruction = (InstructionWithReference)analyzedInstruction.instruction; in verifyCheckCast()
2007InstructionWithReference instruction = (InstructionWithReference)analyzedInstruction.instruction; in verifyInstanceOf()
2044InstructionWithReference instruction = (InstructionWithReference)analyzedInstruction.instruction; in analyzeNewInstance()
2067InstructionWithReference instruction = (InstructionWithReference)analyzedInstruction.instruction; in verifyNewInstance()
2110InstructionWithReference instruction = (InstructionWithReference)analyzedInstruction.instruction; in analyzeNewArray()
2127InstructionWithReference instruction = (InstructionWithReference)analyzedInstruction.instruction; in verifyNewArray()
[all …]
DAnalyzedInstruction.java245 InstructionWithReference instruction = (InstructionWithReference)this.instruction;
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
DInstructionWithJumboReference.java34 import org.jf.dexlib.Code.InstructionWithReference;
41 public abstract class InstructionWithJumboReference extends InstructionWithReference {
DInstruction22c.java32 import org.jf.dexlib.Code.InstructionWithReference;
40 public class Instruction22c extends InstructionWithReference implements TwoRegisterInstruction,
DInstruction21c.java32 import org.jf.dexlib.Code.InstructionWithReference;
40 public class Instruction21c extends InstructionWithReference implements SingleRegisterInstruction,
DInstruction3rc.java32 import org.jf.dexlib.Code.InstructionWithReference;
44 public class Instruction3rc extends InstructionWithReference implements RegisterRangeInstruction,
DInstruction35c.java33 import org.jf.dexlib.Code.InstructionWithReference;
44 public class Instruction35c extends InstructionWithReference implements FiveRegisterInstruction {
DInstruction31c.java32 import org.jf.dexlib.Code.InstructionWithReference;
DInstruction41c.java35 import org.jf.dexlib.Code.InstructionWithReference;
DInstruction20bc.java36 public class Instruction20bc extends InstructionWithReference {
DInstruction5rc.java35 import org.jf.dexlib.Code.InstructionWithReference;
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DMethodDefinition.java33 import org.jf.dexlib.Code.InstructionWithReference;
367 if (!baksmali.noAccessorComments && (instruction instanceof InstructionWithReference)) { in addInstructionMethodItems()
370 … (MethodIdItem)((InstructionWithReference) instruction).getReferencedItem(); in addInstructionMethodItems()
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
DInstructionMethodItem.java340 Item item = ((InstructionWithReference)instruction).getReferencedItem(); in writeReference()
/external/smali/dexlib/src/main/java/org/jf/dexlib/
DCodeItem.java469InstructionWithReference referenceInstruction = (InstructionWithReference)instruction; in fixInstructions()