Home
last modified time | relevance | path

Searched refs:NarrowLiteralInstruction (Results 1 – 10 of 10) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/formats/
DInstruction31i.java34 import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction;
37 public interface Instruction31i extends OneRegisterInstruction, NarrowLiteralInstruction {
DInstruction22b.java34 import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction;
37 public interface Instruction22b extends TwoRegisterInstruction, NarrowLiteralInstruction {
DInstruction11n.java34 import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction;
37 public interface Instruction11n extends OneRegisterInstruction, NarrowLiteralInstruction {
DInstruction21s.java34 import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction;
37 public interface Instruction21s extends OneRegisterInstruction, NarrowLiteralInstruction {
DInstruction22s.java34 import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction;
37 public interface Instruction22s extends TwoRegisterInstruction, NarrowLiteralInstruction {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
DNarrowLiteralInstruction.java34 public interface NarrowLiteralInstruction extends WideLiteralInstruction { interface
DNarrowHatLiteralInstruction.java34 …lic interface NarrowHatLiteralInstruction extends HatLiteralInstruction, NarrowLiteralInstruction {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DCodeItem.java321 } else if (instruction instanceof NarrowLiteralInstruction) { in makeAnnotator()
322 int value = ((NarrowLiteralInstruction)instruction).getNarrowLiteral(); in makeAnnotator()
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
DInstructionMethodItem.java493 … writeCommentIfLikelyFloat(writer, ((NarrowLiteralInstruction)instruction).getNarrowLiteral()); in writeCommentIfLikelyFloat()
545 …return writeCommentIfResourceId(writer, ((NarrowLiteralInstruction)instruction).getNarrowLiteral()… in writeCommentIfResourceId()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DMethodAnalyzer.java1162NarrowLiteralInstruction instruction = (NarrowLiteralInstruction)analyzedInstruction.instruction;
1498 … int literal = ((NarrowLiteralInstruction)analyzedInstruction.instruction).getNarrowLiteral();
1513 …long literalShift = ((NarrowLiteralInstruction)analyzedInstruction.instruction).getNarrowLiteral();