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

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-gwt/src-super/com/google/common/testing/super/com/google/common/testing/
Platform.java 19 import static com.google.common.base.Preconditions.checkNotNull;
32 return checkNotNull(object);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SingletonImmutableMap.java 19 import static com.google.common.base.Preconditions.checkNotNull;
40 super(Collections.singletonMap(checkNotNull(key), checkNotNull(value)));
SingletonImmutableList.java 19 import static com.google.common.base.Preconditions.checkNotNull;
36 super(Collections.singletonList(checkNotNull(element)));
SingletonImmutableSet.java 19 import static com.google.common.base.Preconditions.checkNotNull;
38 super(Collections.singleton(checkNotNull(element)));
ImmutableCollection.java 27 import static com.google.common.base.Preconditions.checkNotNull;
148 checkNotNull(elements); // for GWT
150 add(checkNotNull(element));
156 checkNotNull(elements); // for GWT
158 add(checkNotNull(element));
164 checkNotNull(elements); // for GWT
166 add(checkNotNull(elements.next()));
  /external/mockito/src/org/mockito/internal/util/
Checks.java 13 public static <T> T checkNotNull(T value, String checkedValue) {
21 checkNotNull(iterable, checkedIterable);
23 checkNotNull(item, "item in " + checkedIterable);
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyRequest.java 49 this.characteristics = checkNotNull(characteristics, "characteristics must not be null");
50 this.captureRequest = checkNotNull(captureRequest, "captureRequest must not be null");
51 this.previewSize = checkNotNull(previewSize, "previewSize must not be null");
52 checkNotNull(parameters, "parameters must not be null");
63 checkNotNull(parameters, "parameters must not be null");
SizeAreaComparator.java 39 checkNotNull(size, "size must not be null");
40 checkNotNull(size2, "size2 must not be null");
68 checkNotNull(sizes, "sizes must not be null");
  /external/jsilver/src/com/google/streamhtmlparser/impl/
StateTableTransition.java 57 Preconditions.checkNotNull(expression);
58 Preconditions.checkNotNull(from);
59 Preconditions.checkNotNull(to);
  /external/droiddriver/src/com/google/android/droiddriver/util/
Preconditions.java 34 public static <T> T checkNotNull(T reference) {
  /frameworks/base/core/java/android/hardware/camera2/utils/
ParamsUtils.java 47 checkNotNull(size, "size must not be null");
65 checkNotNull(rect, "rect must not be null");
87 checkNotNull(transform, "transform must not be null");
88 checkNotNull(rect, "rect must not be null");
106 checkNotNull(rect, "rect must not be null");
170 checkNotNull(source, "source must not be null");
171 checkNotNull(destination, "destination must not be null");
185 checkNotNull(r, "r must not be null");
186 checkNotNull(key, "key must not be null");
187 checkNotNull(defaultValue, "defaultValue must not be null")
    [all...]
SizeAreaComparator.java 38 checkNotNull(size, "size must not be null");
39 checkNotNull(size2, "size2 must not be null");
67 checkNotNull(sizes, "sizes must not be null");
  /external/guava/guava/src/com/google/common/collect/
ContiguousSet.java 18 import static com.google.common.base.Preconditions.checkNotNull;
43 return headSet(checkNotNull(toElement), false);
47 return headSetImpl(checkNotNull(toElement), inclusive);
51 checkNotNull(fromElement);
52 checkNotNull(toElement);
59 checkNotNull(fromElement);
60 checkNotNull(toElement);
66 return tailSet(checkNotNull(fromElement), true);
70 return tailSetImpl(checkNotNull(fromElement), inclusive);
EmptyImmutableSortedMultiset.java 17 import static com.google.common.base.Preconditions.checkNotNull;
75 checkNotNull(upperBound);
76 checkNotNull(boundType);
82 checkNotNull(lowerBound);
83 checkNotNull(boundType);
BstMutationRule.java 17 import static com.google.common.base.Preconditions.checkNotNull;
49 this.balancePolicy = checkNotNull(balancePolicy);
50 this.nodeFactory = checkNotNull(nodeFactory);
51 this.modifier = checkNotNull(modifier);
StandardRowSortedTable.java 19 import static com.google.common.base.Preconditions.checkNotNull;
97 checkNotNull(toElement);
104 checkNotNull(fromElement);
105 checkNotNull(toElement);
113 checkNotNull(fromElement);
150 checkNotNull(toKey);
157 checkNotNull(fromKey);
158 checkNotNull(toKey);
165 checkNotNull(fromKey);
BstOperations.java 17 import static com.google.common.base.Preconditions.checkNotNull;
42 checkNotNull(comparator);
71 checkNotNull(comparator);
72 checkNotNull(mutationRule);
92 checkNotNull(path);
93 checkNotNull(mutationRule);
164 checkNotNull(root);
165 checkNotNull(nodeFactory);
166 checkNotNull(balancePolicy);
182 checkNotNull(root)
    [all...]
  /external/guava/guava-gwt/src/com/google/common/collect/
SingletonImmutableMap_CustomFieldSerializer.java 19 import static com.google.common.base.Preconditions.checkNotNull;
38 Object key = checkNotNull(reader.readObject());
39 Object value = checkNotNull(reader.readObject());
  /frameworks/base/core/java/android/util/
Range.java 55 mLower = checkNotNull(lower, "lower must not be null");
56 mUpper = checkNotNull(upper, "upper must not be null");
112 checkNotNull(value, "value must not be null");
132 checkNotNull(range, "value must not be null");
174 checkNotNull(value, "value must not be null");
205 checkNotNull(range, "range must not be null");
237 checkNotNull(lower, "lower must not be null");
238 checkNotNull(upper, "upper must not be null");
273 checkNotNull(range, "range must not be null");
305 checkNotNull(lower, "lower must not be null")
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/finders/
ChainFinder.java 38 this.first = Preconditions.checkNotNull(first);
39 this.second = Preconditions.checkNotNull(second);
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
DuckTypingDispatcher.java 45 checkNotNull(targetClass, "targetClass must not be null");
46 checkNotNull(target, "target must not be null");
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
Script.java 75 checkNotNull("parameter", parameter);
92 checkNotNull("parameter", parameter);
93 checkNotNull("value", value);
119 checkNotNull("parameter", parameter);
136 checkNotNull("jClass", jClass);
137 checkNotNull("kClass", kClass);
227 checkNotNull("allocation", allocation);
251 checkNotNull("allocation", allocation);
260 checkNotNull("inputInfo", inputInfo);
261 checkNotNull("outputInfo", outputInfo)
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/
ExternalState.java 56 Preconditions.checkNotNull(name); // Developer error if it happens.
  /external/guava/guava/src/com/google/common/base/
Optional.java 19 import static com.google.common.base.Preconditions.checkNotNull;
84 return new Present<T>(checkNotNull(reference));
176 checkNotNull(optionals);
180 private final Iterator<Optional<T>> iterator = checkNotNull(optionals.iterator());
214 checkNotNull(defaultValue, "use orNull() instead of or(null)");
219 checkNotNull(secondChoice);
224 checkNotNull(supplier);
267 return checkNotNull(defaultValue, "use orNull() instead of or(null)");
272 return (Optional) checkNotNull(secondChoice);
276 return checkNotNull(supplier.get()
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionData.java 39 Util.checkNotNull(data);
93 Util.checkNotNull(key, "Key should not be null.");

Completed in 468 milliseconds

1 2 3 4 5 6 7 8 91011>>