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

<<41424344454647484950>>

  /external/junit-params/src/main/java/junitparams/custom/
FileParametersProvider.java 59 throw new IllegalArgumentException("Unknown file access protocol. Only 'file' and 'classpath' are supported!");
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
LZMA2Encoder.java 20 throw new IllegalArgumentException(
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
OkHttpClient.java 187 if (timeout < 0) throw new IllegalArgumentException("timeout < 0");
188 if (unit == null) throw new IllegalArgumentException("unit == null");
190 if (millis > Integer.MAX_VALUE) throw new IllegalArgumentException("Timeout too large.");
191 if (millis == 0 && timeout > 0) throw new IllegalArgumentException("Timeout too small.");
207 if (timeout < 0) throw new IllegalArgumentException("timeout < 0");
208 if (unit == null) throw new IllegalArgumentException("unit == null");
210 if (millis > Integer.MAX_VALUE) throw new IllegalArgumentException("Timeout too large.");
211 if (millis == 0 && timeout > 0) throw new IllegalArgumentException("Timeout too small.");
225 if (timeout < 0) throw new IllegalArgumentException("timeout < 0");
226 if (unit == null) throw new IllegalArgumentException("unit == null")
    [all...]
TlsVersion.java 44 throw new IllegalArgumentException("Unexpected TLS version: " + javaName);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
OptionalMethod.java 63 * @throws IllegalArgumentException if the arguments are invalid
83 * @throws IllegalArgumentException if the arguments are invalid
103 * @throws IllegalArgumentException if the arguments are invalid
126 * @throws IllegalArgumentException if the arguments are invalid
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSink.java 25 if (delegate == null) throw new IllegalArgumentException("delegate == null");
ForwardingSource.java 25 if (delegate == null) throw new IllegalArgumentException("delegate == null");
Segment.java 110 if (byteCount <= 0 || byteCount > limit - pos) throw new IllegalArgumentException();
135 if (!sink.owner) throw new IllegalArgumentException();
138 if (sink.shared) throw new IllegalArgumentException();
139 if (sink.limit + byteCount - sink.pos > SIZE) throw new IllegalArgumentException();
Timeout.java 81 if (timeout < 0) throw new IllegalArgumentException("timeout < 0: " + timeout);
82 if (unit == null) throw new IllegalArgumentException("unit == null");
121 if (duration <= 0) throw new IllegalArgumentException("duration <= 0: " + duration);
122 if (unit == null) throw new IllegalArgumentException("unit == null");
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
MessageOrBuilder.java 93 * @throws IllegalArgumentException if
108 * @throws IllegalArgumentException The field is a repeated field, or
126 * @throws IllegalArgumentException The field is not a repeated field, or
136 * @throws IllegalArgumentException The field is not a repeated field, or
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
DocumentLoader.java 42 } catch (IllegalArgumentException e) {
DrawableResourceLoader.java 39 } catch (IllegalArgumentException e) {
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowMediaMetadataRetrieverTest.java 112 addException(toDataSource(path2), new IllegalArgumentException());
118 Assertions.failBecauseExceptionWasNotThrown(IllegalArgumentException.class);
119 } catch (IllegalArgumentException e) {}
125 } catch (IllegalArgumentException e) {
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
BasicMarker.java 49 throw new IllegalArgumentException("A marker name cannot be null");
60 throw new IllegalArgumentException("A null value cannot be added to a Marker as reference.");
115 throw new IllegalArgumentException("Other cannot be null");
138 throw new IllegalArgumentException("Other cannot be null");
  /external/vogar/src/vogar/android/
RunActivityTask.java 31 throw new IllegalArgumentException("ActivityMode doesn't support runtime monitor ports!");
  /external/vogar/src/vogar/target/
MainTargetRunner.java 41 throw new IllegalArgumentException(e);
  /frameworks/av/packages/MediaComponents/src/com/android/media/
MediaPlaylistAgentImpl.java 53 throw new IllegalArgumentException("executor shouldn't be null");
56 throw new IllegalArgumentException("callback shouldn't be null");
72 throw new IllegalArgumentException("callback shouldn't be null");
202 throw new IllegalArgumentException("dsd shouldn't be null");
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
MediaRouteProviderDescriptor.java 136 throw new IllegalArgumentException("descriptor must not be null");
152 throw new IllegalArgumentException("route must not be null");
158 throw new IllegalArgumentException("route descriptor already added");
169 throw new IllegalArgumentException("routes must not be null");
  /frameworks/base/core/java/android/database/sqlite/
SQLiteCustomFunction.java 40 throw new IllegalArgumentException("name must not be null.");
SQLiteDatabaseConfiguration.java 135 throw new IllegalArgumentException("path must not be null.");
154 throw new IllegalArgumentException("other must not be null.");
170 throw new IllegalArgumentException("other must not be null.");
173 throw new IllegalArgumentException("other configuration must refer to "
SQLiteProgram.java 68 throw new IllegalArgumentException("Too many bind arguments. "
164 throw new IllegalArgumentException("the bind value at index " + index + " is null");
178 throw new IllegalArgumentException("the bind value at index " + index + " is null");
212 throw new IllegalArgumentException("Cannot bind argument at index "
  /frameworks/base/core/java/android/net/
DhcpResults.java 150 } catch (IllegalArgumentException|ClassCastException e) {
160 } catch (IllegalArgumentException e) {
171 } catch (IllegalArgumentException e) {
182 } catch (IllegalArgumentException|ClassCastException e) {
  /frameworks/base/core/java/android/security/keymaster/
KeymasterBlobArgument.java 34 throw new IllegalArgumentException("Bad blob tag " + tag);
KeymasterBooleanArgument.java 35 throw new IllegalArgumentException("Bad bool tag " + tag);
KeymasterDateArgument.java 34 throw new IllegalArgumentException("Bad date tag " + tag);

Completed in 1559 milliseconds

<<41424344454647484950>>