Searched refs:ArithmeticException (Results 1 - 25 of 33) sorted by relevance

12

/external/proguard/src/proguard/evaluation/value/
H A DUnknownLongValue.java76 throws ArithmeticException
82 throws ArithmeticException
88 throws ArithmeticException
94 throws ArithmeticException
100 throws ArithmeticException
H A DUnknownIntegerValue.java92 throws ArithmeticException
98 throws ArithmeticException
104 throws ArithmeticException
110 throws ArithmeticException
116 throws ArithmeticException
H A DParticularLongValue.java101 throws ArithmeticException
107 throws ArithmeticException
113 throws ArithmeticException
119 throws ArithmeticException
189 throws ArithmeticException
195 throws ArithmeticException
201 throws ArithmeticException
207 throws ArithmeticException
H A DSpecificLongValue.java81 throws ArithmeticException
87 throws ArithmeticException
93 throws ArithmeticException
99 throws ArithmeticException
173 throws ArithmeticException
179 throws ArithmeticException
185 throws ArithmeticException
191 throws ArithmeticException
H A DParticularIntegerValue.java128 throws ArithmeticException
134 throws ArithmeticException
140 throws ArithmeticException
146 throws ArithmeticException
256 throws ArithmeticException
262 throws ArithmeticException
268 throws ArithmeticException
274 throws ArithmeticException
H A DSpecificIntegerValue.java96 throws ArithmeticException
102 throws ArithmeticException
108 throws ArithmeticException
114 throws ArithmeticException
228 throws ArithmeticException
234 throws ArithmeticException
240 throws ArithmeticException
246 throws ArithmeticException
H A DLongValue.java104 throws ArithmeticException
113 throws ArithmeticException
122 throws ArithmeticException
132 throws ArithmeticException
142 throws ArithmeticException
H A DIntegerValue.java106 throws ArithmeticException;
112 throws ArithmeticException;
118 throws ArithmeticException;
125 throws ArithmeticException;
132 throws ArithmeticException;
/external/guava/guava/src/com/google/common/math/
H A DMathPreconditions.java76 throw new ArithmeticException("mode was UNNECESSARY, but rounding was necessary");
82 throw new ArithmeticException("not in range");
88 throw new ArithmeticException("overflow");
H A DIntMath.java71 * @throws ArithmeticException if {@code mode} is {@link RoundingMode#UNNECESSARY} and {@code x}
112 * @throws ArithmeticException if {@code mode} is {@link RoundingMode#UNNECESSARY} and {@code x}
162 * <p>Compare {@link #checkedPow}, which throws an {@link ArithmeticException} upon overflow.
202 * @throws ArithmeticException if {@code mode} is {@link RoundingMode#UNNECESSARY} and
244 * @throws ArithmeticException if {@code q == 0}, or if {@code mode == UNNECESSARY} and {@code a}
252 throw new ArithmeticException("/ by zero"); // for GWT
317 * @throws ArithmeticException if {@code m <= 0}
321 throw new ArithmeticException("Modulus " + m + " must be > 0");
353 * @throws ArithmeticException if {@code a + b} overflows in signed {@code int} arithmetic
364 * @throws ArithmeticException i
[all...]
H A DDoubleMath.java52 throw new ArithmeticException("input is infinite or NaN");
101 * @throws ArithmeticException if
124 * @throws ArithmeticException if
151 * @throws ArithmeticException if
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Dexception_type.h72 class ArithmeticException : public Exception { class in namespace:sfntly
74 ArithmeticException() throw() : Exception("Arithmetic exception") {} function in class:sfntly::ArithmeticException
75 explicit ArithmeticException(const char* message) throw() function in class:sfntly::ArithmeticException
77 virtual ~ArithmeticException() throw() {}
/external/sfntly/cpp/src/sfntly/port/
H A Dexception_type.h72 class ArithmeticException : public Exception { class in namespace:sfntly
74 ArithmeticException() throw() : Exception("Arithmetic exception") {} function in class:sfntly::ArithmeticException
75 explicit ArithmeticException(const char* message) throw() function in class:sfntly::ArithmeticException
77 virtual ~ArithmeticException() throw() {}
/external/guava/guava-tests/test/com/google/common/math/
H A DDoubleMathTest.java82 } 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...]
H A DLongMathTest.java58 fail("Expected ArithmeticException");
59 } catch (ArithmeticException expected) {}
84 fail("Expected ArithmeticException");
85 } catch (ArithmeticException expect) {}
109 fail("Expected ArithmeticException");
110 } catch (ArithmeticException expected) {}
117 fail("Expected ArithmeticException");
118 } catch (ArithmeticException expected) {}
121 // Throws an ArithmeticException if "the simple implementation" of binomial coefficients overflows
177 } catch (ArithmeticException
[all...]
H A DIntMathTest.java138 } catch (ArithmeticException e) {
186 } catch (ArithmeticException e) {
243 } catch (ArithmeticException e) {
280 } catch (ArithmeticException e) {
302 fail("Expected ArithmeticException");
303 } catch (ArithmeticException expected) {}
321 fail("Expected ArithmeticException");
322 } catch (ArithmeticException expected) {}
331 fail("Expected ArithmeticException");
332 } catch (ArithmeticException expecte
[all...]
H A DBigIntegerMathTest.java115 } catch (ArithmeticException e) {
202 } catch (ArithmeticException e) {
296 } catch (ArithmeticException e) {
363 } catch (ArithmeticException e) {
383 fail("Expected ArithmeticException");
384 } catch (ArithmeticException expected) {}
/external/guava/guava-tests/test/com/google/common/primitives/
H A DUnsignedIntsTest.java67 } catch (ArithmeticException e) {
80 } catch (ArithmeticException e) {
H A DUnsignedIntegerTest.java163 fail("Expected ArithmeticException");
164 } catch (ArithmeticException expected) {}
187 fail("Expected ArithmeticException");
188 } catch (ArithmeticException expected) {}
H A DUnsignedLongTest.java174 fail("Expected ArithmeticException");
175 } catch (ArithmeticException expected) {}
200 fail("Expected ArithmeticException");
201 } catch (ArithmeticException expected) {}
/external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
H A DIntMath.java93 * @throws ArithmeticException if {@code m <= 0}
97 throw new ArithmeticException("Modulus " + m + " must be > 0");
129 * @throws ArithmeticException if {@code a + b} overflows in signed {@code int} arithmetic
140 * @throws ArithmeticException if {@code a - b} overflows in signed {@code int} arithmetic
151 * @throws ArithmeticException if {@code a * b} overflows in signed {@code int} arithmetic
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAbstractListeningExecutorServiceTest.java233 throw new ArithmeticException("/ by zero");
240 assertTrue(success.getCause() instanceof ArithmeticException);
281 throw new ArithmeticException("/ by zero");
463 throw new ArithmeticException("/ by zero");
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/DataEntryWriterFactory.class DataEntryWriterFactory.java package proguard public ...
/external/proguard/src/proguard/evaluation/
H A DProcessor.java270 catch (ArithmeticException ex)
285 catch (ArithmeticException ex)
308 catch (ArithmeticException ex)
323 catch (ArithmeticException ex)
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.cc118 throw ArithmeticException("Long value too large to fit into an integer.");

Completed in 252 milliseconds

12