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

<<11121314151617

  /external/guava/guava/src/com/google/common/primitives/
UnsignedLongs.java 18 import static com.google.common.base.Preconditions.checkNotNull;
124 checkNotNull(separator);
257 checkNotNull(s);
  /external/guava/guava/src/com/google/common/util/concurrent/
MoreExecutors.java 19 import static com.google.common.base.Preconditions.checkNotNull;
409 this.delegate = checkNotNull(delegate);
450 this.delegate = checkNotNull(delegate);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
SortedMapGenerators.java 19 import static com.google.common.base.Preconditions.checkNotNull;
113 checkNotNull(entry);
183 checkNotNull(entry);
  /external/guava/guava/src/com/google/common/io/
Files.java 19 import static com.google.common.base.Preconditions.checkNotNull;
101 Preconditions.checkNotNull(file);
133 Preconditions.checkNotNull(file);
485 Preconditions.checkNotNull(to);
760 checkNotNull(fileName);
LittleEndianDataInputStream.java 53 super(Preconditions.checkNotNull(in));
LittleEndianDataOutputStream.java 52 super(new DataOutputStream(Preconditions.checkNotNull(out)));
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsRecorder.java 22 import static com.android.internal.util.Preconditions.checkNotNull;
90 mRotator = checkNotNull(rotator, "missing FileRotator");
91 mObserver = checkNotNull(observer, "missing NonMonotonicObserver");
92 mDropBox = checkNotNull(dropBox, "missing DropBoxManager");
293 mCollection = checkNotNull(collection, "missing NetworkStatsCollection");
  /packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailPlaybackFragment.java 94 Preconditions.checkNotNull(arguments, "fragment must be started with arguments");
96 Preconditions.checkNotNull(voicemailUri, "fragment must contain EXTRA_VOICEMAIL_URI");
223 Preconditions.checkNotNull(activityReference);
224 Preconditions.checkNotNull(applicationContext);
225 Preconditions.checkNotNull(playbackLayout);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscapers.java 18 import static com.google.android.mail.common.base.Preconditions.checkNotNull;
43 checkNotNull(string);
49 checkNotNull(out);
56 checkNotNull(csq);
63 checkNotNull(csq);
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ArrayTable.java 20 import static com.google.common.base.Preconditions.checkNotNull;
358 checkNotNull(rowKey);
359 checkNotNull(columnKey);
527 checkNotNull(columnKey);
557 checkNotNull(rowKey);
673 checkNotNull(rowKey);
702 checkNotNull(columnKey);
ImmutableSortedMap.java 20 import static com.google.common.base.Preconditions.checkNotNull;
201 return copyOfInternal(map, checkNotNull(comparator));
359 this.comparator = checkNotNull(comparator);
684 checkNotNull(fromKey);
685 checkNotNull(toKey);
727 keyList(), checkNotNull(key), unsafeComparator(), presentBehavior, absentBehavior);
RegularImmutableTable.java 20 import static com.google.common.base.Preconditions.checkNotNull;
93 checkNotNull(cells);
220 checkNotNull(columnKey);
235 checkNotNull(rowKey);
314 checkNotNull(columnKey);
385 checkNotNull(rowKey);
Cut.java 17 import static com.google.common.base.Preconditions.checkNotNull;
234 super(checkNotNull(endpoint));
292 super(checkNotNull(endpoint));
ImmutableMultiset.java 19 import static com.google.common.base.Preconditions.checkNotNull;
540 contents.add(checkNotNull(element));
558 contents.add(checkNotNull(element), occurrences);
573 contents.setCount(checkNotNull(element), count);
  /libcore/luni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 124 private static void checkNotNull(Object v) {
257 checkNotNull(e);
295 checkNotNull(e);
318 checkNotNull(e);
341 checkNotNull(e);
674 checkNotNull(c);
    [all...]
ConcurrentLinkedQueue.java 239 checkNotNull(e);
295 checkNotNull(e);
493 checkNotNull(e);
771 private static void checkNotNull(Object v) {
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 20 import static com.google.common.base.Preconditions.checkNotNull;
55 checkNotNull(x);
68 checkPositive("x", checkNotNull(x));
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheBuilder.java 20 import static com.google.common.base.Preconditions.checkNotNull;
162 checkNotNull(key);
187 super(builder, checkNotNull(loader));
  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 99 mBasePath = Preconditions.checkNotNull(basePath);
100 mPrefix = Preconditions.checkNotNull(prefix);
409 this.prefix = Preconditions.checkNotNull(prefix);
  /external/guava/guava/src/com/google/common/cache/
ForwardingCache.java 147 this.delegate = Preconditions.checkNotNull(delegate);
  /external/mockito/src/org/mockito/internal/util/reflection/
Fields.java 69 Checks.checkNotNull(annotations, "Provide at least one annotation class");
  /frameworks/base/core/java/android/hardware/camera2/legacy/
RequestHolder.java 72 checkNotNull(request, "request must not be null");
  /frameworks/base/core/java/android/hardware/camera2/params/
ReprocessFormatsMap.java 74 checkNotNull(entry, "entry must not be null");
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadCache.java 82 mRoot = Utils.checkNotNull(root);
83 mApplication = Utils.checkNotNull(application);
256 this.cacheFile = Utils.checkNotNull(cacheFile);
266 mUrl = Utils.checkNotNull(url);
  /packages/apps/Settings/src/com/android/settings/drawable/
DrawableWrapper.java 38 mDrawable = Preconditions.checkNotNull(drawable);

Completed in 524 milliseconds

<<11121314151617