Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/coroutines/
H A DFlow.kt47 ): FlowValue<T?> {
72 ): FlowValue<List<T>> {
82 interface FlowValue<T> : ReadOnlyProperty<Any?, T> { regex
86 private class FlowValueImpl<T>(private val block: () -> T) : FlowValue<T> {
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/repository/
H A DTrustRepositoryTest.kt26 import com.android.systemui.coroutines.FlowValue
58 private lateinit var isCurrentUserTrusted: FlowValue<Boolean?>
59 private lateinit var isCurrentUserTrustManaged: FlowValue<Boolean?>
H A DDeviceEntryFaceAuthRepositoryTest.kt46 import com.android.systemui.coroutines.FlowValue
139 private lateinit var authStatus: FlowValue<FaceAuthenticationStatus?>
140 private lateinit var detectStatus: FlowValue<FaceDetectionStatus?>
141 private lateinit var authRunning: FlowValue<Boolean?>
142 private lateinit var bypassEnabled: FlowValue<Boolean?>
143 private lateinit var lockedOut: FlowValue<Boolean?>
144 private lateinit var canFaceAuthRun: FlowValue<Boolean?>
145 private lateinit var authenticated: FlowValue<Boolean?>
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/display/domain/interactor/
H A DConnectedDisplayInteractorTest.kt26 import com.android.systemui.coroutines.FlowValue
132 private fun TestScope.lastValue(): FlowValue<State?> =
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/display/data/repository/
H A DDisplayRepositoryTest.kt26 import com.android.systemui.coroutines.FlowValue
171 private fun TestScope.latestDisplayFlowValue(): FlowValue<Set<Display>?> {
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/domain/interactor/
H A DBouncerMessageInteractorTest.kt32 import com.android.systemui.coroutines.FlowValue
64 private lateinit var bouncerMessage: FlowValue<BouncerMessageModel?>
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyboard/data/repository/
H A DKeyboardRepositoryTest.kt26 import com.android.systemui.coroutines.FlowValue
201 private fun <T> TestScope.collectLastValueImmediately(flow: Flow<T>): FlowValue<T?> {