HomeSort by relevance Sort by last modified time
    Searched refs:checkNotNull (Results 1 - 25 of 472) 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)));
  /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/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/
IdlingResourceTimeoutException.java 19 import static com.google.common.base.Preconditions.checkNotNull;
35 super(String.format("Wait for %s to become idle timed out", checkNotNull(resourceNames)));
NoMatchingRootException.java 19 import static com.google.common.base.Preconditions.checkNotNull;
36 checkNotNull(rootMatcher);
37 checkNotNull(roots);
ViewInteraction.java 21 import static com.google.common.base.Preconditions.checkNotNull;
69 this.viewFinder = checkNotNull(viewFinder);
70 this.uiController = checkNotNull(uiController);
71 this.failureHandler = checkNotNull(failureHandler);
72 this.mainThreadExecutor = checkNotNull(mainThreadExecutor);
73 this.viewMatcher = checkNotNull(viewMatcher);
74 this.rootMatcherRef = checkNotNull(rootMatcherRef);
86 checkNotNull(viewActions);
98 this.rootMatcherRef.set(checkNotNull(rootMatcher));
103 checkNotNull(viewAction)
    [all...]
  /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/testing/support/src/android/support/test/internal/runner/
InstrumentationRegistry.java 19 import static android.support.test.internal.util.Checks.checkNotNull;
39 return checkNotNull(sInstrumentationRef.get(), "No instrumentation registered. " +
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/matcher/
BoundedMatcher.java 20 import static com.google.common.base.Preconditions.checkNotNull;
37 this.expectedType = checkNotNull(expectedType);
43 this.expectedType = checkNotNull(expectedType);
44 checkNotNull(otherInterfaces);
48 interfaceTypes[0] = checkNotNull(interfaceType1);
52 interfaceTypes[interfaceTypeIdx] = checkNotNull(intfType);
  /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");
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/
Tap.java 19 import static com.google.common.base.Preconditions.checkNotNull;
36 checkNotNull(uiController);
38 checkNotNull(coordinates);
39 checkNotNull(precision);
57 checkNotNull(uiController);
58 checkNotNull(coordinates);
59 checkNotNull(precision);
84 checkNotNull(uiController);
85 checkNotNull(coordinates);
86 checkNotNull(precision)
    [all...]
  /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);
  /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...]

Completed in 439 milliseconds

1 2 3 4 5 6 7 8 91011>>