HomeSort by relevance Sort by last modified time
    Searched defs:hasResult (Results 1 - 8 of 8) sorted by null

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dop.java 33 private final boolean hasResult;
45 * @param hasResult whether the opcode has a result register; if so it
50 boolean hasResult, String name) {
70 this.hasResult = hasResult;
113 public boolean hasResult() {
114 return hasResult;
DalvInsn.java 198 * {@code getOpcode().hasResult()}.
202 public final boolean hasResult() {
203 return opcode.hasResult();
216 boolean hasResult = hasResult();
218 int resultRequirement = hasResult ? registers.get(0).getCategory() : 0;
221 for (int i = hasResult ? 1 : 0; i < regSz; i++) {
240 if (hasResult()) {
261 if (hasResult()) {
284 registers.withSequentialRegisters(0, hasResult());
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
Dop.java 44 private final boolean hasResult;
57 * @param hasResult whether the opcode has a result register; if so it
61 boolean hasResult) {
82 this.hasResult = hasResult;
124 public boolean hasResult() {
125 return hasResult;
DalvInsn.java 200 * {@code getOpcode().hasResult()}.
204 public final boolean hasResult() {
205 return opcode.hasResult();
221 boolean hasResult = hasResult();
226 if (hasResult && !compatRegs.get(0)) {
230 for (int i = hasResult ? 1 : 0; i < regSz; i++) {
248 registers.withExpandedRegisters(0, hasResult(), null);
266 if (hasResult()) compatRegs.set(0);
270 if (hasResult()) compatRegs.set(0, firstBit)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
Dop.java 44 private final boolean hasResult;
57 * @param hasResult whether the opcode has a result register; if so it
61 boolean hasResult) {
82 this.hasResult = hasResult;
124 public boolean hasResult() {
125 return hasResult;
DalvInsn.java 200 * {@code getOpcode().hasResult()}.
204 public final boolean hasResult() {
205 return opcode.hasResult();
221 boolean hasResult = hasResult();
226 if (hasResult && !compatRegs.get(0)) {
230 for (int i = hasResult ? 1 : 0; i < regSz; i++) {
248 registers.withExpandedRegisters(0, hasResult(), null);
266 if (hasResult()) compatRegs.set(0);
270 if (hasResult()) compatRegs.set(0, firstBit)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FilterEffect.h 57 bool hasResult() const { return m_imageBufferResult || m_unmultipliedImageResult || m_premultipliedImageResult; }
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 134 milliseconds