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

1 2 3 4

  /external/guava/src/com/google/common/collect/
Iterables.java 41 import static com.google.common.base.Preconditions.checkNotNull;
59 checkNotNull(iterable);
113 ? ((Collection<?>) removeFrom).removeAll(checkNotNull(elementsToRemove))
131 ? ((Collection<?>) removeFrom).retainAll(checkNotNull(elementsToRetain))
152 (List<T>) removeFrom, checkNotNull(predicate));
295 checkNotNull(iterable);
339 checkNotNull(a);
340 checkNotNull(b);
356 checkNotNull(a);
357 checkNotNull(b)
    [all...]
ByFunctionOrdering.java 22 import static com.google.common.base.Preconditions.checkNotNull;
40 this.function = checkNotNull(function);
41 this.ordering = checkNotNull(ordering);
Iterators.java 38 import static com.google.common.base.Preconditions.checkNotNull;
106 checkNotNull(iterator);
163 checkNotNull(elementsToRemove);
187 checkNotNull(predicate);
209 checkNotNull(elementsToRetain);
326 checkNotNull(addTo);
374 checkNotNull(iterable);
429 checkNotNull(a);
430 checkNotNull(b);
446 checkNotNull(a)
    [all...]
Lists.java 40 import static com.google.common.base.Preconditions.checkNotNull;
81 checkNotNull(elements); // for GWT
108 checkNotNull(elements); // for GWT
131 checkNotNull(elements); // for GWT
245 this.rest = checkNotNull(rest);
290 this.rest = checkNotNull(rest);
353 this.fromList = checkNotNull(fromList);
354 this.function = checkNotNull(function);
426 this.fromList = checkNotNull(fromList);
427 this.function = checkNotNull(function)
    [all...]
Collections2.java 33 import static com.google.common.base.Preconditions.checkNotNull;
61 checkNotNull(self);
111 checkNotNull(unfiltered), checkNotNull(predicate));
204 checkNotNull(collection);
214 checkNotNull(collection);
267 this.fromCollection = checkNotNull(fromCollection);
268 this.function = checkNotNull(function);
ComparatorOrdering.java 20 import static com.google.common.base.Preconditions.checkNotNull;
35 this.comparator = checkNotNull(comparator);
NaturalOrdering.java 20 import static com.google.common.base.Preconditions.checkNotNull;
34 checkNotNull(right); // left null is caught later
ImmutableSortedSet.java 20 import static com.google.common.base.Preconditions.checkNotNull;
121 Object[] array = { checkNotNull(element) };
194 checkNotNull(elements); // for GWT
206 array[i] = checkNotNull(elements[i]);
314 checkNotNull(comparator);
329 checkNotNull(comparator);
373 checkNotNull(e);
397 list.add(checkNotNull(elements.next()));
490 this.comparator = checkNotNull(comparator);
599 return headSetImpl(checkNotNull(toElement))
    [all...]
ImmutableCollection.java 20 import static com.google.common.base.Preconditions.checkNotNull;
290 checkNotNull(elements); // for GWT
310 checkNotNull(elements); // for GWT
330 checkNotNull(elements); // for GWT
SingletonImmutableMap.java 25 import static com.google.common.base.Preconditions.checkNotNull;
47 this.entry = checkNotNull(entry); // checkNotNull for GWT.
48 this.singleKey = checkNotNull(entry.getKey()); // checkNotNull for GWT.
49 this.singleValue = checkNotNull(entry.getValue()); // checkNotNull for GWT.
  /external/guava/src/com/google/common/util/concurrent/
DaemonThreadFactory.java 35 Preconditions.checkNotNull(factory);
SimpleTimeLimiter.java 20 import static com.google.common.base.Preconditions.checkNotNull;
64 checkNotNull(executor);
84 checkNotNull(target);
85 checkNotNull(interfaceType);
86 checkNotNull(timeoutUnit);
117 checkNotNull(callable);
118 checkNotNull(timeoutUnit);
ExecutionList.java 61 Preconditions.checkNotNull(runnable, "Runnable was null.");
62 Preconditions.checkNotNull(executor, "Executor was null.");
  /packages/apps/Tag/src/com/android/apps/tag/record/
MimeRecord.java 43 mType = Preconditions.checkNotNull(mimeType);
44 Preconditions.checkNotNull(content);
87 Preconditions.checkNotNull(type);
88 Preconditions.checkNotNull(data);
TextRecord.java 47 mLanguageCode = Preconditions.checkNotNull(languageCode);
48 mText = Preconditions.checkNotNull(text);
130 Preconditions.checkNotNull(text);
131 Preconditions.checkNotNull(locale);
  /external/guava/src/com/google/common/base/
Joiner.java 20 import static com.google.common.base.Preconditions.checkNotNull;
72 this.separator = checkNotNull(separator);
85 checkNotNull(appendable);
182 checkNotNull(nullText);
188 checkNotNull(nullText); // weird, just to satisfy NullPointerTester!
206 checkNotNull(appendable, "appendable");
207 checkNotNull(parts, "parts");
226 checkNotNull(nullText); // weird, just to satisfy NullPointerTester!
230 checkNotNull(kvs); // weird, just to satisfy NullPointerTester!
242 return new MapJoiner(this, checkNotNull(keyValueSeparator))
    [all...]
Suppliers.java 48 Preconditions.checkNotNull(function);
49 Preconditions.checkNotNull(first);
80 return new MemoizingSupplier<T>(Preconditions.checkNotNull(delegate));
137 this.delegate = Preconditions.checkNotNull(delegate);
179 return new ThreadSafeSupplier<T>(Preconditions.checkNotNull(delegate));
CharMatcher.java 21 import static com.google.common.base.Preconditions.checkNotNull;
247 checkNotNull(sequence);
254 checkNotNull(sequence);
275 checkNotNull(sequence);
282 return checkNotNull(other);
285 checkNotNull(other);
303 checkNotNull(sequence);
312 checkNotNull(sequence);
319 checkNotNull(sequence);
331 checkNotNull(replacement)
    [all...]
Predicates.java 21 import static com.google.common.base.Preconditions.checkNotNull;
128 checkNotNull(first), checkNotNull(second)));
167 checkNotNull(first), checkNotNull(second)));
254 this.predicate = checkNotNull(predicate);
382 this.clazz = checkNotNull(clazz);
435 this.target = checkNotNull(target);
473 this.p = checkNotNull(p);
474 this.f = checkNotNull(f)
    [all...]
Objects.java 113 this.instance = Preconditions.checkNotNull(instance);
122 return addValue(Preconditions.checkNotNull(name) + "=" + value);
  /development/samples/NFCDemo/src/com/example/android/nfc/simulator/
FakeTagsActivity.java 47 Preconditions.checkNotNull(text);
48 Preconditions.checkNotNull(locale);
59 Preconditions.checkNotNull(type);
60 Preconditions.checkNotNull(data);
  /external/guava/src/com/google/common/io/
PatternFilenameFilter.java 51 this.pattern = Preconditions.checkNotNull(pattern);
  /external/guava/src/com/google/common/primitives/
Primitives.java 19 import static com.google.common.base.Preconditions.checkNotNull;
83 return WRAPPER_TO_PRIMITIVE_TYPE.containsKey(checkNotNull(type));
96 checkNotNull(type);
114 checkNotNull(type);
  /packages/apps/Camera/src/com/android/camera/ui/
ResourceTexture.java 32 mContext = Util.checkNotNull(context);
  /development/samples/NFCDemo/src/com/example/android/nfc/record/
TextRecord.java 43 mLanguageCode = Preconditions.checkNotNull(languageCode);
44 mText = Preconditions.checkNotNull(text);

Completed in 842 milliseconds

1 2 3 4