HomeSort by relevance Sort by last modified time
    Searched refs:NumberFormatException (Results 26 - 50 of 945) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/smali/smali/src/test/java/
ShortLiteralTest.java 54 @Test(expected=NumberFormatException.class)
59 @Test(expected=NumberFormatException.class)
64 @Test(expected=NumberFormatException.class)
88 @Test(expected=NumberFormatException.class)
93 @Test(expected=NumberFormatException.class)
98 @Test(expected=NumberFormatException.class)
103 @Test(expected=NumberFormatException.class)
126 @Test(expected=NumberFormatException.class)
131 @Test(expected=NumberFormatException.class)
136 @Test(expected=NumberFormatException.class
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/
Version.src 149 } catch (NumberFormatException nfe) {
Version.java 149 } catch (NumberFormatException nfe) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
IntegerTest.java 97 } catch (NumberFormatException e) {
101 assertTrue("Failed to throw NumberFormatException for \"Oa\"",
107 } catch (NumberFormatException e) {
116 } catch (NumberFormatException e) {
125 } catch (NumberFormatException e) {
134 } catch (NumberFormatException e) {
143 } catch (NumberFormatException e) {
152 } catch (NumberFormatException e) {
159 } catch (NumberFormatException e) {
166 } catch (NumberFormatException e)
    [all...]
LongTest.java 99 } catch (NumberFormatException e) {
108 } catch (NumberFormatException e) {
117 } catch (NumberFormatException e) {
126 } catch (NumberFormatException e) {
135 } catch (NumberFormatException e) {
144 } catch (NumberFormatException e) {
214 } catch (NumberFormatException e) {
223 } catch (NumberFormatException e) {
260 } catch (NumberFormatException e) {
270 } catch (NumberFormatException e)
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
DoubleTest.java 40 } catch (NumberFormatException expected) {
45 } catch (NumberFormatException expected) {
54 } catch (NumberFormatException expected) {
59 } catch (NumberFormatException expected) {
69 } catch (NumberFormatException expected) {
94 } catch (NumberFormatException expected) {
136 } catch (NumberFormatException expected) {
142 } catch (NumberFormatException expected) {
IntegerTest.java 67 } catch (NumberFormatException expected) {}
72 } catch (NumberFormatException expected) {}
77 } catch (NumberFormatException expected) {}
94 } catch (NumberFormatException expected) {}
99 } catch (NumberFormatException expected) {}
104 } catch (NumberFormatException expected) {}
109 } catch (NumberFormatException expected) {}
121 } catch (NumberFormatException e) {}
126 } catch (NumberFormatException e) {}
131 } catch (NumberFormatException e) {
    [all...]
LongTest.java 69 } catch (NumberFormatException e) {}
74 } catch (NumberFormatException e) {}
79 } catch (NumberFormatException e) {}
96 } catch (NumberFormatException expected) {}
101 } catch (NumberFormatException expected) {}
106 } catch (NumberFormatException expected) {}
123 } catch (NumberFormatException expected) {}
128 } catch (NumberFormatException expected) {}
133 } catch (NumberFormatException expected) {}
138 } catch (NumberFormatException expected) {
    [all...]
FloatTest.java 42 } catch (NumberFormatException expected) {
47 } catch (NumberFormatException expected) {
56 } catch (NumberFormatException expected) {
61 } catch (NumberFormatException expected) {
71 } catch (NumberFormatException expected) {
94 } catch (NumberFormatException expected) {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Version.java 146 } catch (NumberFormatException nfe) {
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
TypeConverter.java 73 * @throws NumberFormatException is the string is badly formatted
75 public static int parseNumber(String value) throws NumberFormatException {
102 } catch (NumberFormatException e) {
138 } catch (NumberFormatException e) {
  /frameworks/base/core/java/android/util/
KeyValueListParser.java 76 } catch (NumberFormatException e) {
94 } catch (NumberFormatException e) {
112 } catch (NumberFormatException e) {
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
UnsignedIntsTest.java 147 } catch (NumberFormatException e) {
153 fail("Expected NumberFormatException");
154 } catch (NumberFormatException expected) {}
157 public void testParseIntWithRadix() throws NumberFormatException {
176 } catch (NumberFormatException expected) {}
186 } catch (NumberFormatException expected) {}
191 } catch (NumberFormatException expected) {}
197 } catch (NumberFormatException expected) {}
215 } catch (NumberFormatException expected) {
221 } catch (NumberFormatException expected)
    [all...]
UnsignedLongsTest.java 141 } catch (NumberFormatException expected) {
160 } catch (NumberFormatException expected) {
166 } catch (NumberFormatException expected) {
172 } catch (NumberFormatException expected) {
178 } catch (NumberFormatException expected) {
199 } catch (NumberFormatException expected) {
206 } catch (NumberFormatException expected) {
215 } catch (NumberFormatException expected) {
221 } catch (NumberFormatException expected) {
228 } catch (NumberFormatException expected)
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedIntsTest.java 164 } catch (NumberFormatException e) {
170 fail("Expected NumberFormatException");
171 } catch (NumberFormatException expected) {}
174 public void testParseIntWithRadix() throws NumberFormatException {
193 } catch (NumberFormatException expected) {}
203 } catch (NumberFormatException expected) {}
208 } catch (NumberFormatException expected) {}
214 } catch (NumberFormatException expected) {}
232 } catch (NumberFormatException expected) {
238 } catch (NumberFormatException expected)
    [all...]
UnsignedLongsTest.java 158 } catch (NumberFormatException expected) {
177 } catch (NumberFormatException expected) {
183 } catch (NumberFormatException expected) {
189 } catch (NumberFormatException expected) {
195 } catch (NumberFormatException expected) {
216 } catch (NumberFormatException expected) {
223 } catch (NumberFormatException expected) {
232 } catch (NumberFormatException expected) {
238 } catch (NumberFormatException expected) {
245 } catch (NumberFormatException expected)
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Integer.java 429 * <p>An exception of type {@code NumberFormatException} is
459 * parseInt("2147483648", 10) throws a NumberFormatException
460 * parseInt("99", 8) throws a NumberFormatException
461 * parseInt("Kona", 10) throws a NumberFormatException
470 * @exception NumberFormatException if the {@code String}
474 throws NumberFormatException
483 throw new NumberFormatException("null");
487 throw new NumberFormatException("radix " + radix +
492 throw new NumberFormatException("radix " + radix +
510 throw NumberFormatException.forInputString(s)
    [all...]
Long.java 360 * <p>An exception of type {@code NumberFormatException} is
389 * parseLong("99", 8) throws a NumberFormatException
390 * parseLong("Hazelnut", 10) throws a NumberFormatException
399 * @throws NumberFormatException if the string does not contain a
403 throws NumberFormatException
406 throw new NumberFormatException("null");
410 throw new NumberFormatException("radix " + radix +
414 throw new NumberFormatException("radix " + radix +
432 throw NumberFormatException.forInputString(s);
435 throw NumberFormatException.forInputString(s)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/array/
PrimitiveArrayTest.java 91 // NumberFormatException
92 tryInvalid(pkg + ".ByteArr [ [ 'a' ] ]", NumberFormatException.class);
93 tryInvalid(pkg + ".ShortArr [ [ 'a' ] ]", NumberFormatException.class);
94 tryInvalid(pkg + ".IntArr [ [ 'a' ] ]", NumberFormatException.class);
95 tryInvalid(pkg + ".LongArr [ [ 'a' ] ]", NumberFormatException.class);
96 tryInvalid(pkg + ".FloatArr [ [ 'a' ] ]", NumberFormatException.class);
97 tryInvalid(pkg + ".DoubleArr [ [ 'a' ] ]", NumberFormatException.class);
115 tryInvalid(pkg + ".ByteArr [ [ 3.14 ] ]", NumberFormatException.class);
116 tryInvalid(pkg + ".ShortArr [ [ 3.14 ] ]", NumberFormatException.class);
117 tryInvalid(pkg + ".IntArr [ [ 3.14 ] ]", NumberFormatException.class)
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
BigIntegerTest.java 59 } catch (NumberFormatException expected) {
64 } catch (NumberFormatException expected) {
69 } catch (NumberFormatException expected) {
74 } catch (NumberFormatException expected) {
79 } catch (NumberFormatException expected) {
84 } catch (NumberFormatException expected) {
  /frameworks/base/services/core/java/com/android/server/firewall/
PortFilter.java 68 } catch (NumberFormatException ex) {
88 } catch (NumberFormatException ex) {
98 } catch (NumberFormatException ex) {
  /libcore/json/src/main/java/org/json/
JSON.java 52 } catch (NumberFormatException ignored) {
66 } catch (NumberFormatException ignored) {
80 } catch (NumberFormatException ignored) {
  /art/test/101-fibonacci/src/
Main.java 53 } catch (NumberFormatException ex) {
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicMaxAgeHandler.java 61 } catch (NumberFormatException e) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HeaderParser.java 62 } catch (NumberFormatException e) {

Completed in 1384 milliseconds

12 3 4 5 6 7 8 91011>>