HomeSort by relevance Sort by last modified time
    Searched full:illegalargumentexception (Results 901 - 925 of 10592) sorted by null

<<31323334353637383940>>

  /frameworks/support/navigation/common/ktx/src/main/java/androidx/navigation/
NavGraph.kt 26 * @throws IllegalArgumentException if no destination is found with that id.
29 findNode(id) ?: throw IllegalArgumentException("No destination for $id was found in $this")
  /frameworks/support/navigation/safe-args-generator/src/tests/test-data/expected/
MainFragmentArgs.java 4 import java.lang.IllegalArgumentException;
26 throw new IllegalArgumentException("Required argument \"main\" is missing and does not have an android:defaultValue");
  /frameworks/support/wear/src/main/java/androidx/wear/widget/drawer/
FlingWatcherFactory.java 61 throw new IllegalArgumentException("FlingListener was null");
89 throw new IllegalArgumentException("View was null");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PipedInputStreamTest.java 395 fail("Should throw IllegalArgumentException"); //$NON-NLS-1$
396 } catch (IllegalArgumentException e) {
402 fail("Should throw IllegalArgumentException"); //$NON-NLS-1$
403 } catch (IllegalArgumentException e) {
420 fail("Should throw IllegalArgumentException"); //$NON-NLS-1$
421 } catch (IllegalArgumentException e) {
427 fail("Should throw IllegalArgumentException"); //$NON-NLS-1$
428 } catch (IllegalArgumentException e) {
PipedReaderTest.java 86 fail("Should throw IllegalArgumentException"); //$NON-NLS-1$
87 } catch (IllegalArgumentException e) {
93 fail("Should throw IllegalArgumentException"); //$NON-NLS-1$
94 } catch (IllegalArgumentException e) {
107 fail("Should throw IllegalArgumentException"); //$NON-NLS-1$
108 } catch (IllegalArgumentException e) {
114 fail("Should throw IllegalArgumentException"); //$NON-NLS-1$
115 } catch (IllegalArgumentException e) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DatagramPacketTest.java 47 fail("Should throw IllegalArgumentException");
48 } catch (IllegalArgumentException e) {
214 } catch (IllegalArgumentException ex) {
222 } catch (IllegalArgumentException ex) {
255 } catch (IllegalArgumentException ex) {
263 } catch (IllegalArgumentException ex) {
314 } catch (IllegalArgumentException ex) {
323 } catch (IllegalArgumentException ex) {
InetAddressTest.java 297 fail("Should throw IllegalArgumentException");
298 } catch (IllegalArgumentException e) {
313 fail("Should throw IllegalArgumentException");
314 } catch (IllegalArgumentException e) {
319 fail("Should throw IllegalArgumentException");
320 } catch (IllegalArgumentException e) {
325 fail("Should throw IllegalArgumentException");
326 } catch (IllegalArgumentException e) {
URISyntaxExceptionTest.java 45 fail("Expected IllegalArgumentException");
46 } catch (IllegalArgumentException iae) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
AbstractSequentialListTest.java 110 if (o.equals(wrongElement)) throw new IllegalArgumentException();
194 fail("IllegalArgumentException expected");
195 } catch (IllegalArgumentException e) {
265 fail("IllegalArgumentException expected");
266 } catch (IllegalArgumentException ee) {
535 if (o.equals(illegalStr)) throw new IllegalArgumentException();
571 fail("IllegalArgumentException expected");
572 } catch (IllegalArgumentException ee) {
LinkedHashSetTest.java 60 fail("IllegalArgumentException expected");
61 } catch (IllegalArgumentException e) {
76 fail("IllegalArgumentException expected");
77 } catch (IllegalArgumentException e) {
83 fail("IllegalArgumentException expected");
84 } catch (IllegalArgumentException e) {
90 fail("IllegalArgumentException expected");
91 } catch (IllegalArgumentException e) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/
Attributes2ImplTest.java 269 fail("IllegalArgumentException expected");
270 } catch (IllegalArgumentException e) {
283 fail("IllegalArgumentException expected");
284 } catch (IllegalArgumentException e) {
318 fail("IllegalArgumentException expected");
319 } catch (IllegalArgumentException e) {
332 fail("IllegalArgumentException expected");
333 } catch (IllegalArgumentException e) {
  /libcore/luni/src/main/java/javax/xml/transform/sax/
TransformerHandler.java 43 * @throws IllegalArgumentException if result is invalid for some reason.
45 public void setResult(Result result) throws IllegalArgumentException;
  /libcore/luni/src/main/java/libcore/net/
UriCodec.java 137 * @throws IllegalArgumentException if the encoder is unable to encode a sequence of bytes.
217 throw new IllegalArgumentException(
225 throw new IllegalArgumentException(
232 throw new IllegalArgumentException(
268 * - if {@code throwOnFailure == true}, an {@link IllegalArgumentException} is thrown for
315 throw new IllegalArgumentException(e);
327 throw new IllegalArgumentException(
361 throw new IllegalArgumentException(e);
  /libcore/luni/src/test/java/libcore/java/net/
OldProxyTest.java 33 fail("IllegalArgumentException was thrown.");
34 } catch(IllegalArgumentException iae) {
  /libcore/luni/src/test/java/libcore/java/text/
OldMessageFormatFieldTest.java 68 } catch (IllegalArgumentException e) {
69 fail("Unexpected IllegalArgumentException: " + e);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
SecretKeyFactoryTest.java 218 * throws IllegalArgumentException when provider is null or empty;
231 fail("IllegalArgumentException was not thrown as expected (algorithm: "
233 } catch (IllegalArgumentException e) {
237 fail("IllegalArgumentException was not thrown as expected (algorithm: "
239 } catch (IllegalArgumentException e) {
305 * Assertion: throws IllegalArgumentException when provider is null
316 fail("IllegalArgumentException was not thrown as expected (provider is null, algorithm: "
318 } catch (IllegalArgumentException e) {
  /libcore/luni/src/test/java/tests/security/cert/
CertPathBuilder1Test.java 145 * Assertion: throws IllegalArgumentException when provider is null or empty
159 fail("IllegalArgumentException must be thrown thrown");
160 } catch (IllegalArgumentException e) {
164 fail("IllegalArgumentException must be thrown thrown");
165 } catch (IllegalArgumentException e) {
237 * Assertion: throws IllegalArgumentException when provider is null
249 fail("IllegalArgumentException must be thrown");
250 } catch (IllegalArgumentException e1) {
CertPathValidator1Test.java 161 * Assertion: throws IllegalArgumentException when provider is null or empty
175 fail("IllegalArgumentException must be thrown thrown");
176 } catch (IllegalArgumentException e) {
180 fail("IllegalArgumentException must be thrown thrown");
181 } catch (IllegalArgumentException e) {
256 * Assertion: throws IllegalArgumentException when provider is null
268 fail("IllegalArgumentException must be thrown");
269 } catch (IllegalArgumentException e1) {
  /libcore/ojluni/src/main/java/java/net/
SocketSecrets.java 44 throw new IllegalArgumentException();
57 throw new IllegalArgumentException();
  /libcore/ojluni/src/main/java/java/security/spec/
ECPublicKeySpec.java 52 * @exception IllegalArgumentException if {@code w}
63 throw new IllegalArgumentException("w is ECPoint.POINT_INFINITY");
  /libcore/ojluni/src/main/java/java/util/
EventObject.java 52 * @exception IllegalArgumentException if source is null.
56 throw new IllegalArgumentException("null source");
  /libcore/ojluni/src/main/java/javax/net/ssl/
HttpsURLConnection.java 225 * @throws IllegalArgumentException if the <code>HostnameVerifier</code>
234 throw new IllegalArgumentException(
265 * @throws IllegalArgumentException if the <code>HostnameVerifier</code>
272 throw new IllegalArgumentException(
310 * @throws IllegalArgumentException if the SSLSocketFactory
319 throw new IllegalArgumentException(
359 * @throws IllegalArgumentException if the <code>SSLSocketFactory</code>
365 throw new IllegalArgumentException(
KeyStoreBuilderParameters.java 64 * @exception IllegalArgumentException if parameters is an empty list
68 throw new IllegalArgumentException();
  /libcore/ojluni/src/main/java/sun/nio/fs/
FileOwnerAttributeViewImpl.java 67 throw new IllegalArgumentException("'" + name() + ":" +
79 throw new IllegalArgumentException("'" + name() + ":" +
  /libcore/support/src/test/java/libcore/java/security/
CpuFeatures.java 53 | IllegalAccessException | IllegalArgumentException ignored) {
55 throw new IllegalArgumentException(e);

Completed in 2207 milliseconds

<<31323334353637383940>>