Home
last modified time | relevance | path

Searched refs:FlowValue (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/coroutines/
DFlow.kt47 ): FlowValue<T?> { in collectLastValue()
72 ): FlowValue<List<T>> { in collectValues()
82 interface FlowValue<T> : ReadOnlyProperty<Any?, T> { interface
86 private class FlowValueImpl<T>(private val block: () -> T) : FlowValue<T> { in invoke()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/display/data/repository/
DDisplayRepositoryTest.kt28 import com.android.systemui.coroutines.FlowValue in <lambda>()
463 private fun TestScope.latestDisplayFlowValue(): FlowValue<Set<Display>?> { in <lambda>()
470 private fun TestScope.latestDefaultDisplayOffFlowValue(): FlowValue<Boolean?> { in <lambda>()
476 private fun TestScope.lastPendingDisplay(): FlowValue<DisplayRepository.PendingDisplay?> { in <lambda>()
488 private fun TestScope.lastDisplayAdditionEvent(): FlowValue<Display?> { in <lambda>()
DDeviceStateRepositoryTest.kt25 import com.android.systemui.coroutines.FlowValue
155 private fun TestScope.displayState(): FlowValue<DeviceState?> { in displayState()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/repository/
DTrustRepositoryTest.kt25 import com.android.systemui.coroutines.FlowValue
58 private lateinit var isCurrentUserTrusted: FlowValue<Boolean?>
59 private lateinit var isCurrentUserTrustManaged: FlowValue<Boolean?>
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/display/domain/interactor/
DConnectedDisplayInteractorTest.kt30 import com.android.systemui.coroutines.FlowValue in <lambda>()
329 private fun TestScope.lastValue(): FlowValue<State?> = in <lambda>()
332 private fun TestScope.lastPendingDisplay(): FlowValue<PendingDisplay?> = in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/deviceentry/data/repository/
DDeviceEntryFaceAuthRepositoryTest.kt45 import com.android.systemui.coroutines.FlowValue
149 private lateinit var authStatus: FlowValue<FaceAuthenticationStatus?>
150 private lateinit var detectStatus: FlowValue<FaceDetectionStatus?>
151 private lateinit var authRunning: FlowValue<Boolean?>
152 private lateinit var bypassEnabled: FlowValue<Boolean?>
153 private lateinit var lockedOut: FlowValue<Boolean?>
154 private lateinit var canFaceAuthRun: FlowValue<Boolean?>
155 private lateinit var authenticated: FlowValue<Boolean?>
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyboard/data/repository/
DKeyboardRepositoryTest.kt27 import com.android.systemui.coroutines.FlowValue in <lambda>()
201 private fun <T> TestScope.collectLastValueImmediately(flow: Flow<T>): FlowValue<T?> { in <lambda>()