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

<<11121314151617181920>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
CMSAlgorithmProtection.java 58 throw new IllegalArgumentException("Unknown type: " + type);
66 throw new IllegalArgumentException("Sequence wrong size: One of signatureAlgorithm or macAlgorithm must be present");
85 throw new IllegalArgumentException("Unknown tag found: " + tagged.getTagNo());
ContentInfo.java 47 * @exception IllegalArgumentException if the object cannot be converted.
79 throw new IllegalArgumentException("Bad sequence size: " + seq.size());
89 throw new IllegalArgumentException("Bad tag for 'content'");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 34 * @exception IllegalArgumentException if the params argument is
43 throw new IllegalArgumentException("invalid parameter passed to DESede init - " + params.getClass().getName());
50 throw new IllegalArgumentException("key size must be 16 or 24 bytes.");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509CertStoreSelector.java 51 * @exception IllegalArgumentException if selector is null or creation fails.
57 throw new IllegalArgumentException("cannot create from null selector");
76 throw new IllegalArgumentException("error in passed in selector: " + e);
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
DigitallySigned.java 44 throw new IllegalArgumentException("Invalid hash algorithm " + ord, e);
60 throw new IllegalArgumentException("Invalid signature algorithm " + ord, e);
116 } catch (IllegalArgumentException e) {
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
TextFormatParseLocationTest.java 54 fail("Should throw IllegalArgumentException if line is less than 0");
55 } catch (IllegalArgumentException unused) {
61 } catch (IllegalArgumentException unused) {
  /frameworks/base/core/java/android/bluetooth/le/
ScanSettings.java 276 * @throws IllegalArgumentException If the {@code scanMode} is invalid.
280 throw new IllegalArgumentException("invalid scan mode " + scanMode);
290 * @throws IllegalArgumentException If the {@code callbackType} is invalid.
295 throw new IllegalArgumentException("invalid callback type - " + callbackType);
316 * @throws IllegalArgumentException If the {@code scanResultType} is invalid.
323 throw new IllegalArgumentException(
336 * @throws IllegalArgumentException If {@code reportDelayMillis} &lt; 0.
340 throw new IllegalArgumentException("reportDelay must be > 0");
353 * @throws IllegalArgumentException If the {@code matchMode} is invalid.
358 throw new IllegalArgumentException("invalid numOfMatches " + numOfMatches)
    [all...]
ScanFilter.java 460 * @throws IllegalArgumentException If the {@code deviceAddress} is invalid.
464 throw new IllegalArgumentException("invalid device address " + deviceAddress);
484 * @throws IllegalArgumentException If {@code serviceUuid} is {@code null} but {@code
489 throw new IllegalArgumentException("uuid is null while uuidMask is not null!");
499 * @throws IllegalArgumentException If {@code serviceDataUuid} is null.
503 throw new IllegalArgumentException("serviceDataUuid is null");
517 * @throws IllegalArgumentException If {@code serviceDataUuid} is null or {@code
524 throw new IllegalArgumentException("serviceDataUuid is null");
528 throw new IllegalArgumentException(
534 throw new IllegalArgumentException(
    [all...]
  /frameworks/base/core/java/android/content/pm/
VerifierInfo.java 44 * @throws IllegalArgumentException if either argument is null or empty.
48 throw new IllegalArgumentException("packageName must not be null or empty");
50 throw new IllegalArgumentException("publicKey must not be null");
  /frameworks/base/core/java/android/net/
UidRange.java 34 if (startUid < 0) throw new IllegalArgumentException("Invalid start UID.");
35 if (stopUid < 0) throw new IllegalArgumentException("Invalid stop UID.");
36 if (startUid > stopUid) throw new IllegalArgumentException("Invalid UID range.");
  /frameworks/base/core/java/android/service/autofill/
Validators.java 38 * @throws IllegalArgumentException if any element of {@code validators} is an instance of a
51 * @throws IllegalArgumentException if any element of {@code validators} is an instance of a
64 * @throws IllegalArgumentException if {@code validator} is an instance of a class that is not
  /frameworks/base/core/java/org/apache/http/params/
HttpConnectionParams.java 70 throw new IllegalArgumentException("HTTP parameters may not be null");
85 throw new IllegalArgumentException("HTTP parameters may not be null");
99 throw new IllegalArgumentException("HTTP parameters may not be null");
117 throw new IllegalArgumentException("HTTP parameters may not be null");
124 throw new IllegalArgumentException("HTTP parameters may not be null");
132 throw new IllegalArgumentException("HTTP parameters may not be null");
145 throw new IllegalArgumentException("HTTP parameters may not be null");
162 throw new IllegalArgumentException("HTTP parameters may not be null");
175 throw new IllegalArgumentException("HTTP parameters may not be null");
189 throw new IllegalArgumentException("HTTP parameters may not be null")
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
SSLTest.java 66 } catch (IllegalArgumentException expected) {
74 } catch (IllegalArgumentException expected) {
82 } catch (IllegalArgumentException expected) {
  /frameworks/base/core/tests/coretests/src/android/view/
SetTagsTest.java 82 } catch (IllegalArgumentException e) {
93 } catch (IllegalArgumentException e) {
109 } catch (IllegalArgumentException e) {
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pProvDiscEvent.java 57 public WifiP2pProvDiscEvent(String string) throws IllegalArgumentException {
61 throw new IllegalArgumentException("Malformed event " + string);
68 else throw new IllegalArgumentException("Malformed event " + string);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetActiveUniformBlockName.cpp 18 _exceptionType = "java/lang/IllegalArgumentException";
30 _exceptionType = "java/lang/IllegalArgumentException";
36 _exceptionType = "java/lang/IllegalArgumentException";
  /frameworks/support/wear/src/main/java/androidx/wear/internal/widget/drawer/
MultiPagePresenter.java 74 throw new IllegalArgumentException("Received null drawer.");
77 throw new IllegalArgumentException("Received null ui.");
94 throw new IllegalArgumentException("Received null adapter.");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
PatternErrorTest.java 56 // add invalid flags - should get IllegalArgumentException
62 fail("Expected IllegalArgumentException to be thrown");
63 } catch (IllegalArgumentException e) {
  /packages/apps/TV/common/src/com/android/tv/common/util/
SystemPropertiesProxy.java 31 public static boolean getBoolean(String key, boolean def) throws IllegalArgumentException {
48 public static int getInt(String key, int def) throws IllegalArgumentException {
64 public static String getString(String key, String def) throws IllegalArgumentException {
  /packages/apps/Tag/src/com/android/apps/tag/record/
ImageRecord.java 56 throw new IllegalArgumentException("not a valid image file");
64 throw new IllegalArgumentException("not a valid image file");
73 } catch (IllegalArgumentException e) {
  /platform_testing/libraries/app-helpers/core/src/android/platform/helpers/
ILauncherHelper.java 32 * @throws IllegalArgumentException if the direction is UP or DOWN
46 * @throws IllegalArgumentException if all apps cannot be scrolled that direction
69 * @throws IllegalArgumentException if the direction is UP or DOWN
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
FakeTestTest.java 51 public void testIntOrDefault() throws IllegalArgumentException {
57 fail("No IllegalArgumentException thrown for input \"thirteen\"");
58 } catch (IllegalArgumentException e) {
64 public void testDecodeRle() throws IllegalArgumentException {
82 fail(String.format("No IllegalArgumentException thrown for input \"%s\"", error));
83 } catch (IllegalArgumentException e) {
90 public void testDecode() throws IllegalArgumentException {
115 } catch (IllegalArgumentException e) {
117 final Exception cause = new IllegalArgumentException(String.format(
120 throw new IllegalArgumentException(e.getMessage(), cause)
    [all...]
  /libcore/ojluni/src/main/java/java/util/
SplittableRandom.java 222 // IllegalArgumentException messages
417 * @throws IllegalArgumentException if {@code bound} is not positive
421 throw new IllegalArgumentException(BAD_BOUND);
444 * @throws IllegalArgumentException if {@code origin} is greater than
449 throw new IllegalArgumentException(BAD_RANGE);
469 * @throws IllegalArgumentException if {@code bound} is not positive
473 throw new IllegalArgumentException(BAD_BOUND);
496 * @throws IllegalArgumentException if {@code origin} is greater than
501 throw new IllegalArgumentException(BAD_RANGE);
523 * @throws IllegalArgumentException if {@code bound} is not positiv
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 293 * @throws IllegalArgumentException if {@code bound} is not positive
297 throw new IllegalArgumentException(BAD_BOUND);
319 * @throws IllegalArgumentException if {@code origin} is greater than
324 throw new IllegalArgumentException(BAD_RANGE);
344 * @throws IllegalArgumentException if {@code bound} is not positive
348 throw new IllegalArgumentException(BAD_BOUND);
370 * @throws IllegalArgumentException if {@code origin} is greater than
375 throw new IllegalArgumentException(BAD_RANGE);
397 * @throws IllegalArgumentException if {@code bound} is not positive
401 throw new IllegalArgumentException(BAD_BOUND)
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertStore1Test.java 225 * Assertion: throws IllegalArgumentException when provider is null or empty
238 fail("IllegalArgumentException must be thrown");
239 } catch (IllegalArgumentException e) {
243 fail("IllegalArgumentException must be thrown");
244 } catch (IllegalArgumentException e) {
316 * Assertion: throws IllegalArgumentException when provider is null
327 fail("IllegalArgumentException must be thrown");
328 } catch (IllegalArgumentException e) {
413 } catch (IllegalArgumentException e) {
414 fail("Unexpected IllegalArgumentException " + e.getMessage())
    [all...]

Completed in 2021 milliseconds

<<11121314151617181920>>