OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ArithmeticException
(Results
1 - 25
of
95
) sorted by null
1
2
3
4
/libcore/luni/src/main/java/java/lang/
ArithmeticException.java
23
public class
ArithmeticException
extends RuntimeException {
28
* Constructs a new {@code
ArithmeticException
} that includes the current
31
public
ArithmeticException
() {
35
* Constructs a new {@code
ArithmeticException
} with the current stack trace
41
public
ArithmeticException
(String detailMessage) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ArithmeticExceptionTest.java
25
* @tests java.lang.
ArithmeticException
#
ArithmeticException
()
28
ArithmeticException
e = new
ArithmeticException
();
34
* @tests 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) {
/dalvik/tests/014-math3/src/
Main.java
29
catch (
ArithmeticException
ae) {
34
catch (
ArithmeticException
ae) {
43
catch (
ArithmeticException
ae) {
48
catch (
ArithmeticException
ae) {
/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
SpecificIntegerValue.java
96
throws
ArithmeticException
102
throws
ArithmeticException
108
throws
ArithmeticException
114
throws
ArithmeticException
228
throws
ArithmeticException
234
throws
ArithmeticException
240
throws
ArithmeticException
246
throws
ArithmeticException
/dalvik/tests/083-jit-regressions/src/
ZeroTests.java
41
} catch (
ArithmeticException
expected) {
56
} catch (
ArithmeticException
expected) {
/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
) {
/dalvik/tests/003-omnibus-opcodes/src/
Throw.java
26
throw new
ArithmeticException
();
52
} catch (
ArithmeticException
ae) {
74
} catch (
ArithmeticException
ae) {
97
if (ex instanceof
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
...]
/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) {
/external/chromium_org/third_party/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/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
76
throw new
ArithmeticException
("mode was UNNECESSARY, but rounding was necessary");
82
throw new
ArithmeticException
("not in range");
88
throw new
ArithmeticException
("overflow");
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
CountingInputStream.java
112
* NOTE: From v1.3 this method throws an
ArithmeticException
if the
117
* @throws
ArithmeticException
if the byte count is too large
122
throw new
ArithmeticException
("The byte count " + result + " is too large to be converted to an int");
130
* NOTE: From v1.3 this method throws an
ArithmeticException
if the
135
* @throws
ArithmeticException
if the byte count is too large
140
throw new
ArithmeticException
("The byte count " + result + " is too large to be converted to an int");
/external/guava/guava-tests/test/com/google/common/math/
DoubleMathTest.java
82
} catch (
ArithmeticException
e) {
99
} catch (
ArithmeticException
e) {
115
} catch (
ArithmeticException
e) {
125
fail("Expected
ArithmeticException
");
126
} catch (
ArithmeticException
expected) {}
134
fail("Expected
ArithmeticException
");
135
} catch (
ArithmeticException
expected) {}
143
fail("Expected
ArithmeticException
");
144
} catch (
ArithmeticException
expected) {}
147
fail("Expected
ArithmeticException
");
[
all
...]
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_exception/
Test_move_exception.java
33
fail("
ArithmeticException
was not thrown");
34
} catch (
ArithmeticException
ae) {
37
fail("Exception " + ex + " was thrown instead off
ArithmeticException
");
Completed in 909 milliseconds
1
2
3
4