HomeSort by relevance Sort by last modified time
    Searched full:illegalargumentexception (Results 251 - 275 of 3889) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.java 190 fail("IllegalArgumentException expected");
191 } catch (IllegalArgumentException e) {
229 fail("IllegalArgumentException expected");
230 } catch (IllegalArgumentException e) {
260 fail("IllegalArgumentException expected");
261 } catch (IllegalArgumentException e) {
267 fail("IllegalArgumentException expected");
268 } catch (IllegalArgumentException e) {
274 fail("IllegalArgumentException expected");
275 } catch (IllegalArgumentException e)
    [all...]
  /dalvik/tests/045-reflect-array/src/
Main.java 87 } catch (IllegalArgumentException iae) {}
91 } catch (IllegalArgumentException iae) {}
103 } catch (IllegalArgumentException iae) {
109 } catch (IllegalArgumentException iae) {}
117 } catch (IllegalArgumentException iae) {
143 } catch (IllegalArgumentException iae) {}
190 } catch (IllegalArgumentException iae) {}
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
EnumTest.java 129 } catch (IllegalArgumentException e){
137 } catch (IllegalArgumentException e) {
150 fail("Expected IllegalArgumentException");
151 } catch (IllegalArgumentException e) {
159 } catch (IllegalArgumentException e) {
167 } catch (IllegalArgumentException e) {
175 } catch (IllegalArgumentException e) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
IDNTest.java 40 fail("should throw IllegalArgumentException");
41 } catch (IllegalArgumentException e) {
47 fail("should throw IllegalArgumentException");
48 } catch (IllegalArgumentException e) {
86 } catch (IllegalArgumentException e) {
93 } catch (IllegalArgumentException e) {
100 } catch (IllegalArgumentException e) {
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
TrustAnchor_ImplTest.java 154 * Assertion: <code>IllegalArgumentException</code> if nameConstraints
157 * Expected: IllegalArgumentException
177 fail("IllegalArgumentException has not been thrown");
178 } catch (IllegalArgumentException ok) {
190 fail("IllegalArgumentException has not been thrown");
191 } catch (IllegalArgumentException ok) {
203 fail("IllegalArgumentException has not been thrown");
204 } catch (IllegalArgumentException ok) {
216 fail("IllegalArgumentException has not been thrown");
217 } catch (IllegalArgumentException ok)
    [all...]
  /external/apache-http/src/org/apache/http/conn/scheme/
PlainSocketFactory.java 90 throw new IllegalArgumentException("Target host may not be null.");
93 throw new IllegalArgumentException("Parameters may not be null.");
137 * @throws IllegalArgumentException if the argument is invalid
140 throws IllegalArgumentException {
143 throw new IllegalArgumentException("Socket may not be null.");
149 throw new IllegalArgumentException
155 throw new IllegalArgumentException("Socket is closed.");
  /external/apache-http/src/org/apache/http/impl/cookie/
BestMatchSpec.java 99 throw new IllegalArgumentException("Header may not be null");
102 throw new IllegalArgumentException("Cookie origin may not be null");
135 throw new IllegalArgumentException("Cookie may not be null");
138 throw new IllegalArgumentException("Cookie origin may not be null");
149 throw new IllegalArgumentException("Cookie may not be null");
152 throw new IllegalArgumentException("Cookie origin may not be null");
163 throw new IllegalArgumentException("List of cookie may not be null");
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
Texture3D.java 123 * @throws IllegalArgumentException
128 throw new IllegalArgumentException("mode can not be null.");
130 throw new IllegalArgumentException("axis can not be null.");
150 * @throws IllegalArgumentException
155 throw new IllegalArgumentException("mode can not be null.");
169 * @throws IllegalArgumentException
181 throw new IllegalArgumentException("invalid WrapAxis: " + axis);
TextureCubeMap.java 99 * @throws IllegalArgumentException
104 throw new IllegalArgumentException("mode can not be null.");
106 throw new IllegalArgumentException("axis can not be null.");
126 * @throws IllegalArgumentException
131 throw new IllegalArgumentException("mode can not be null.");
145 * @throws IllegalArgumentException
157 throw new IllegalArgumentException("invalid WrapAxis: " + axis);
  /frameworks/base/core/java/android/content/pm/
VerifierDeviceIdentity.java 137 private static final long decodeBase32(byte[] input) throws IllegalArgumentException {
166 throw new IllegalArgumentException("base base-32 character: " + group);
174 throw new IllegalArgumentException("illegal start character; will overflow");
177 throw new IllegalArgumentException("too long; should have 13 characters");
182 throw new IllegalArgumentException("too short; should have 13 characters");
209 throws IllegalArgumentException {
214 throw new IllegalArgumentException("bad base-32 characters in input");
  /libcore/luni/src/main/java/javax/crypto/spec/
PBEKeySpec.java 69 * @throws IllegalArgumentException
79 throw new IllegalArgumentException("salt.length == 0");
82 throw new IllegalArgumentException("iterationCount <= 0");
85 throw new IllegalArgumentException("keyLength <= 0");
112 * @throws IllegalArgumentException
120 throw new IllegalArgumentException("salt.length == 0");
123 throw new IllegalArgumentException("iterationCount <= 0");
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
X509KeyManagerImpl.java 112 throw new IllegalArgumentException(ex.getMessage());
136 throw new IllegalArgumentException(ex.getMessage());
155 throw new IllegalArgumentException(ex.getMessage());
180 throw new IllegalArgumentException(ex.getMessage());
196 throw new IllegalArgumentException(ex.getMessage());
207 throw new IllegalArgumentException(ex.getMessage());
220 throw new IllegalArgumentException(ex.getMessage());
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat16BootSector.java 122 * @throws IllegalArgumentException if the specified label is longer
125 public void setVolumeLabel(String label) throws IllegalArgumentException {
127 throw new IllegalArgumentException("volume label too long");
153 if (v > 0x7FFF) throw new IllegalArgumentException(
206 * @throws IllegalArgumentException for negative values
208 public void setRootDirEntryCount(int v) throws IllegalArgumentException {
209 if (v < 0) throw new IllegalArgumentException();
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathBuilder2Test.java 150 * throws IllegalArgumentException when provider is null or empty;
155 NoSuchProviderException, IllegalArgumentException,
176 fail("IllegalArgumentException must be thrown when provider is null (type: "
178 } catch (IllegalArgumentException e) {
182 fail("IllegalArgumentException must be thrown when provider is empty (type: "
184 } catch (IllegalArgumentException e) {
219 IllegalArgumentException,
239 fail("IllegalArgumentException must be thrown when provider is null (type: "
241 } catch (IllegalArgumentException e) {
  /libcore/luni/src/test/java/tests/security/cert/
CertPathBuilder2Test.java 142 * throws IllegalArgumentException when provider is null or empty;
147 NoSuchProviderException, IllegalArgumentException,
168 fail("IllegalArgumentException must be thrown when provider is null (type: "
170 } catch (IllegalArgumentException e) {
174 fail("IllegalArgumentException must be thrown when provider is empty (type: "
176 } catch (IllegalArgumentException e) {
211 IllegalArgumentException,
231 fail("IllegalArgumentException must be thrown when provider is null (type: "
233 } catch (IllegalArgumentException e) {
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
WildcardFileFilter.java 63 * @throws IllegalArgumentException if the pattern is null
74 * @throws IllegalArgumentException if the pattern is null
78 throw new IllegalArgumentException("The wildcard must not be null");
91 * @throws IllegalArgumentException if the pattern array is null
105 * @throws IllegalArgumentException if the pattern array is null
109 throw new IllegalArgumentException("The wildcard array must not be null");
119 * @throws IllegalArgumentException if the pattern list is null
131 * @throws IllegalArgumentException if the pattern list is null
136 throw new IllegalArgumentException("The wildcard list must not be null");
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
TextOutputCallbackTest.java 64 } catch (IllegalArgumentException e) {
76 } catch (IllegalArgumentException e) {
81 } catch (IllegalArgumentException e) {
  /external/apache-http/src/org/apache/http/message/
BasicHeaderValueParser.java 98 throw new IllegalArgumentException
117 throw new IllegalArgumentException("Char array buffer may not be null");
120 throw new IllegalArgumentException("Parser cursor may not be null");
149 throw new IllegalArgumentException
168 throw new IllegalArgumentException("Char array buffer may not be null");
171 throw new IllegalArgumentException("Parser cursor may not be null");
214 throw new IllegalArgumentException
234 throw new IllegalArgumentException("Char array buffer may not be null");
237 throw new IllegalArgumentException("Parser cursor may not be null");
284 throw new IllegalArgumentException
    [all...]
  /external/apache-http/src/org/apache/http/params/
HttpConnectionParams.java 65 throw new IllegalArgumentException("HTTP parameters may not be null");
80 throw new IllegalArgumentException("HTTP parameters may not be null");
94 throw new IllegalArgumentException("HTTP parameters may not be null");
112 throw new IllegalArgumentException("HTTP parameters may not be null");
119 throw new IllegalArgumentException("HTTP parameters may not be null");
127 throw new IllegalArgumentException("HTTP parameters may not be null");
140 throw new IllegalArgumentException("HTTP parameters may not be null");
157 throw new IllegalArgumentException("HTTP parameters may not be null");
170 throw new IllegalArgumentException("HTTP parameters may not be null");
184 throw new IllegalArgumentException("HTTP parameters may not be null")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPVariableStack.java 50 throws TransformerException,IllegalArgumentException {
53 // we need to through IllegalArgumentException
57 throw new IllegalArgumentException( fmsg );
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
V2Form.java 37 throw new IllegalArgumentException("unknown object in factory: " + obj.getClass().getName());
51 throw new IllegalArgumentException("Bad sequence size: " + seq.size());
75 throw new IllegalArgumentException("Bad tag number: "
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 36 * @exception IllegalArgumentException if the params argument is
45 throw new IllegalArgumentException("invalid parameter passed to DESede init - " + params.getClass().getName());
52 throw new IllegalArgumentException("key size must be 16 or 24 bytes.");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
ECNamedCurveTable.java 38 catch (IllegalArgumentException e)
53 catch (IllegalArgumentException e)
70 // catch (IllegalArgumentException e)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
BigIntegers.java 53 throw new IllegalArgumentException("standard length exceeded for value");
71 throw new IllegalArgumentException("standard length exceeded for value");
100 throw new IllegalArgumentException("'min' may not be greater than 'max'");
  /external/smack/src/org/apache/harmony/javax/security/auth/login/
AppConfigurationEntry.java 40 throw new IllegalArgumentException("auth.26"); //$NON-NLS-1$
44 throw new IllegalArgumentException("auth.27"); //$NON-NLS-1$
48 throw new IllegalArgumentException("auth.1A"); //$NON-NLS-1$

Completed in 1506 milliseconds

<<11121314151617181920>>