HomeSort by relevance Sort by last modified time
    Searched refs:checkNotNull (Results 126 - 150 of 348) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
PercentEscaper.java 19 import static com.google.android.mail.common.base.Preconditions.checkNotNull;
119 checkNotNull(safeChars); // eager for GWT.
191 checkNotNull(s);
Preconditions.java 175 public static <T> T checkNotNull(T reference) {
192 public static <T> T checkNotNull(T reference, Object errorMessage) {
216 public static <T> T checkNotNull(T reference, String errorMessageTemplate,
  /external/guava/guava/src/com/google/common/primitives/
Booleans.java 21 import static com.google.common.base.Preconditions.checkNotNull;
135 checkNotNull(array, "array");
136 checkNotNull(target, "target");
242 checkNotNull(separator);
318 // checkNotNull for GWT (do not optimize)
319 array[i] = (Boolean) checkNotNull(boxedArray[i]);
406 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
Chars.java 21 import static com.google.common.base.Preconditions.checkNotNull;
166 checkNotNull(array, "array");
167 checkNotNull(target, "target");
360 checkNotNull(separator);
434 // checkNotNull for GWT (do not optimize)
435 array[i] = (Character) checkNotNull(boxedArray[i]);
522 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
Doubles.java 21 import static com.google.common.base.Preconditions.checkNotNull;
155 checkNotNull(array, "array");
156 checkNotNull(target, "target");
304 checkNotNull(separator);
377 // checkNotNull for GWT (do not optimize)
378 array[i] = (Double) checkNotNull(boxedArray[i]);
468 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
Floats.java 21 import static com.google.common.base.Preconditions.checkNotNull;
152 checkNotNull(array, "array");
153 checkNotNull(target, "target");
301 checkNotNull(separator);
374 // checkNotNull for GWT (do not optimize)
375 array[i] = (Float) checkNotNull(boxedArray[i]);
465 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
Ints.java 21 import static com.google.common.base.Preconditions.checkNotNull;
173 checkNotNull(array, "array");
174 checkNotNull(target, "target");
369 checkNotNull(separator);
441 // checkNotNull for GWT (do not optimize)
442 array[i] = (Integer) checkNotNull(boxedArray[i]);
529 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
Longs.java 21 import static com.google.common.base.Preconditions.checkNotNull;
143 checkNotNull(array, "array");
144 checkNotNull(target, "target");
353 checkNotNull(separator);
426 // checkNotNull for GWT (do not optimize)
427 array[i] = (Long) checkNotNull(boxedArray[i]);
514 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
Shorts.java 21 import static com.google.common.base.Preconditions.checkNotNull;
171 checkNotNull(array, "array");
172 checkNotNull(target, "target");
366 checkNotNull(separator);
439 // checkNotNull for GWT (do not optimize)
440 array[i] = (Short) checkNotNull(boxedArray[i]);
527 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
UnsignedBytes.java 20 import static com.google.common.base.Preconditions.checkNotNull;
165 checkNotNull(separator);
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Chars.java 21 import static com.google.common.base.Preconditions.checkNotNull;
164 checkNotNull(array, "array");
165 checkNotNull(target, "target");
309 checkNotNull(separator);
383 // checkNotNull for GWT (do not optimize)
384 array[i] = (Character) checkNotNull(boxedArray[i]);
471 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
Ints.java 21 import static com.google.common.base.Preconditions.checkNotNull;
168 checkNotNull(array, "array");
169 checkNotNull(target, "target");
313 checkNotNull(separator);
385 // checkNotNull for GWT (do not optimize)
386 array[i] = (Integer) checkNotNull(boxedArray[i]);
473 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
Longs.java 21 import static com.google.common.base.Preconditions.checkNotNull;
141 checkNotNull(array, "array");
142 checkNotNull(target, "target");
286 checkNotNull(separator);
359 // checkNotNull for GWT (do not optimize)
360 array[i] = (Long) checkNotNull(boxedArray[i]);
447 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
Shorts.java 21 import static com.google.common.base.Preconditions.checkNotNull;
169 checkNotNull(array, "array");
170 checkNotNull(target, "target");
314 checkNotNull(separator);
387 // checkNotNull for GWT (do not optimize)
388 array[i] = (Short) checkNotNull(boxedArray[i]);
475 array[start + index] = checkNotNull(element); // checkNotNull for GWT (do not optimize)
  /development/tools/idegen/src/com/android/idegen/
AggregatedModule.java 46 this.aggregatedModuleName = Preconditions.checkNotNull(aggregatedName);
47 this.modules = Preconditions.checkNotNull(modules);
  /external/guava/guava/src/com/google/common/base/
Stopwatch.java 19 import static com.google.common.base.Preconditions.checkNotNull;
92 this.ticker = checkNotNull(ticker);
  /external/guava/guava/src/com/google/common/collect/
AbstractSortedMultiset.java 17 import static com.google.common.base.Preconditions.checkNotNull;
45 this.comparator = checkNotNull(comparator);
BstInOrderPath.java 17 import static com.google.common.base.Preconditions.checkNotNull;
52 checkNotNull(path);
BstMutationResult.java 17 import static com.google.common.base.Preconditions.checkNotNull;
68 this.modificationResult = checkNotNull(modificationResult);
ReverseNaturalOrdering.java 19 import static com.google.common.base.Preconditions.checkNotNull;
34 checkNotNull(left); // right null is caught later
ReverseOrdering.java 19 import static com.google.common.base.Preconditions.checkNotNull;
34 this.forwardOrder = checkNotNull(forwardOrder);
Sets.java 20 import static com.google.common.base.Preconditions.checkNotNull;
133 * checkNotNull() here. For now, contemplate the irony that checking
137 checkNotNull(iterable);
344 return new TreeSet<E>(checkNotNull(comparator));
401 checkNotNull(collection);
584 checkNotNull(set1, "set1");
585 checkNotNull(set2, "set2");
643 checkNotNull(set1, "set1");
644 checkNotNull(set2, "set2");
680 checkNotNull(set1, "set1")
    [all...]
SingletonImmutableList.java 19 import static com.google.common.base.Preconditions.checkNotNull;
41 this.element = checkNotNull(element);
TransformedImmutableList.java 18 import static com.google.common.base.Preconditions.checkNotNull;
48 this.backingList = checkNotNull(backingList);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 20 import static com.google.common.base.Preconditions.checkNotNull;
130 * checkNotNull() here. For now, contemplate the irony that checking
134 checkNotNull(iterable);
341 return new TreeSet<E>(checkNotNull(comparator));
398 checkNotNull(collection);
572 checkNotNull(set1, "set1");
573 checkNotNull(set2, "set2");
631 checkNotNull(set1, "set1");
632 checkNotNull(set2, "set2");
668 checkNotNull(set1, "set1")
    [all...]

Completed in 991 milliseconds

1 2 3 4 56 7 8 91011>>