HomeSort by relevance Sort by last modified time
    Searched defs:checkNotNull (Results 26 - 50 of 528) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
LambdaExpr.java 56 Preconditions.checkNotNull(mCallbackWrapper, "Lambda expression must be resolved to its"
88 .checkNotNull(mCallbackWrapper, "Cannot find the callback method for %s", this);
CallbackArgExpr.java 61 .checkNotNull(mClassFromCallback, ErrorMessages.UNDEFINED_CALLBACK_ARGUMENT, mName);
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLSocketFactoryImpl.java 146 Preconditions.checkNotNull(socket, "socket");
  /external/guava/guava/src/com/google/common/base/
Converter.java 19 import static com.google.common.base.Preconditions.checkNotNull;
154 return a == null ? null : checkNotNull(doForward(a));
164 return b == null ? null : checkNotNull(doBackward(b));
179 checkNotNull(fromIterable, "fromIterable");
295 return new ConverterComposition<A, B, C>(this, checkNotNull(secondConverter));
416 this.forwardFunction = checkNotNull(forwardFunction);
417 this.backwardFunction = checkNotNull(backwardFunction);
483 return checkNotNull(otherConverter, "otherConverter");
Present.java 19 import static com.google.common.base.Preconditions.checkNotNull;
48 checkNotNull(defaultValue, "use Optional.orNull() instead of Optional.or(null)");
53 checkNotNull(secondChoice);
58 checkNotNull(supplier);
71 return new Present<V>(checkNotNull(function.apply(reference),
Throwables.java 19 import static com.google.common.base.Preconditions.checkNotNull;
129 checkNotNull(declaredType2);
159 propagateIfPossible(checkNotNull(throwable));
199 checkNotNull(throwable);
Preconditions.java 25 * checkNotNull}, an object reference which is expected to be non-null). When {@code false} (or
79 * #checkNotNull(Object)} or {@link Verify#verifyNotNull(Object)} is appropriate to the situation.
208 public static <T> T checkNotNull(T reference) {
224 public static <T> T checkNotNull(T reference, @Nullable Object errorMessage) {
245 public static <T> T checkNotNull(T reference,
  /external/guava/guava/src/com/google/common/hash/
HashingInputStream.java 17 import static com.google.common.base.Preconditions.checkNotNull;
42 super(checkNotNull(in));
43 this.hasher = checkNotNull(hashFunction.newHasher());
HashingOutputStream.java 17 import static com.google.common.base.Preconditions.checkNotNull;
46 super(checkNotNull(out));
47 this.hasher = checkNotNull(hashFunction.newHasher());
  /external/guava/guava-testlib/src/com/google/common/testing/
TearDownStack.java 19 import static com.google.common.base.Preconditions.checkNotNull;
55 stack.addFirst(checkNotNull(tearDown));
  /external/guava/guava-tests/test/com/google/common/io/
TestInputStream.java 19 import static com.google.common.base.Preconditions.checkNotNull;
45 super(checkNotNull(in));
TestOutputStream.java 19 import static com.google.common.base.Preconditions.checkNotNull;
44 super(checkNotNull(out));
  /external/guice/core/src/com/google/inject/internal/
BindingBuilder.java 19 import static com.google.common.base.Preconditions.checkNotNull;
69 checkNotNull(linkedKey, "linkedKey");
104 checkNotNull(provider, "provider");
134 checkNotNull(providerKey, "providerKey");
149 checkNotNull(constructor, "constructor");
150 checkNotNull(type, "type");
  /frameworks/base/core/java/android/hardware/camera2/marshal/
MarshalHelpers.java 87 checkNotNull(klass, "klass must not be null");
  /frameworks/base/core/java/android/hardware/camera2/utils/
ParamsUtils.java 47 checkNotNull(size, "size must not be null");
65 checkNotNull(rect, "rect must not be null");
87 checkNotNull(transform, "transform must not be null");
88 checkNotNull(rect, "rect must not be null");
106 checkNotNull(rect, "rect must not be null");
170 checkNotNull(source, "source must not be null");
171 checkNotNull(destination, "destination must not be null");
185 checkNotNull(r, "r must not be null");
186 checkNotNull(key, "key must not be null");
187 checkNotNull(defaultValue, "defaultValue must not be null")
    [all...]
  /frameworks/base/core/java/android/text/style/
LocaleSpan.java 63 Preconditions.checkNotNull(locales, "locales cannot be null");
  /frameworks/base/core/java/android/util/
Range.java 55 mLower = checkNotNull(lower, "lower must not be null");
56 mUpper = checkNotNull(upper, "upper must not be null");
112 checkNotNull(value, "value must not be null");
132 checkNotNull(range, "value must not be null");
174 checkNotNull(value, "value must not be null");
205 checkNotNull(range, "range must not be null");
237 checkNotNull(lower, "lower must not be null");
238 checkNotNull(upper, "upper must not be null");
273 checkNotNull(range, "range must not be null");
305 checkNotNull(lower, "lower must not be null")
    [all...]
  /frameworks/support/emoji/core/src/main/java/androidx/emoji/text/
EmojiSpan.java 72 Preconditions.checkNotNull(metadata, "metadata cannot be null");
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
BenchmarkSpec.java 20 import static com.google.common.base.Preconditions.checkNotNull;
122 this.className = checkNotNull(className);
127 this.methodName = checkNotNull(methodName);
132 this.parameters.put(checkNotNull(parameterName), checkNotNull(value));
  /external/guava/guava/src/com/google/common/eventbus/
EventSubscriber.java 19 import static com.google.common.base.Preconditions.checkNotNull;
54 Preconditions.checkNotNull(target,
56 Preconditions.checkNotNull(method, "EventSubscriber method cannot be null.");
72 checkNotNull(event);
  /external/guava/guava/src/com/google/common/io/
LittleEndianDataInputStream.java 53 super(Preconditions.checkNotNull(in));
  /external/guava/guava/src/com/google/common/util/concurrent/
ExecutionList.java 85 Preconditions.checkNotNull(runnable, "Runnable was null.");
86 Preconditions.checkNotNull(executor, "Executor was null.");
SerializingExecutor.java 77 Preconditions.checkNotNull(executor, "'executor' must not be null.");
93 Preconditions.checkNotNull(r, "'r' must not be null.");
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableCollection.java 19 import static com.google.common.base.Preconditions.checkNotNull;
108 checkNotNull(elements); // for GWT
110 add(checkNotNull(element));
116 checkNotNull(elements); // for GWT
118 add(checkNotNull(element));
124 checkNotNull(elements); // for GWT
126 add(checkNotNull(elements.next()));
ImmutableSet.java 19 import static com.google.common.base.Preconditions.checkNotNull;
83 checkNotNull(elements);
119 delegate.add(checkNotNull(first));
121 delegate.add(checkNotNull(elements.next()));
145 checkNotNull(element);
177 contents.add(checkNotNull(element));
182 checkNotNull(elements); // for GWT

Completed in 1054 milliseconds

12 3 4 5 6 7 8 91011>>