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

1 2 3 45 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/primitives/
Bytes.java 21 import static com.google.common.base.Preconditions.checkNotNull;
119 checkNotNull(array, "array");
120 checkNotNull(target, "target");
240 // checkNotNull for GWT (do not optimize)
241 array[i] = ((Number) checkNotNull(boxedArray[i])).byteValue();
328 // checkNotNull for GWT (do not optimize)
329 array[start + index] = checkNotNull(element);
Chars.java 21 import static com.google.common.base.Preconditions.checkNotNull;
176 checkNotNull(array, "array");
177 checkNotNull(target, "target");
370 checkNotNull(separator);
444 // checkNotNull for GWT (do not optimize)
445 array[i] = (Character) checkNotNull(boxedArray[i]);
532 // checkNotNull for GWT (do not optimize)
533 array[start + index] = checkNotNull(element);
Floats.java 21 import static com.google.common.base.Preconditions.checkNotNull;
165 checkNotNull(array, "array");
166 checkNotNull(target, "target");
350 checkNotNull(separator);
424 // checkNotNull for GWT (do not optimize)
425 array[i] = ((Number) checkNotNull(boxedArray[i])).floatValue();
515 // checkNotNull for GWT (do not optimize)
516 array[start + index] = checkNotNull(element);
Shorts.java 21 import static com.google.common.base.Preconditions.checkNotNull;
183 checkNotNull(array, "array");
184 checkNotNull(target, "target");
414 checkNotNull(separator);
488 // checkNotNull for GWT (do not optimize)
489 array[i] = ((Number) checkNotNull(boxedArray[i])).shortValue();
576 // checkNotNull for GWT (do not optimize)
577 array[start + index] = checkNotNull(element);
  /external/guava/guava/src/com/google/common/util/concurrent/
Futures.java 20 import static com.google.common.base.Preconditions.checkNotNull;
92 return new MappingCheckedFuture<V, X>(checkNotNull(future), mapper);
103 checkNotNull(listener, "Runnable was null.");
104 checkNotNull(executor, "Executor was null.");
125 checkNotNull(unit);
175 checkNotNull(unit);
235 checkNotNull(unit);
274 checkNotNull(throwable);
300 checkNotNull(exception);
443 checkNotNull(fallback)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Predicates.java 19 import static com.google.common.base.Preconditions.checkNotNull;
129 checkNotNull(first), checkNotNull(second)));
168 checkNotNull(first), checkNotNull(second)));
261 this.predicate = checkNotNull(predicate);
386 this.target = checkNotNull(target);
425 this.p = checkNotNull(p);
426 this.f = checkNotNull(f);
466 list.add(checkNotNull(element))
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMap.java 19 import static com.google.common.base.Preconditions.checkNotNull;
100 checkNotNull(entry.getKey());
101 checkNotNull(entry.getValue());
149 checkNotNull(entry.getKey());
150 checkNotNull(entry.getValue());
170 checkNotNull(e.getKey()), checkNotNull(e.getValue()));
ImmutableSetMultimap.java 19 import static com.google.common.base.Preconditions.checkNotNull;
192 builderMultimap.put(checkNotNull(key), checkNotNull(value));
203 checkNotNull(entry.getKey()), checkNotNull(entry.getValue()));
208 Collection<V> collection = builderMultimap.get(checkNotNull(key));
210 collection.add(checkNotNull(value));
235 this.keyComparator = checkNotNull(keyComparator);
299 checkNotNull(multimap); // eager for GWT
Sets.java 20 import static com.google.common.base.Preconditions.checkNotNull;
75 return super.retainAll(checkNotNull(c)); // GWT compatibility
377 return new TreeSet<E>(checkNotNull(comparator));
434 checkNotNull(collection);
545 checkNotNull(set1, "set1");
546 checkNotNull(set2, "set2");
604 checkNotNull(set1, "set1");
605 checkNotNull(set2, "set2");
641 checkNotNull(set1, "set1");
642 checkNotNull(set2, "set2")
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Chars.java 21 import static com.google.common.base.Preconditions.checkNotNull;
174 checkNotNull(array, "array");
175 checkNotNull(target, "target");
319 checkNotNull(separator);
393 // checkNotNull for GWT (do not optimize)
394 array[i] = (Character) checkNotNull(boxedArray[i]);
481 // checkNotNull for GWT (do not optimize)
482 array[start + index] = checkNotNull(element);
Doubles.java 21 import static com.google.common.base.Preconditions.checkNotNull;
164 checkNotNull(array, "array");
165 checkNotNull(target, "target");
349 checkNotNull(separator);
423 // checkNotNull for GWT (do not optimize)
424 array[i] = ((Number) checkNotNull(boxedArray[i])).doubleValue();
514 // checkNotNull for GWT (do not optimize)
515 array[start + index] = checkNotNull(element);
Floats.java 21 import static com.google.common.base.Preconditions.checkNotNull;
161 checkNotNull(array, "array");
162 checkNotNull(target, "target");
346 checkNotNull(separator);
420 // checkNotNull for GWT (do not optimize)
421 array[i] = ((Number) checkNotNull(boxedArray[i])).floatValue();
511 // checkNotNull for GWT (do not optimize)
512 array[start + index] = checkNotNull(element);
Shorts.java 21 import static com.google.common.base.Preconditions.checkNotNull;
181 checkNotNull(array, "array");
182 checkNotNull(target, "target");
362 checkNotNull(separator);
436 // checkNotNull for GWT (do not optimize)
437 array[i] = ((Number) checkNotNull(boxedArray[i])).shortValue();
524 // checkNotNull for GWT (do not optimize)
525 array[start + index] = checkNotNull(element);
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
PreconditionsTest.java 129 String result = Preconditions.checkNotNull(NON_NULL_STRING);
135 Preconditions.checkNotNull(null);
142 String result = Preconditions.checkNotNull(NON_NULL_STRING, IGNORE_ME);
148 Preconditions.checkNotNull(null, new Message());
156 String result = Preconditions.checkNotNull(
163 Preconditions.checkNotNull(null, FORMAT, 5);
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
SetGenerators.java 19 import static com.google.common.base.Preconditions.checkNotNull;
285 set.add(checkNotNull(element));
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
SetGenerators.java 19 import static com.google.common.base.Preconditions.checkNotNull;
312 set.add(checkNotNull(element));
  /external/guava/guava-tests/test/com/google/common/base/
PreconditionsTest.java 131 String result = Preconditions.checkNotNull(NON_NULL_STRING);
137 Preconditions.checkNotNull(null);
144 String result = Preconditions.checkNotNull(NON_NULL_STRING, IGNORE_ME);
150 Preconditions.checkNotNull(null, new Message());
158 String result = Preconditions.checkNotNull(
165 Preconditions.checkNotNull(null, FORMAT, 5);
  /external/guice/core/src/com/google/inject/internal/
CycleDetectingLock.java 141 this.userLockId = Preconditions.checkNotNull(userLockId, "userLockId");
142 this.lockImplementation = Preconditions.checkNotNull(
274 Preconditions.checkNotNull(ownedLocks,
  /external/guice/core/src/com/google/inject/internal/util/
LineNumbers.java 19 import static com.google.common.base.Preconditions.checkNotNull;
99 checkNotNull(member, "member");
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
ThrowingProviderBinder.java 19 import static com.google.common.base.Preconditions.checkNotNull;
152 this.interfaceType = checkNotNull(interfaceType, "interfaceType");
153 this.valueType = checkNotNull(valueType, "valueType");
281 checkNotNull(targetKey, "targetKey");
  /external/mockito/src/main/java/org/mockito/internal/creation/
MockSettingsImpl.java 120 Checks.checkNotNull(constructorArgs,
  /external/mockito/src/main/java/org/mockito/internal/util/collections/
HashCodeAndEqualsSafeSet.java 132 Checks.checkNotNull(mocks, "Passed collection should notify() be null");
  /frameworks/base/core/java/android/app/slice/
SliceManager.java 244 Preconditions.checkNotNull(uri, "uri");
339 Preconditions.checkNotNull(intent, "intent");
374 Preconditions.checkNotNull(intent, "intent");
  /frameworks/base/core/java/android/app/usage/
NetworkStatsManager.java 19 import static com.android.internal.util.Preconditions.checkNotNull;
398 checkNotNull(callback, "UsageCallback cannot be null");
  /frameworks/base/core/java/android/companion/
CompanionDeviceManager.java 20 import static com.android.internal.util.Preconditions.checkNotNull;
144 checkNotNull(request, "Request cannot be null");
145 checkNotNull(callback, "Callback cannot be null");

Completed in 448 milliseconds

1 2 3 45 6 7 8 91011>>