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

1 2 3 4 5 6

  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
RecyclingBitmapDrawable.java 63 checkState();
84 checkState();
88 private synchronized void checkState() {
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
RecyclingBitmapDrawable.java 63 checkState();
84 checkState();
88 private synchronized void checkState() {
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
RecyclingBitmapDrawable.java 63 checkState();
84 checkState();
88 private synchronized void checkState() {
  /external/guava/guava/src/com/google/common/cache/
CacheBuilder.java 22 import static com.google.common.base.Preconditions.checkState;
250 checkState(keyEquivalence == null, "key equivalence was already set to %s", keyEquivalence);
267 checkState(valueEquivalence == null,
288 checkState(this.initialCapacity == UNSET_INT, "initial capacity was already set to %s",
318 checkState(this.concurrencyLevel == UNSET_INT, "concurrency level was already set to %s",
343 checkState(this.maximumSize == UNSET_INT, "maximum size was already set to %s",
345 checkState(this.maximumWeight == UNSET_INT, "maximum weight was already set to %s",
347 checkState(this.weigher == null, "maximum size can not be combined with weigher");
373 checkState(this.maximumWeight == UNSET_INT, "maximum weight was already set to %s",
375 checkState(this.maximumSize == UNSET_INT, "maximum size was already set to %s"
    [all...]
  /external/guava/guava/src/com/google/common/base/
AbstractIterator.java 19 import static com.google.common.base.Preconditions.checkState;
51 checkState(state != State.FAILED);
Stopwatch.java 20 import static com.google.common.base.Preconditions.checkState;
111 checkState(!isRunning);
126 checkState(isRunning);
Preconditions.java 127 public static void checkState(boolean expression) {
142 public static void checkState(
168 public static void checkState(boolean expression,
  /external/guava/guava/src/com/google/common/collect/
AbstractIterator.java 19 import static com.google.common.base.Preconditions.checkState;
130 checkState(state != State.FAILED);
BstPath.java 18 import static com.google.common.base.Preconditions.checkState;
71 checkState(hasPrefix());
MapMaker.java 20 import static com.google.common.base.Preconditions.checkState;
161 checkState(keyEquivalence == null, "key equivalence was already set to %s", keyEquivalence);
181 checkState(valueEquivalence == null,
204 checkState(this.initialCapacity == UNSET_INT, "initial capacity was already set to %s",
239 checkState(this.maximumSize == UNSET_INT, "maximum size was already set to %s",
272 checkState(this.concurrencyLevel == UNSET_INT, "concurrency level was already set to %s",
338 checkState(keyStrength == null, "Key strength was already set to %s", keyStrength);
411 checkState(valueStrength == null, "Value strength was already set to %s", valueStrength);
477 checkState(expireAfterWriteNanos == UNSET_INT, "expireAfterWrite was already set to %s ns",
479 checkState(expireAfterAccessNanos == UNSET_INT, "expireAfterAccess was already set to %s ns"
    [all...]
BstNode.java 18 import static com.google.common.base.Preconditions.checkState;
106 checkState(child != null);
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/
AppNotIdleException.java 19 import static com.google.common.base.Preconditions.checkState;
51 checkState(Looper.myLooper() == Looper.getMainLooper());
GraphHolder.java 20 import static com.google.common.base.Preconditions.checkState;
67 checkState(instance.compareAndSet(null, holder), "Espresso already initialized.");
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Stopwatch.java 20 import static com.google.common.base.Preconditions.checkState;
110 checkState(!isRunning);
125 checkState(isRunning);
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/
EspressoKey.java 19 import static com.google.common.base.Preconditions.checkState;
106 checkState(builderKeyCode > 0 && builderKeyCode < KeyEvent.getMaxKeyCode(),
AdapterDataLoaderAction.java 22 import static com.google.common.base.Preconditions.checkState;
63 checkState(performed, "perform hasn't been called yet!");
105 checkState(!performed, "perform called 2x!");
  /external/guava/guava-tests/test/com/google/common/base/
PreconditionsTest.java 81 Preconditions.checkState(true);
86 Preconditions.checkState(false);
93 Preconditions.checkState(true, IGNORE_ME);
98 Preconditions.checkState(false, new Message());
107 Preconditions.checkState(false, null);
115 Preconditions.checkState(true, "%s", IGNORE_ME);
120 Preconditions.checkState(false, FORMAT, 5);
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/base/
LooperIdlingResource.java 20 import static com.google.common.base.Preconditions.checkState;
47 checkState(Looper.getMainLooper() != monitoredLooper, "Not for use with main looper.");
83 checkState(monitoredHandler.postAtFrontOfQueue(new Initializer(idleHandler)),
UiControllerImpl.java 21 import static com.google.common.base.Preconditions.checkState;
172 checkState(Looper.myLooper() == mainLooper, "Expecting to be on main thread!");
192 checkState(injectTask.isDone(), "Key injection was signaled - but it wasnt done.");
210 checkState(Looper.myLooper() == mainLooper, "Expecting to be on main thread!");
225 checkState(injectTask.isDone(), "Key injection was signaled - but it wasnt done.");
245 checkState(Looper.myLooper() == mainLooper, "Expecting to be on main thread!");
311 checkState(Looper.myLooper() == mainLooper, "Expecting to be on main thread!");
377 checkState(Looper.myLooper() == mainLooper, "Expecting to be on main thread!");
378 checkState(!IdleCondition.DELAY_HAS_PAST.isSignaled(conditionSet), "recursion detected!");
427 checkState(!looping, "Recursive looping detected!")
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 192 checkState();
353 checkState();
377 checkState();
386 checkState();
409 checkState();
514 checkState();
528 checkState();
631 checkState();
635 private void checkState() {
652 checkState();
    [all...]
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/contrib/
CountingIdlingResource.java 20 import static com.google.common.base.Preconditions.checkState;
185 checkState(counterVal > -1, "Counter has been corrupted!");
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckClassAdapter.java 273 checkState();
307 checkState();
320 checkState();
340 checkState();
363 checkState();
388 checkState();
417 checkState();
423 checkState();
431 checkState();
444 private void checkState() {
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 122 checkState(STATE_INITIALIZED, STATE_ADDING);
176 checkState(STATE_ADDING, STATE_ADDING);
264 checkState(STATE_ADDING, STATE_INITIALIZED);
313 checkState(STATE_INITIALIZED, STATE_DRAWING);
340 checkState(STATE_DRAWING, STATE_DRAWING);
355 checkState(STATE_DRAWING, STATE_INITIALIZED);
363 private void checkState(int oldState, int newState) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractBiMap.java 20 import static com.google.common.base.Preconditions.checkState;
70 checkState(delegate == null);
71 checkState(inverse == null);
205 checkState(entry != null);
320 checkState(contains(this), "entry no longer in map");
328 checkState(Objects.equal(value, get(getKey())),
337 checkState(entry != null);
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Preconditions.java 119 public static void checkState(boolean expression) {
134 public static void checkState(boolean expression, Object errorMessage) {
159 public static void checkState(boolean expression,

Completed in 412 milliseconds

1 2 3 4 5 6