HomeSort by relevance Sort by last modified time
    Searched refs:checkNotNull (Results 176 - 200 of 423) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Shorts.java 21 import static com.google.common.base.Preconditions.checkNotNull;
169 checkNotNull(array, "array");
170 checkNotNull(target, "target");
314 checkNotNull(separator);
387 // checkNotNull for GWT (do not optimize)
388 array[i] = (Short) checkNotNull(boxedArray[i]);
475 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
  /external/guava/guava/src/com/google/common/base/
Stopwatch.java 19 import static com.google.common.base.Preconditions.checkNotNull;
92 this.ticker = checkNotNull(ticker);
PairwiseEquivalence.java 33 this.elementEquivalence = Preconditions.checkNotNull(elementEquivalence);
  /external/guava/guava/src/com/google/common/collect/
AbstractSortedMultiset.java 17 import static com.google.common.base.Preconditions.checkNotNull;
45 this.comparator = checkNotNull(comparator);
BstInOrderPath.java 17 import static com.google.common.base.Preconditions.checkNotNull;
52 checkNotNull(path);
BstMutationResult.java 17 import static com.google.common.base.Preconditions.checkNotNull;
68 this.modificationResult = checkNotNull(modificationResult);
ReverseNaturalOrdering.java 19 import static com.google.common.base.Preconditions.checkNotNull;
34 checkNotNull(left); // right null is caught later
ReverseOrdering.java 19 import static com.google.common.base.Preconditions.checkNotNull;
34 this.forwardOrder = checkNotNull(forwardOrder);
Sets.java 20 import static com.google.common.base.Preconditions.checkNotNull;
133 * checkNotNull() here. For now, contemplate the irony that checking
137 checkNotNull(iterable);
344 return new TreeSet<E>(checkNotNull(comparator));
401 checkNotNull(collection);
584 checkNotNull(set1, "set1");
585 checkNotNull(set2, "set2");
643 checkNotNull(set1, "set1");
644 checkNotNull(set2, "set2");
680 checkNotNull(set1, "set1")
    [all...]
SingletonImmutableList.java 19 import static com.google.common.base.Preconditions.checkNotNull;
41 this.element = checkNotNull(element);
TransformedImmutableList.java 18 import static com.google.common.base.Preconditions.checkNotNull;
48 this.backingList = checkNotNull(backingList);
Maps.java 20 import static com.google.common.base.Preconditions.checkNotNull;
245 return new EnumMap<K, V>(checkNotNull(type));
353 Preconditions.checkNotNull(valueEquivalence);
539 checkNotNull(left);
540 checkNotNull(right);
654 Iterable<V> valuesIterable = checkNotNull(values);
675 checkNotNull(keyFunction);
749 checkNotNull(entry);
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
UnsignedBytes.java 20 import static com.google.common.base.Preconditions.checkNotNull;
165 checkNotNull(separator);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 20 import static com.google.common.base.Preconditions.checkNotNull;
130 * checkNotNull() here. For now, contemplate the irony that checking
134 checkNotNull(iterable);
341 return new TreeSet<E>(checkNotNull(comparator));
398 checkNotNull(collection);
572 checkNotNull(set1, "set1");
573 checkNotNull(set2, "set2");
631 checkNotNull(set1, "set1");
632 checkNotNull(set2, "set2");
668 checkNotNull(set1, "set1")
    [all...]
Maps.java 20 import static com.google.common.base.Preconditions.checkNotNull;
242 return new EnumMap<K, V>(checkNotNull(type));
350 Preconditions.checkNotNull(valueEquivalence);
536 checkNotNull(left);
537 checkNotNull(right);
651 Iterable<V> valuesIterable = checkNotNull(values);
672 checkNotNull(keyFunction);
720 checkNotNull(entry);
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
EquivalenceTester.java 19 import static com.google.common.base.Preconditions.checkNotNull;
69 this.equivalence = checkNotNull(equivalence);
RelationshipTester.java 19 import static com.google.common.base.Preconditions.checkNotNull;
41 this.assertion = checkNotNull(assertion);
  /frameworks/base/core/java/android/hardware/camera2/params/
LensShadingMap.java 66 mElements = checkNotNull(elements, "elements must not be null");
199 checkNotNull(destination, "destination must not be null");
  /frameworks/base/core/java/android/net/
BaseNetworkStateTracker.java 82 mContext = Preconditions.checkNotNull(context);
83 mTarget = Preconditions.checkNotNull(target);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
ColumnAdapter.java 44 mWrapped = Preconditions.checkNotNull(wrapped);
45 mListener = Preconditions.checkNotNull(listener);
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
ScriptYuvMeans1d.java 39 checkNotNull("inputInfo", inputInfo);
ScriptYuvMeans2dTo1d.java 42 checkNotNull("inputInfo", inputInfo);
ScriptYuvToRgb.java 36 checkNotNull("outputInfo", outputInfo);
  /external/droiddriver/src/com/google/android/droiddriver/actions/
TextAction.java 51 this.text = Preconditions.checkNotNull(text);
  /external/guava/guava/src/com/google/common/cache/
ForwardingLoadingCache.java 83 this.delegate = Preconditions.checkNotNull(delegate);

Completed in 396 milliseconds

1 2 3 4 5 6 78 91011>>