Searched refs:noException (Results 1 - 2 of 2) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/
H A DByteCatchList.java154 * {@code noException} address appended if appropriate. The
157 * @param noException {@code >= -1;} the no-exception address to append, or
160 * {@code noException} appended if necessary
162 public IntList toTargetList(int noException) { argument
163 if (noException < -1) {
164 throw new IllegalArgumentException("noException < -1");
167 boolean hasDefault = (noException >= 0);
176 return IntList.makeImmutable(noException);
192 result.add(noException);
/dalvik/dx/src/com/android/dx/cf/code/
H A DByteCatchList.java154 * {@code noException} address appended if appropriate. The
157 * @param noException {@code >= -1;} the no-exception address to append, or
160 * {@code noException} appended if necessary
162 public IntList toTargetList(int noException) { argument
163 if (noException < -1) {
164 throw new IllegalArgumentException("noException < -1");
167 boolean hasDefault = (noException >= 0);
176 return IntList.makeImmutable(noException);
192 result.add(noException);

Completed in 10 milliseconds