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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/lang/
NumberFormatException.java 24 public class NumberFormatException extends java.lang.IllegalArgumentException {
29 * Constructs a new {@code NumberFormatException} that includes the current
32 public NumberFormatException() {
37 * Constructs a new {@code NumberFormatException} with the current stack
43 public NumberFormatException(String detailMessage) {
Byte.java 76 * @throws NumberFormatException
80 public Byte(String string) throws NumberFormatException {
120 * @throws NumberFormatException
123 public static Byte decode(String string) throws NumberFormatException {
129 throw new NumberFormatException();
180 * @throws NumberFormatException
184 public static byte parseByte(String string) throws NumberFormatException {
190 throw new NumberFormatException();
203 * @throws NumberFormatException
210 throws NumberFormatException {
    [all...]
Short.java 68 * @throws NumberFormatException
72 public Short(String string) throws NumberFormatException {
120 * @throws NumberFormatException
123 public static Short decode(String string) throws NumberFormatException {
129 throw new NumberFormatException();
180 * @throws NumberFormatException
184 public static short parseShort(String string) throws NumberFormatException {
198 * @throws NumberFormatException
205 throws NumberFormatException {
211 throw new NumberFormatException();
    [all...]
Integer.java 100 * @throws NumberFormatException
104 public Integer(String string) throws NumberFormatException {
142 * @throws NumberFormatException
145 public static Integer decode(String string) throws NumberFormatException {
149 throw new NumberFormatException("unable to parse '"+string+"' as integer");
157 throw new NumberFormatException("unable to parse '"+string+"' as integer");
171 throw new NumberFormatException("unable to parse '"+string+"' as integer");
181 throw new NumberFormatException("unable to parse '"+string+"' as integer");
237 } catch (NumberFormatException ex) {
266 } catch (NumberFormatException ex)
    [all...]
Long.java 87 * @throws NumberFormatException
91 public Long(String string) throws NumberFormatException {
128 * @throws NumberFormatException
131 public static Long decode(String string) throws NumberFormatException {
134 throw new NumberFormatException();
140 throw new NumberFormatException(string);
152 throw new NumberFormatException(string);
161 throw new NumberFormatException(string);
216 } catch (NumberFormatException ex) {
245 } catch (NumberFormatException ex)
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
BigIntegerTest.java 48 } catch (NumberFormatException expected) {
53 } catch (NumberFormatException expected) {
58 } catch (NumberFormatException expected) {
63 } catch (NumberFormatException expected) {
68 } catch (NumberFormatException expected) {
73 } catch (NumberFormatException expected) {
OldBigIntegerConstructorsTest.java 67 fail("NumberFormatException has not been caught");
68 } catch (NumberFormatException e) {
78 fail("NumberFormatException has not been caught");
79 } catch (NumberFormatException e) {
89 fail("NumberFormatException has not been caught");
90 } catch (NumberFormatException e) {
100 fail("NumberFormatException has not been caught");
101 } catch (NumberFormatException e) {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
NumberFormatExceptionTest.java 25 * @tests java.lang.NumberFormatException#NumberFormatException()
28 NumberFormatException e = new NumberFormatException();
35 * @tests java.lang.NumberFormatException#NumberFormatException(java.lang.String)
38 NumberFormatException e = new NumberFormatException("fixture");
ShortTest.java 85 } catch (NumberFormatException e) {
89 assertTrue("Did not throw NumberFormatException decoding 123s",
95 } catch (NumberFormatException e) {
104 } catch (NumberFormatException e) {
113 } catch (NumberFormatException e) {
122 } catch (NumberFormatException e) {
148 } catch (NumberFormatException e) {
157 } catch (NumberFormatException e) {
200 } catch (NumberFormatException e) {
212 } catch (NumberFormatException e)
    [all...]
ByteTest.java 59 fail("Expected NumberFormatException with hex string.");
60 } catch (NumberFormatException e) {
65 fail("Expected NumberFormatException with floating point string.");
66 } catch (NumberFormatException e) {
71 fail("Expected NumberFormatException with empty string.");
72 } catch (NumberFormatException e) {
77 fail("Expected NumberFormatException with null string.");
78 } catch (NumberFormatException e) {
146 fail("Expected NumberFormatException with hex string.");
147 } catch (NumberFormatException e)
    [all...]
IntegerTest.java 121 } catch (NumberFormatException e) {
125 assertTrue("Failed to throw NumberFormatException for \"Oa\"",
131 } catch (NumberFormatException e) {
140 } catch (NumberFormatException e) {
149 } catch (NumberFormatException e) {
158 } catch (NumberFormatException e) {
167 } catch (NumberFormatException e) {
176 } catch (NumberFormatException e) {
183 } catch (NumberFormatException e) {
190 } catch (NumberFormatException e)
    [all...]
LongTest.java 123 } catch (NumberFormatException e) {
132 } catch (NumberFormatException e) {
141 } catch (NumberFormatException e) {
150 } catch (NumberFormatException e) {
159 } catch (NumberFormatException e) {
168 } catch (NumberFormatException e) {
271 } catch (NumberFormatException e) {
280 } catch (NumberFormatException e) {
323 } catch (NumberFormatException e) {
333 } catch (NumberFormatException e)
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
ParseIntTest.java 40 } catch (NumberFormatException e) {
47 } catch (NumberFormatException e) {
55 } catch (NumberFormatException e) {
62 } catch (NumberFormatException e) {
69 } catch (NumberFormatException e) {
76 } catch (NumberFormatException e) {
83 } catch (NumberFormatException e) {
90 } catch (NumberFormatException e) {
97 } catch (NumberFormatException e) {
104 } catch (NumberFormatException e)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/bluetooth/
BluetoothTestRunner.java 60 } catch (NumberFormatException e) {
69 } catch (NumberFormatException e) {
78 } catch (NumberFormatException e) {
87 } catch (NumberFormatException e) {
96 } catch (NumberFormatException e) {
105 } catch (NumberFormatException e) {
134 } catch (NumberFormatException e) {
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
FloatingPointParser.java 54 * @exception NumberFormatException
72 * @exception NumberFormatException
91 * @exception NumberFormatException
102 throw new NumberFormatException(s);
108 throw new NumberFormatException(s);
114 throw new NumberFormatException(s);
119 throw new NumberFormatException(s);
126 } catch (NumberFormatException ex) {
130 throw new NumberFormatException(s);
137 throw new NumberFormatException(s)
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/
Version.src 149 } catch (NumberFormatException nfe) {
Version.java 149 } catch (NumberFormatException nfe) {
  /libcore/luni/src/main/java/org/apache/xml/serializer/
Version.java 146 } catch (NumberFormatException nfe) {
Version.src 146 } catch (NumberFormatException nfe) {
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilRegionElementImpl.java 80 } catch (NumberFormatException _) {
90 } catch (NumberFormatException _) {
101 } catch (NumberFormatException _) {
111 } catch (NumberFormatException _) {
122 } catch (NumberFormatException _) {
164 } catch (NumberFormatException _) {
172 } catch (NumberFormatException _) {
179 } catch (NumberFormatException _) {
197 } catch (NumberFormatException _) {
205 } catch (NumberFormatException _)
    [all...]
  /libcore/json/src/main/java/org/json/
JSON.java 48 } catch (NumberFormatException e) {
62 } catch (NumberFormatException e) {
76 } catch (NumberFormatException e) {
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicMaxAgeHandler.java 55 } catch (NumberFormatException e) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TimeStampParser.java 93 } catch (NumberFormatException ex) {
118 } catch (NumberFormatException ex) {
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 572 } catch (NumberFormatException e) {
586 } catch (NumberFormatException e) {
600 } catch (NumberFormatException e) {
614 } catch (NumberFormatException e) {
639 } catch (NumberFormatException e) {
664 } catch (NumberFormatException e) {
759 * {@code NumberFormatException} when trying to parse an integer.
762 final NumberFormatException e) {
768 * {@code NumberFormatException} when trying to parse a float or double.
770 private ParseException floatParseException(final NumberFormatException e)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/util/
IPAddress.java 64 catch (NumberFormatException ex)
107 catch (NumberFormatException e)
162 catch (NumberFormatException ex)

Completed in 1339 milliseconds

1 2 3 4 5 6 7 8 91011>>