Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/ir/optimize/
DOutliner.java98 final List<Instruction> templateInstructions = new ArrayList<>(); field in Outliner.Outline
116 templateInstructions.add(current); in Outline()
147 List<Instruction> instructions0 = this.templateInstructions; in equals()
148 List<Instruction> instructions1 = ((Outline) other).templateInstructions; in equals()
170 int hash = templateInstructions.size(); in hashCode()
172 for (int i = 0; i < templateInstructions.size() && i < MAX_HASH_INSTRUCTIONS; i++) { in hashCode()
173 Instruction instruction = templateInstructions.get(i); in hashCode()
197 List<Instruction> instructions0 = templateInstructions; in compareTo()
198 List<Instruction> instructions1 = other.templateInstructions; in compareTo()
255 for (Instruction instruction : templateInstructions) { in toString()
[all …]