Home
last modified time | relevance | path

Searched refs:expectedState (Results 1 – 8 of 8) sorted by relevance

/external/exoplayer/tree/testutils/src/main/java/com/google/android/exoplayer2/testutil/
DTestDownloadManagerListener.java140 public void assertState(String taskId, @State int expectedState, int timeoutMs) { in assertState() argument
141 assertStateInternal(taskId, expectedState, timeoutMs); in assertState()
144 private void assertStateInternal(String taskId, int expectedState, int timeoutMs) { in assertStateInternal() argument
153 if (expectedState == state) { in assertStateInternal()
157 fail("Didn't receive expected state: " + expectedState); in assertStateInternal()
DTestExoPlayer.java311 public static void runUntilPlaybackState(Player player, @Player.State int expectedState) { in runUntilPlaybackState() argument
313 if (player.getPlaybackState() == expectedState) { in runUntilPlaybackState()
322 if (state == expectedState) { in runUntilPlaybackState()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/
DStateFlow.kt267 private fun updateState(expectedState: Any?, newState: Any): Boolean { in compareAndSet()
272 if (expectedState != null && oldState != expectedState) return false // CAS support in compareAndSet()
/external/robolectric-shadows/shadows/supportv4/src/test/java/org/robolectric/shadows/support/v4/
DSupportFragmentControllerTest.java161 Bundle expectedState = new Bundle(); in savesInstanceState() local
162 expectedState.putBoolean("isRestored", true); in savesInstanceState()
163 activity.setState(expectedState); in savesInstanceState()
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
DesextcTextureCubeMapArrayFBOIncompleteness.hpp77 glw::GLboolean checkState(glw::GLint expectedState, const char* message);
/external/icu/icu4c/source/test/intltest/
Dunits_test.cpp129 const Convertibility expectedState; in testConversionCapability() member
153 testCase.expectedState, convertibility); in testConversionCapability()
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/offline/
DDownloadManagerTest.java708 private TaskWrapper assertState(@State int expectedState) { in assertState() argument
709 downloadManagerListener.assertState(taskId, expectedState, ASSERT_TRUE_TIMEOUT); in assertState()
/external/skia/tests/
DGrClipStackTest.cpp60 GrClipStack::ClipState expectedState() const { return fExpectedState; } in expectedState() function in __anon855f91320111::TestCase
69 GrClipStack::ClipState expectedState, in TestCase() argument
76 , fExpectedState(expectedState) {} in TestCase()