/tools/tradefederation/core/src/com/android/tradefed/util/ |
TimeVal.java | 110 } catch (ArithmeticException e) {
|
/external/proguard/src/proguard/evaluation/value/ |
IntegerValue.java | 106 throws ArithmeticException; 112 throws ArithmeticException; 118 throws ArithmeticException; 125 throws ArithmeticException; 132 throws ArithmeticException;
|
/libcore/ojluni/src/main/java/java/time/ |
Duration.java | 170 * @throws ArithmeticException if the input days exceeds the capacity of {@code Duration} 185 * @throws ArithmeticException if the input hours exceeds the capacity of {@code Duration} 200 * @throws ArithmeticException if the input minutes exceeds the capacity of {@code Duration} 236 * @throws ArithmeticException if the adjustment causes the seconds to exceed the capacity of {@code Duration} 299 * @throws ArithmeticException if a numeric overflow occurs 324 * @throws ArithmeticException if numeric overflow occurs 400 } catch (ArithmeticException ex) { 417 } catch (NumberFormatException | ArithmeticException ex) { 430 } catch (NumberFormatException | ArithmeticException ex) { 463 * @throws ArithmeticException if the calculation exceeds the capacity of {@code Duration [all...] |
/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() {
|
/packages/apps/ExactCalculator/src/com/android/calculator2/ |
BoundedRational.java | 126 throw new ArithmeticException("intValue of non-int"); 272 public static class ZeroDivisionException extends ArithmeticException { 302 throw new ArithmeticException("sqrt(negative)");
|
UnifiedReal.java | 64 throw new ArithmeticException("Building UnifiedReal from null"); 634 public static class ZeroDivisionException extends ArithmeticException { 772 throw new ArithmeticException("Tangent undefined"); 786 throw new ArithmeticException("inverse trig argument out of range"); [all...] |
/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...] |
/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) {
|
/libcore/luni/src/test/java/libcore/java/lang/ |
IntegerTest.java | 188 } catch (ArithmeticException expected) { } 192 } catch (ArithmeticException expected) { }
|
/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) {}
|