Home
last modified time | relevance | path

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

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DDalvInsn.java204 public final boolean hasResult() { in hasResult() method in DalvInsn
205 return opcode.hasResult(); in hasResult()
221 boolean hasResult = hasResult(); in getMinimumRegisterRequirement()
226 if (hasResult && !compatRegs.get(0)) { in getMinimumRegisterRequirement()
230 for (int i = hasResult ? 1 : 0; i < regSz; i++) { in getMinimumRegisterRequirement()
248 registers.withExpandedRegisters(0, hasResult(), null); in getLowRegVersion()
266 if (hasResult()) compatRegs.set(0); in expandedPrefix()
270 if (hasResult()) compatRegs.set(0, firstBit); in expandedPrefix()
288 if (hasResult() && !compatRegs.get(0)) { in expandedSuffix()
312 registers.withExpandedRegisters(0, hasResult(), compatRegs); in expandedVersion()
DDop.java44 private final boolean hasResult; field in Dop
61 boolean hasResult) { in Dop() argument
82 this.hasResult = hasResult; in Dop()
124 public boolean hasResult() { in hasResult() method in Dop
125 return hasResult; in hasResult()
DRopTranslator.java709 boolean hasResult = opcode.hasResult() in visitThrowingCstInsn()
712 if (hasResult != (realResult != null)) { in visitThrowingCstInsn()
751 if (opcode.hasResult() != (realResult != null)) { in visitThrowingInsn()