Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 4 of 4) sorted by relevance

/appcompat/appcompat/src/androidTest/java/androidx/appcompat/app/
DNightModeActivity.java127 public void expectOnConfigurationChange(long timeout) throws InterruptedException { in expectOnConfigurationChange() argument
132 mOnConfigurationChangeSemaphore.tryAcquire(timeout, TimeUnit.MILLISECONDS); in expectOnConfigurationChange()
156 public void expectOnCreate(long timeout) throws InterruptedException { in expectOnCreate() argument
161 mOnCreateSemaphore.tryAcquire(timeout, TimeUnit.MILLISECONDS); in expectOnCreate()
185 public void expectOnDestroy(long timeout) throws InterruptedException { in expectOnDestroy() argument
190 mOnDestroySemaphore.tryAcquire(timeout, TimeUnit.MILLISECONDS); in expectOnDestroy()
DLocalesUpdateActivity.java147 public void expectOnConfigurationChange(long timeout) throws InterruptedException { in expectOnConfigurationChange() argument
152 mOnConfigurationChangeSemaphore.tryAcquire(timeout, TimeUnit.MILLISECONDS); in expectOnConfigurationChange()
174 public void expectOnCreate(long timeout) throws InterruptedException { in expectOnCreate() argument
179 mOnCreateSemaphore.tryAcquire(timeout, TimeUnit.MILLISECONDS); in expectOnCreate()
201 public void expectOnDestroy(long timeout) throws InterruptedException { in expectOnDestroy() argument
206 mOnDestroySemaphore.tryAcquire(timeout, TimeUnit.MILLISECONDS); in expectOnDestroy()
/appcompat/appcompat/src/main/java/androidx/appcompat/widget/
DTooltipCompatHandler.java170 final long timeout; in show() local
172 timeout = LONG_CLICK_HIDE_TIMEOUT_MS; in show()
175 timeout = HOVER_HIDE_TIMEOUT_SHORT_MS - ViewConfiguration.getLongPressTimeout(); in show()
177 timeout = HOVER_HIDE_TIMEOUT_MS - ViewConfiguration.getLongPressTimeout(); in show()
180 mAnchor.postDelayed(mHideRunnable, timeout); in show()
/appcompat/appcompat/src/androidTest/java/androidx/appcompat/widget/
DAppCompatAttributeTest.kt169 fun busyWait(timeout: Int, predicate: () -> Boolean): Boolean { in busyWait()
170 val deadline = System.currentTimeMillis() + timeout in busyWait()
183 val timeout = SETTINGS_TIMEOUT / 1000F in assumeDebugViewAttributes() constant
186 "Assumed $DEBUG_VIEW_ATTRIBUTES would be $expected within $timeout seconds", in assumeDebugViewAttributes()