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

1 2 34 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/sun/net/
InetAddressCachePolicy.java 102 } catch (NumberFormatException e) {
138 } catch (NumberFormatException e) {
NetProperties.java 123 } catch (NumberFormatException ex) {
152 } catch (NumberFormatException ex) {
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapUtility.java 77 } catch (NumberFormatException e) {
120 } catch (NumberFormatException e) {
  /packages/services/Telephony/src/com/android/phone/common/mail/store/imap/
ImapUtility.java 76 } catch (NumberFormatException e) {
119 } catch (NumberFormatException e) {
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedBytesTest.java 135 } catch (NumberFormatException expected) {
159 } catch (NumberFormatException expected) {
163 public void testParseUnsignedByteWithRadix() throws NumberFormatException {
182 } catch (NumberFormatException nfe) {
189 } catch (NumberFormatException nfe) {
197 } catch (NumberFormatException nfe) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalConstructorsTest.java 142 fail("NumberFormatException has not been thrown");
143 } catch (NumberFormatException e) {
163 fail("NumberFormatException has not been thrown");
164 } catch (NumberFormatException e) {
187 fail("NumberFormatException has not been thrown");
188 } catch (NumberFormatException e) {
204 fail("NumberFormatException has not been thrown");
205 } catch (NumberFormatException e) {
221 fail("NumberFormatException has not been thrown");
222 } catch (NumberFormatException e)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
TestOptions.java 386 } catch (NumberFormatException e) {
403 } catch (NumberFormatException e) {
437 } catch (NumberFormatException e) {
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TimeTest.java 240 fail("should throw NumberFormatException");
241 } catch (NumberFormatException e) {
289 fail("should throw NumberFormatException");
290 } catch (NumberFormatException e) {
296 fail("should throw NumberFormatException");
297 } catch (NumberFormatException e) {
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapMessage.java 85 } catch (NumberFormatException e) {
117 } catch (NumberFormatException e) {
129 } catch (NumberFormatException e) {
  /libcore/ojluni/src/main/java/java/lang/
Double.java 406 * a <i>FloatValue</i>, then a {@code NumberFormatException}
452 * a {@code NumberFormatException} be thrown, the regular
497 * Double.valueOf(myString); // Will not throw NumberFormatException
507 * @throws NumberFormatException if the string does not contain a
510 public static Double valueOf(String s) throws NumberFormatException {
541 * @throws NumberFormatException if the string does not contain
546 public static double parseDouble(String s) throws NumberFormatException {
612 * @throws NumberFormatException if the string does not contain a
616 public Double(String s) throws NumberFormatException {
    [all...]
Float.java 367 * a <i>FloatValue</i>, then a {@code NumberFormatException}
413 * a {@code NumberFormatException} be thrown, the documentation
420 * @throws NumberFormatException if the string does not contain a
423 public static Float valueOf(String s) throws NumberFormatException {
453 * @throws NumberFormatException if the string does not contain a
458 public static float parseFloat(String s) throws NumberFormatException {
534 * @throws NumberFormatException if the string does not contain a
538 public Float(String s) throws NumberFormatException {
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentValues.java 141 } catch (NumberFormatException e2) {
161 } catch (NumberFormatException e2) {
181 } catch (NumberFormatException e2) {
201 } catch (NumberFormatException e2) {
221 } catch (NumberFormatException e2) {
241 } catch (NumberFormatException e2) {
  /frameworks/base/core/java/android/content/
ContentValues.java 269 } catch (NumberFormatException e2) {
294 } catch (NumberFormatException e2) {
319 } catch (NumberFormatException e2) {
344 } catch (NumberFormatException e2) {
369 } catch (NumberFormatException e2) {
394 } catch (NumberFormatException e2) {
  /frameworks/base/media/java/android/media/
Utils.java 203 } catch (NumberFormatException e) {
219 } catch (NumberFormatException e) {
239 } catch (NumberFormatException e) {
260 } catch (NumberFormatException e) {
281 } catch (NumberFormatException e) {
302 } catch (NumberFormatException e) {
  /cts/tools/dasm/src/dasm/
Utils.java 48 throws NumberFormatException {
71 throws NumberFormatException {
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
AlloCommandHandlerTest.java 90 fail("Expected NumberFormatException");
92 catch (NumberFormatException expected) {
103 fail("Expected NumberFormatException");
105 catch (NumberFormatException expected) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
SubscriptionStateParser.java 103 } catch (NumberFormatException ex) {
117 } catch (NumberFormatException ex) {
WarningParser.java 92 } catch (NumberFormatException ex) {
134 } catch (NumberFormatException ex) {
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 789 } catch (NumberFormatException e) {
803 } catch (NumberFormatException e) {
817 } catch (NumberFormatException e) {
844 } catch (NumberFormatException e) {
882 } catch (NumberFormatException e) {
920 } catch (NumberFormatException e) {
    [all...]
  /frameworks/base/services/usage/java/com/android/server/usage/
UsageStatsXml.java 53 } catch (NumberFormatException e) {
106 } catch (NumberFormatException e) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ConvertToDpFix.java 76 } catch (NumberFormatException nufe) {
107 } catch (NumberFormatException x) {
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 446 * @throws NumberFormatException if the next literal value cannot be parsed
458 } catch (NumberFormatException ignored) {
459 double asDouble = Double.parseDouble(value); // don't catch this NumberFormatException
462 throw new NumberFormatException(value);
477 * @throws NumberFormatException if the next literal value cannot be parsed
489 } catch (NumberFormatException ignored) {
490 double asDouble = Double.parseDouble(value); // don't catch this NumberFormatException
493 throw new NumberFormatException(value);
804 * @throws NumberFormatException if any unicode escape sequences are
937 * @throws NumberFormatException if any unicode escape sequences ar
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
AbstractXmlPullParser.java 69 } catch (NumberFormatException e) {
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965VersionAttributeHandler.java 71 } catch (NumberFormatException e) {
  /external/apache-http/src/org/apache/http/impl/entity/
StrictContentLengthStrategy.java 217 } catch (NumberFormatException e) {

Completed in 1894 milliseconds

1 2 34 5 6 7 8 91011>>