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

1 2 3 45 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
Interners.java 17 import static com.google.common.base.Preconditions.checkNotNull;
48 E canonical = map.putIfAbsent(checkNotNull(sample), sample);
112 return new InternerFunction<E>(checkNotNull(interner));
BstNode.java 17 import static com.google.common.base.Preconditions.checkNotNull;
115 checkNotNull(comparator);
TreeBasedTable.java 20 import static com.google.common.base.Preconditions.checkNotNull;
116 checkNotNull(rowComparator);
117 checkNotNull(columnComparator);
209 checkArgument(rangeContains(checkNotNull(fromKey))
210 && rangeContains(checkNotNull(toKey)));
215 checkArgument(rangeContains(checkNotNull(toKey)));
220 checkArgument(rangeContains(checkNotNull(fromKey)));
288 checkArgument(rangeContains(checkNotNull(key)));
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInts.java 18 import static com.google.common.base.Preconditions.checkNotNull;
123 checkNotNull(separator);
213 checkNotNull(string);
  /external/guava/guava/src/com/google/common/util/concurrent/
ThreadFactoryBuilder.java 20 import static com.google.common.base.Preconditions.checkNotNull;
113 this.uncaughtExceptionHandler = checkNotNull(uncaughtExceptionHandler);
130 this.backingThreadFactory = checkNotNull(backingThreadFactory);
  /frameworks/base/core/java/android/hardware/camera2/params/
MeteringRectangle.java 113 checkNotNull(xy, "xy must not be null");
114 checkNotNull(dimensions, "dimensions must not be null");
135 checkNotNull(rect, "rect must not be null");
TonemapCurve.java 106 checkNotNull(red, "red must not be null");
107 checkNotNull(green, "green must not be null");
108 checkNotNull(blue, "blue must not be null");
235 checkNotNull(destination, "destination must not be null");
  /frameworks/base/location/lib/java/com/android/location/provider/
ActivityRecognitionProvider.java 61 Preconditions.checkNotNull(service);
75 Preconditions.checkNotNull(sink);
84 Preconditions.checkNotNull(sink);
  /packages/apps/InCallUI/src/com/android/incallui/
InCallVideoCallListenerNotifier.java 67 Preconditions.checkNotNull(listener);
88 Preconditions.checkNotNull(listener);
109 Preconditions.checkNotNull(listener);
CallTimer.java 35 Preconditions.checkNotNull(callback);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscaper.java 19 import static com.google.android.mail.common.base.Preconditions.checkNotNull;
51 checkNotNull(string);
82 checkNotNull(out);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HTML.java 70 Preconditions.checkNotNull(name, "Element name can not be null");
71 Preconditions.checkNotNull(flow, "Element flow can not be null");
181 Preconditions.checkNotNull(name, "Attribute name can not be null");
  /development/tools/idegen/src/com/android/idegen/
FrameworkModule.java 35 super(Preconditions.checkNotNull(moduleDir), false);
  /external/guava/guava/src/com/google/common/base/
Objects.java 19 import static com.google.common.base.Preconditions.checkNotNull;
174 return first != null ? first : checkNotNull(second);
191 checkNotNull(className);
272 checkNotNull(name);
Functions.java 20 import static com.google.common.base.Preconditions.checkNotNull;
61 checkNotNull(o); // eager for GWT.
104 this.map = checkNotNull(map);
152 this.map = checkNotNull(map);
199 this.g = checkNotNull(g);
200 this.f = checkNotNull(f);
242 this.predicate = checkNotNull(predicate);
327 this.supplier = checkNotNull(supplier);
  /external/guava/guava/src/com/google/common/hash/
BloomFilter.java 18 import static com.google.common.base.Preconditions.checkNotNull;
80 this.bits = checkNotNull(bits);
82 this.funnel = checkNotNull(funnel);
132 checkNotNull(funnel);
  /external/guava/guava/src/com/google/common/io/
PatternFilenameFilter.java 56 this.pattern = Preconditions.checkNotNull(pattern);
Resources.java 20 import static com.google.common.base.Preconditions.checkNotNull;
56 checkNotNull(url);
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
BroadcastDispatcher.java 45 checkNotNull(dispatchTargets, "dispatchTargets must not be null"));
InvokeDispatcher.java 33 mTarget = checkNotNull(target, "target must not be null");
  /frameworks/base/core/java/android/hardware/camera2/marshal/
Marshaler.java 57 mTypeReference = checkNotNull(typeReference, "typeReference must not be null");
  /frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
Utils.java 37 public static final void checkNotNull(Object object) {
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
InterruptableOutputStream.java 33 mOutputStream = Utils.checkNotNull(outputStream);
  /packages/apps/Tag/src/com/android/apps/tag/record/
TextRecord.java 49 mLanguageCode = Preconditions.checkNotNull(languageCode);
50 mText = Preconditions.checkNotNull(text);
134 Preconditions.checkNotNull(text);
135 Preconditions.checkNotNull(locale);
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
ScriptYuvCrop.java 55 checkNotNull("inputInfo", inputInfo);
56 checkNotNull("parameters", parameters);

Completed in 397 milliseconds

1 2 3 45 6 7 8 91011>>