Searched defs:AnalyzedInstruction (Results 1 - 1 of 1) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DAnalyzedInstruction.java39 public class AnalyzedInstruction implements Comparable<AnalyzedInstruction> { class in inherits:Comparable
53 protected final TreeSet<AnalyzedInstruction> predecessors = new TreeSet<AnalyzedInstruction>();
58 protected final LinkedList<AnalyzedInstruction> successors = new LinkedList<AnalyzedInstruction>();
83 public AnalyzedInstruction(Instruction instruction, int instructionIndex, int registerCount) { method in class:AnalyzedInstruction
104 public SortedSet<AnalyzedInstruction> getPredecessors() {
108 protected boolean addPredecessor(AnalyzedInstruction predecessor) {
112 protected void addSuccessor(AnalyzedInstruction successo
[all...]

Completed in 62 milliseconds