HomeSort by relevance Sort by last modified time
    Searched defs:instruction (Results 1 - 25 of 893) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/instruction/
InstructionFactory.java 21 package proguard.classfile.instruction;
24 * This class provides methods to create and reuse Instruction objects.
31 * Creates a new Instruction from the data in the byte array, starting
34 public static Instruction create(byte[] code, int offset)
36 Instruction instruction; local
168 instruction = new SimpleInstruction();
192 instruction = new ConstantInstruction();
251 instruction = new VariableInstruction(wide);
277 instruction = new BranchInstruction()
    [all...]
InstructionUtil.java 21 package proguard.classfile.instruction;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
InstructionWriter.java 39 import org.jf.dexlib2.iface.instruction.DualReferenceInstruction;
40 import org.jf.dexlib2.iface.instruction.ReferenceInstruction;
41 import org.jf.dexlib2.iface.instruction.SwitchElement;
42 import org.jf.dexlib2.iface.instruction.formats.*;
101 throw new ExceptionWithContext("Instruction %s is invalid for api %d", opcode.name, opcodes.api);
106 public void write(@Nonnull Instruction10t instruction) {
108 writer.write(getOpcodeValue(instruction.getOpcode()));
109 writer.write(instruction.getCodeOffset());
115 public void write(@Nonnull Instruction10x instruction) {
117 writer.write(getOpcodeValue(instruction.getOpcode()))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction.java 32 package org.jf.dexlib2.dexbacked.instruction;
37 import org.jf.dexlib2.iface.instruction.Instruction;
43 public abstract class DexBackedInstruction implements Instruction {
60 public static Instruction readFrom(@Nonnull DexReader reader) {
69 Instruction instruction = buildInstruction(reader.dexBuf, opcode, reader.getOffset()); local
70 reader.moveRelative(instruction.getCodeUnits()*2);
71 return instruction;
DexBackedInstruction10x.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction10x;
  /external/pdfium/core/fxcrt/xml/
cfx_xmlparser.cpp 148 auto* instruction = static_cast<CFX_XMLInstruction*>(m_pChild); local
150 instruction->AppendData(m_ws1);
151 instruction->AppendData(m_pParser->GetTargetData());
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java 35 import org.jf.dexlib2.iface.instruction.*;
109 RegisterRangeInstruction instruction = (RegisterRangeInstruction)analyzedInstruction.getInstruction(); local
111 registers.set(instruction.getStartRegister(),
112 instruction.getStartRegister() + instruction.getRegisterCount());
114 FiveRegisterInstruction instruction = (FiveRegisterInstruction)analyzedInstruction.getInstruction(); local
115 int regCount = instruction.getRegisterCount();
118 registers.set(instruction.getRegisterG());
121 registers.set(instruction.getRegisterF());
124 registers.set(instruction.getRegisterE())
133 ThreeRegisterInstruction instruction = (ThreeRegisterInstruction)analyzedInstruction.getInstruction(); local
138 TwoRegisterInstruction instruction = (TwoRegisterInstruction)analyzedInstruction.getInstruction(); local
142 OneRegisterInstruction instruction = (OneRegisterInstruction)analyzedInstruction.getInstruction(); local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
FieldOffsetInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface FieldOffsetInstruction extends Instruction {
HatLiteralInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface HatLiteralInstruction extends Instruction {
InlineIndexInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface InlineIndexInstruction extends Instruction {
LongHatLiteralInstruction.java 32 package org.jf.dexlib2.iface.instruction;
NarrowHatLiteralInstruction.java 32 package org.jf.dexlib2.iface.instruction;
NarrowLiteralInstruction.java 32 package org.jf.dexlib2.iface.instruction;
OffsetInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface OffsetInstruction extends Instruction {
OneRegisterInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface OneRegisterInstruction extends Instruction {
PayloadInstruction.java 32 package org.jf.dexlib2.iface.instruction;
37 public interface PayloadInstruction extends Instruction {
RegisterRangeInstruction.java 32 package org.jf.dexlib2.iface.instruction;
SwitchPayload.java 32 package org.jf.dexlib2.iface.instruction;
ThreeRegisterInstruction.java 32 package org.jf.dexlib2.iface.instruction;
TwoRegisterInstruction.java 32 package org.jf.dexlib2.iface.instruction;
VariableRegisterInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface VariableRegisterInstruction extends Instruction {
VerificationErrorInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface VerificationErrorInstruction extends Instruction {
VtableIndexInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface VtableIndexInstruction extends Instruction {
WideLiteralInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface WideLiteralInstruction extends Instruction {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/formats/
Instruction10t.java 32 package org.jf.dexlib2.iface.instruction.formats;
34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;

Completed in 493 milliseconds

1 2 3 4 5 6 7 8 91011>>