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

1 2 3 4 5 6 7

  /libcore/ojluni/src/main/java/java/lang/
ArithmeticException.java 33 * {@code ArithmeticException} objects may be constructed by the
41 public class ArithmeticException extends RuntimeException {
45 * Constructs an {@code ArithmeticException} with no detail
48 public ArithmeticException() {
53 * Constructs an {@code ArithmeticException} with the specified
58 public ArithmeticException(String s) {
Math.java 746 * @throws ArithmeticException if the result overflows an int
753 throw new ArithmeticException("integer overflow");
765 * @throws ArithmeticException if the result overflows a long
772 throw new ArithmeticException("long overflow");
784 * @throws ArithmeticException if the result overflows an int
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ArithmeticExceptionTest.java 25 * java.lang.ArithmeticException#ArithmeticException()
28 ArithmeticException e = new ArithmeticException();
34 * java.lang.ArithmeticException#ArithmeticException(java.lang.String)
37 ArithmeticException e = new ArithmeticException("fixture");
  /art/test/014-math3/src/
Main.java 29 catch (ArithmeticException ae) {
34 catch (ArithmeticException ae) {
43 catch (ArithmeticException ae) {
48 catch (ArithmeticException ae) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_exception/d/
T_move_exception_2.java 24 } catch (ArithmeticException ae) {
  /art/test/543-checker-dce-trycatch/src/
Main.java 51 throw new ArithmeticException();
55 } catch (ArithmeticException ex) {
  /art/test/584-checker-div-bool/src/
Main.java 22 throw new Error("Expected ArithmeticException");
23 } catch (ArithmeticException e) {
  /external/proguard/src/proguard/evaluation/value/
UnknownLongValue.java 76 throws ArithmeticException
82 throws ArithmeticException
88 throws ArithmeticException
94 throws ArithmeticException
100 throws ArithmeticException
UnknownIntegerValue.java 92 throws ArithmeticException
98 throws ArithmeticException
104 throws ArithmeticException
110 throws ArithmeticException
116 throws ArithmeticException
ParticularLongValue.java 101 throws ArithmeticException
107 throws ArithmeticException
113 throws ArithmeticException
119 throws ArithmeticException
189 throws ArithmeticException
195 throws ArithmeticException
201 throws ArithmeticException
207 throws ArithmeticException
SpecificLongValue.java 81 throws ArithmeticException
87 throws ArithmeticException
93 throws ArithmeticException
99 throws ArithmeticException
173 throws ArithmeticException
179 throws ArithmeticException
185 throws ArithmeticException
191 throws ArithmeticException
ParticularIntegerValue.java 128 throws ArithmeticException
134 throws ArithmeticException
140 throws ArithmeticException
146 throws ArithmeticException
256 throws ArithmeticException
262 throws ArithmeticException
268 throws ArithmeticException
274 throws ArithmeticException
  /external/testng/src/test/java/test/sample/
Sample1.java 51 @ExpectedExceptions( {NumberFormatException.class, ArithmeticException.class})
57 @ExpectedExceptions( {NumberFormatException.class, ArithmeticException.class})
59 throw new ArithmeticException();
  /art/test/003-omnibus-opcodes/src/
Throw.java 26 throw new ArithmeticException();
52 } catch (ArithmeticException ae) {
74 } catch (ArithmeticException ae) {
97 if (ex instanceof ArithmeticException) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
FieldElement.java 50 * @exception ArithmeticException if a is the zero of the
53 T divide(T a) throws ArithmeticException;
  /libcore/luni/src/test/java/libcore/java/math/
OldBigIntegerDivideTest.java 41 fail("ArithmeticException has not been caught");
42 } catch (ArithmeticException e) {
OldBigDecimalScaleOperationsTest.java 39 fail("ArithmeticException is not thrown");
40 } catch (ArithmeticException expected) {
44 // Throws OutOfMemoryError instead of ArithmeticException!
49 fail("ArithmeticException is not thrown");
50 } catch (ArithmeticException expected) {
67 fail("ArithmeticException is not thrown");
68 } catch (ArithmeticException expected) {
73 fail("ArithmeticException is not thrown");
74 } catch (ArithmeticException expected) {
OldBigDecimalConvertTest.java 36 fail("java.lang.ArithmeticException isn't thrown after calling intValueExact");
37 } catch (java.lang.ArithmeticException ae) {
47 fail("java.lang.ArithmeticException isn't thrown after calling intValueExact");
48 } catch (java.lang.ArithmeticException ae) {
57 fail("java.lang.ArithmeticException isn't thrown after calling intValueExact");
58 } catch (java.lang.ArithmeticException ae) {
68 fail("java.lang.ArithmeticException isn't thrown after calling intValueExact");
69 } catch (java.lang.ArithmeticException ae) {
93 fail("java.lang.ArithmeticException isn't thrown after calling longValueExact");
94 } catch (java.lang.ArithmeticException ae)
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
MathTest.java 50 } catch (ArithmeticException e) {
61 } catch (ArithmeticException e) {
73 } catch (ArithmeticException e) {
84 } catch (ArithmeticException e) {
95 } catch (ArithmeticException e) {
106 } catch (ArithmeticException e) {
139 } catch (ArithmeticException e) {
150 } catch (ArithmeticException e) {
161 } catch (ArithmeticException e) {
172 } catch (ArithmeticException e)
    [all...]
StrictMathTest.java 47 } catch (ArithmeticException e) {
58 } catch (ArithmeticException e) {
70 } catch (ArithmeticException e) {
100 } catch (ArithmeticException e) {
111 } catch (ArithmeticException e) {
122 } catch (ArithmeticException e) {
133 } catch (ArithmeticException e) {
164 } catch (ArithmeticException e) {
179 } catch (ArithmeticException e) {
210 } catch (ArithmeticException e)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
CountingOutputStream.java 91 * NOTE: From v1.3 this method throws an ArithmeticException if the
96 * @throws ArithmeticException if the byte count is too large
101 throw new ArithmeticException("The byte count " + result + " is too large to be converted to an int");
109 * NOTE: From v1.3 this method throws an ArithmeticException if the
114 * @throws ArithmeticException if the byte count is too large
119 throw new ArithmeticException("The byte count " + result + " is too large to be converted to an int");
  /art/test/083-compiler-regressions/src/
ZeroTests.java 37 } catch (ArithmeticException expected) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_exception/
Test_move_exception.java 31 ArithmeticException.class);
  /external/sfntly/cpp/src/sfntly/port/
exception_type.h 72 class ArithmeticException : public Exception {
74 ArithmeticException() throw() : Exception("Arithmetic exception") {}
75 explicit ArithmeticException(const char* message) throw()
77 virtual ~ArithmeticException() throw() {}
  /external/guava/guava/src/com/google/common/math/
MathPreconditions.java 81 throw new ArithmeticException("mode was UNNECESSARY, but rounding was necessary");
87 throw new ArithmeticException("not in range");
93 throw new ArithmeticException("overflow");

Completed in 719 milliseconds

1 2 3 4 5 6 7