OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:checkNotNull
(Results
226 - 250
of
348
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/development/tools/idegen/src/com/android/idegen/
ModuleCache.java
97
Preconditions.
checkNotNull
(module);
IntellijProject.java
51
this.indexFile = new File(Preconditions.
checkNotNull
(indexFile));
52
this.moduleName = Preconditions.
checkNotNull
(moduleName);
MakeFileParser.java
65
this.makeFile = Preconditions.
checkNotNull
(makeFile);
66
this.moduleName = Preconditions.
checkNotNull
(moduleName);
StandardModule.java
78
this(Preconditions.
checkNotNull
(moduleName), new File(Preconditions.
checkNotNull
(makeFile)),
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/invalidation/
InvalidationController.java
121
mContext = Preconditions.
checkNotNull
(context.getApplicationContext());
/external/guava/guava/src/com/google/common/cache/
ForwardingCache.java
147
this.delegate = Preconditions.
checkNotNull
(delegate);
/external/guava/guava/src/com/google/common/collect/
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);
Multimaps.java
20
import static com.google.common.base.Preconditions.
checkNotNull
;
118
this.factory =
checkNotNull
(factory);
200
this.factory =
checkNotNull
(factory);
278
this.factory =
checkNotNull
(factory);
357
this.factory =
checkNotNull
(factory);
405
checkNotNull
(dest);
484
return
checkNotNull
(delegate);
497
this.delegate =
checkNotNull
(delegate);
783
return
checkNotNull
(delegate);
878
return
checkNotNull
(delegate)
[
all
...]
RegularContiguousSet.java
18
import static com.google.common.base.Preconditions.
checkNotNull
;
131
checkNotNull
(other);
/external/guava/guava/src/com/google/common/io/
LittleEndianDataInputStream.java
53
super(Preconditions.
checkNotNull
(in));
LittleEndianDataOutputStream.java
52
super(new DataOutputStream(Preconditions.
checkNotNull
(out)));
/external/mockito/src/org/mockito/internal/util/reflection/
Fields.java
69
Checks.
checkNotNull
(annotations, "Provide at least one annotation class");
/libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java
239
checkNotNull
(e);
295
checkNotNull
(e);
493
checkNotNull
(e);
771
private static void
checkNotNull
(Object v) {
ConcurrentLinkedDeque.java
327
checkNotNull
(e);
360
checkNotNull
(e);
770
private static void
checkNotNull
(Object v) {
824
checkNotNull
(e);
[
all
...]
/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);
/external/guava/guava/src/com/google/common/math/
IntMath.java
20
import static com.google.common.base.Preconditions.
checkNotNull
;
250
checkNotNull
(mode);
/external/guava/guava/src/com/google/common/util/concurrent/
AtomicLongMap.java
5
import static com.google.common.base.Preconditions.
checkNotNull
;
44
this.map =
checkNotNull
(map);
/external/guava/guava-tests/test/com/google/common/collect/
BstTesting.java
17
import static com.google.common.base.Preconditions.
checkNotNull
;
77
return
checkNotNull
(nodeFactory).createNode(source, left, right);
SynchronizedMapTest.java
19
import static com.google.common.base.Preconditions.
checkNotNull
;
52
checkNotNull
(mutex);
/packages/apps/Gallery2/src/com/android/gallery3d/app/
SinglePhotoDataAdapter.java
58
mItem = Utils.
checkNotNull
(item);
61
mPhotoView = Utils.
checkNotNull
(view);
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
MediaSetSource.java
53
mDataManager = Utils.
checkNotNull
(manager);
138
mSource = Utils.
checkNotNull
(source);
/packages/apps/Settings/src/com/android/settings/widget/
ChartView.java
73
mHoriz = Preconditions.
checkNotNull
(horiz, "missing horiz");
74
mVert = Preconditions.
checkNotNull
(vert, "missing vert");
/packages/apps/Tag/src/com/android/apps/tag/record/
SmartPoster.java
106
mUriRecord = Preconditions.
checkNotNull
(uri);
109
mAction = Preconditions.
checkNotNull
(action);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Multimaps.java
20
import static com.google.common.base.Preconditions.
checkNotNull
;
114
this.factory =
checkNotNull
(factory);
175
this.factory =
checkNotNull
(factory);
232
this.factory =
checkNotNull
(factory);
290
this.factory =
checkNotNull
(factory);
316
checkNotNull
(dest);
395
return
checkNotNull
(delegate);
408
this.delegate =
checkNotNull
(delegate);
694
return
checkNotNull
(delegate);
789
return
checkNotNull
(delegate)
[
all
...]
Completed in 492 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>