Home
last modified time | relevance | path

Searched refs:shouldIdleConstantly (Results 1 – 2 of 2) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowLooper.java212 public static void idleMainLooperConstantly(boolean shouldIdleConstantly) { in idleMainLooperConstantly() argument
213 getShadowMainLooper().idleConstantly(shouldIdleConstantly); in idleMainLooperConstantly()
276 public void idleConstantly(boolean shouldIdleConstantly) { in idleConstantly() argument
277 getScheduler().idleConstantly(shouldIdleConstantly); in idleConstantly()
/external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
DScheduler.java323 public void idleConstantly(boolean shouldIdleConstantly) { in idleConstantly() argument
324 setIdleState(shouldIdleConstantly ? CONSTANT_IDLE : UNPAUSED); in idleConstantly()