HomeSort by relevance Sort by last modified time
    Searched refs:ArithmeticException (Results 51 - 75 of 154) sorted by null

1 23 4 5 6 7

  /external/apache-commons-math/src/main/java/org/apache/commons/math/
MathRuntimeException.java 222 * Constructs a new <code>ArithmeticException</code> with specified formatted detail message.
230 public static ArithmeticException createArithmeticException(final String pattern,
236 * Constructs a new <code>ArithmeticException</code> with specified formatted detail message.
243 public static ArithmeticException createArithmeticException(final Localizable pattern,
245 return new ArithmeticException() {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/div_int_lit16/
Test_div_int_lit16.java 140 ArithmeticException.class);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/div_int_lit8/
Test_div_int_lit8.java 138 loadAndRun("dot.junit.opcodes.div_int_lit8.d.T_div_int_lit8_13", ArithmeticException.class);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_int_lit16/
Test_rem_int_lit16.java 133 loadAndRun("dot.junit.opcodes.rem_int_lit16.d.T_rem_int_lit16_9", ArithmeticException.class,
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_int_lit8/
Test_rem_int_lit8.java 133 loadAndRun("dot.junit.opcodes.rem_int_lit8.d.T_rem_int_lit8_9", ArithmeticException.class,
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_long/
Test_rem_long.java 126 loadAndRun("dot.junit.opcodes.rem_long.d.T_rem_long_1", ArithmeticException.class,
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_long_2addr/
Test_rem_long_2addr.java 127 ArithmeticException.class, 1234567890123l, 0l);
  /external/guava/guava/src/com/google/common/collect/
CartesianList.java 62 } catch (ArithmeticException e) {
  /libcore/luni/src/main/java/java/math/
Multiplication.java 164 throw new ArithmeticException(error.getMessage());
BigDecimal.java 96 * ArithmeticException} for the case that rounding is necessary, i.e. for
368 * @throws ArithmeticException
406 * @throws ArithmeticException
438 * @throws ArithmeticException
532 * @throws ArithmeticException
556 * @throws ArithmeticException
590 * @throws ArithmeticException
622 * @throws ArithmeticException
652 * @throws ArithmeticException
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/math/
BigDecimal.java     [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
BigDecimal.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
BigDecimal.java     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MathUtils.java 100 * @throws ArithmeticException if the result can not be represented as an
118 * @throws ArithmeticException if the result can not be represented as an
133 * @throws ArithmeticException if the result can not be represented as an
186 * <code>Long.MAX_VALUE</code> an <code>ArithMeticException</code> is
194 * @throws ArithmeticException if the result is too large to be represented
784 * an <code>ArithMeticException </code> is thrown.</li>
790 * @throws ArithmeticException if the result is too large to be represented
801 throw new ArithmeticException(
881 * <code>ArithmeticException</code>, because the result would be 2^31, which
893 * @throws ArithmeticException if the result cannot be represented as
    [all...]
BigReal.java 240 public BigReal divide(BigReal a) throws ArithmeticException {
  /external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
IntMath.java 79 * @throws ArithmeticException if {@code mode} is {@link RoundingMode#UNNECESSARY} and {@code x}
153 * @throws ArithmeticException if {@code q == 0}, or if {@code mode == UNNECESSARY} and {@code a}
160 throw new ArithmeticException("/ by zero"); // for GWT
225 * @throws ArithmeticException if {@code m <= 0}
231 throw new ArithmeticException("Modulus " + m + " must be > 0");
291 * @throws ArithmeticException if {@code a + b} overflows in signed {@code int} arithmetic
302 * @throws ArithmeticException if {@code a - b} overflows in signed {@code int} arithmetic
313 * @throws ArithmeticException if {@code a * b} overflows in signed {@code int} arithmetic
326 * @throws ArithmeticException if {@code b} to the {@code k}th power overflows in signed
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
UnsignedIntsTest.java 122 } catch (ArithmeticException e) {
135 } catch (ArithmeticException e) {
UnsignedLongTest.java 200 fail("Expected ArithmeticException");
201 } catch (ArithmeticException expected) {}
227 fail("Expected ArithmeticException");
228 } catch (ArithmeticException expected) {}
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedIntsTest.java 125 } catch (ArithmeticException e) {
138 } catch (ArithmeticException e) {
  /external/guava/guava-tests/test/com/google/common/math/
BigIntegerMathTest.java 115 } catch (ArithmeticException e) {
205 } catch (ArithmeticException e) {
306 } catch (ArithmeticException e) {
378 } catch (ArithmeticException e) {
400 fail("Expected ArithmeticException");
401 } catch (ArithmeticException expected) {}
  /art/test/003-omnibus-opcodes/src/
IntMath.java 497 } catch (ArithmeticException ae) {
503 } catch (ArithmeticException ae) {
509 } catch (ArithmeticException ae) {
515 } catch (ArithmeticException ae) {
  /art/test/106-exceptions2/src/
Main.java 193 } catch (ArithmeticException e) {
  /external/guava/guava-gwt/test-super/com/google/common/math/super/com/google/common/math/
LongMathTest.java 57 // Throws an ArithmeticException if "the simple implementation" of binomial coefficients overflows
97 } catch (ArithmeticException e) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerDivideTest.java 43 fail("ArithmeticException has not been caught");
44 } catch (ArithmeticException e) {
58 fail("ArithmeticException has not been caught");
59 } catch (ArithmeticException e) {
410 fail("ArithmeticException has not been caught");
411 } catch (ArithmeticException e) {
622 fail("ArithmeticException has not been caught");
623 } catch (ArithmeticException e) {
  /libcore/jsr166-tests/src/test/java/jsr166/
AbstractExecutorServiceTest.java 233 public Object call() { throw new ArithmeticException(); }};
238 assertTrue(success.getCause() instanceof ArithmeticException);
277 public Long call() { throw new ArithmeticException(); }});
442 public Long call() { throw new ArithmeticException(); }});

Completed in 581 milliseconds

1 23 4 5 6 7