HomeSort by relevance Sort by last modified time
    Searched refs:iae (Results 51 - 75 of 293) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
RequiredStrongAuthTimeoutTest.java 83 } catch (IllegalArgumentException iae) {
  /libcore/luni/src/test/java/libcore/java/net/
OldProxyTest.java 34 } catch(IllegalArgumentException iae) {
  /art/test/044-proxy/src/
WrappedThrow.java 37 } catch (IllegalArgumentException iae) {
239 } catch (IllegalAccessException iae) {
240 throw new RuntimeException(iae);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
SAXParserTest.java 333 } catch(java.lang.IllegalArgumentException iae) {
339 } catch(java.lang.IllegalArgumentException iae) {
378 } catch(java.lang.IllegalArgumentException iae) {
388 } catch(java.lang.IllegalArgumentException iae) {
518 } catch(java.lang.IllegalArgumentException iae) {
525 } catch(java.lang.IllegalArgumentException iae) {
567 } catch(java.lang.IllegalArgumentException iae) {
579 } catch(java.lang.IllegalArgumentException iae) {
615 // } catch(java.lang.IllegalArgumentException iae) {
623 // } catch(java.lang.IllegalArgumentException iae) {
    [all...]
DocumentBuilderTest.java 264 } catch (IllegalArgumentException iae) {
324 } catch (IllegalArgumentException iae) {
386 } catch (IllegalArgumentException iae) {
451 } catch (IllegalArgumentException iae) {
506 } catch (IllegalArgumentException iae) {
  /libcore/luni/src/test/java/libcore/java/lang/
OldSystemTest.java 209 } catch(IllegalArgumentException iae) {
225 } catch(IllegalArgumentException iae) {
253 } catch(IllegalArgumentException iae) {
OldRuntimeTest.java 66 } catch(IllegalArgumentException iae) {
125 } catch(IllegalArgumentException iae) {
218 } catch(IllegalArgumentException iae) {
344 } catch(IllegalArgumentException iae) {
  /packages/apps/Email/provider_src/com/android/email/mail/transport/
MailTransport.java 148 } catch (IllegalArgumentException iae) {
150 LogUtils.d(Logging.LOG_TAG, iae.toString());
152 throw new MessagingException(MessagingException.UNSPECIFIED_EXCEPTION, iae.toString());
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTokenRewriteStream.java 293 catch (IllegalArgumentException iae) {
294 exc = iae;
437 catch (IllegalArgumentException iae) {
438 exc = iae;
510 catch (IllegalArgumentException iae) {
511 exc = iae;
534 catch (IllegalArgumentException iae) {
535 exc = iae;
681 catch (IllegalArgumentException iae) {
682 exc = iae;
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DateFormatTest.java 131 fail("Should throw IAE");
132 } catch (IllegalArgumentException iae) {
176 fail("Should throw IAE");
177 } catch (IllegalArgumentException iae) {
238 fail("Should throw IAE");
239 } catch (IllegalArgumentException iae) {
288 fail("Should throw IAE");
289 } catch (IllegalArgumentException iae) {
376 fail("Should throw IAE");
377 } catch (IllegalArgumentException iae) {
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
MathRuntimeException.java 422 IllegalArgumentException iae = new IllegalArgumentException(rootCause.getLocalizedMessage());
423 iae.initCause(rootCause);
424 return iae;
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 497 IllegalArgumentException iae = new IllegalArgumentException(fnfe); local
498 RuntimeException re = new RuntimeException(iae);
501 assertEquals(asList(ex, re, iae, fnfe), Throwables.getCausalChain(ex));
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DiskLruCacheTest.java 101 } catch (IllegalArgumentException iae) {
102 assertEquals("keys must match regex [a-z0-9_-]{1,120}: \"" + key + "\"", iae.getMessage());
108 } catch (IllegalArgumentException iae) {
109 assertEquals("keys must match regex [a-z0-9_-]{1,120}: \"" + key + "\"", iae.getMessage());
115 } catch (IllegalArgumentException iae) {
116 assertEquals("keys must match regex [a-z0-9_-]{1,120}: \"" + key + "\"", iae.getMessage());
122 } catch (IllegalArgumentException iae) {
123 assertEquals("keys must match regex [a-z0-9_-]{1,120}: \"" + key + "\"", iae.getMessage());
129 } catch (IllegalArgumentException iae) {
130 assertEquals("keys must match regex [a-z0-9_-]{1,120}: \"" + key + "\"", iae.getMessage())
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedStringTest.java 480 } catch(IllegalArgumentException iae) {
487 } catch(IllegalArgumentException iae) {
494 } catch(IllegalArgumentException iae) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
ICUDurationTest.java 335 } catch (IllegalArgumentException iae) {
336 logln("PASS: expected: Caught iae: " + iae.toString() );
342 } catch (IllegalArgumentException iae) {
343 logln("PASS: [#2] expected: Caught iae: " + iae.toString() );
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
ICUDurationTest.java 334 } catch (IllegalArgumentException iae) {
335 logln("PASS: expected: Caught iae: " + iae.toString() );
341 } catch (IllegalArgumentException iae) {
342 logln("PASS: [#2] expected: Caught iae: " + iae.toString() );
  /art/runtime/native/
dalvik_system_DexFile.cc 470 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
472 env->ThrowNew(iae.get(), message.c_str());
478 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
480 env->ThrowNew(iae.get(), message.c_str());
513 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
515 env->ThrowNew(iae.get(), message.c_str());
677 ScopedLocalRef<jclass> iae(env, env->FindClass("java/lang/IllegalArgumentException"));
679 env->ThrowNew(iae.get(), message.c_str());
  /art/test/055-enum-performance/src/
Main.java 22 IllegalArgumentException iae = (IllegalArgumentException) expected.getCause(); local
23 if (!iae.getMessage().equals("class java.lang.String is not an enum type.")) {
  /art/test/074-gc-thrash/src/
Main.java 54 } catch (IllegalAccessException iae) {
55 System.err.println(iae);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.java 79 catch (java.lang.IllegalArgumentException iae) // java 1.1.8
95 catch (java.lang.IllegalArgumentException iae) // java 1.1.8
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ScopeRequestIntegrationTest.java 105 } catch(IllegalArgumentException iae) {
106 assertEquals("Value[Boo!] of type[java.lang.String] is not compatible with key[" + Key.get(SomeObject.class) + "]", iae.getMessage());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBITest.java 54 } catch (IllegalArgumentException iae) {
55 errln("ERROR: failed construction in TestDefaultRuleBasedCharacterIteration()" + iae.toString());
136 } catch (IllegalArgumentException iae) {
137 errln("ERROR: failed construction in TestDefaultRuleBasedWordIteration() -- custom rules" + iae.toString());
190 } catch (IllegalArgumentException iae) {
191 errln("ERROR: failed construction in TestDefaultRuleBasedSentenceIteration()" + iae.toString());
221 } catch (IllegalArgumentException iae) {
222 errln("ERROR: failed construction in TestDefaultRuleBasedLineIteration()" + iae.toString());
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBITest.java 53 } catch (IllegalArgumentException iae) {
54 errln("ERROR: failed construction in TestDefaultRuleBasedCharacterIteration()" + iae.toString());
135 } catch (IllegalArgumentException iae) {
136 errln("ERROR: failed construction in TestDefaultRuleBasedWordIteration() -- custom rules" + iae.toString());
189 } catch (IllegalArgumentException iae) {
190 errln("ERROR: failed construction in TestDefaultRuleBasedSentenceIteration()" + iae.toString());
220 } catch (IllegalArgumentException iae) {
221 errln("ERROR: failed construction in TestDefaultRuleBasedLineIteration()" + iae.toString());
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
MatrixUtils.java     [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncFormatNumb.java 132 catch (Exception iae)
139 //throw new XSLProcessorException(iae);

Completed in 1780 milliseconds

1 23 4 5 6 7 8 91011>>