/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/ui/ |
D | KeyguardTransitionAnimationFlowTest.kt | 66 val flow = underTest.sharedFlow(duration = 0.milliseconds, onStep = { it }) in zeroDurationThrowsException() constant 72 val flow = in startTimePlusDurationGreaterThanTransitionDurationThrowsException() constant 83 val flow = in onFinishRunsWhenSpecified() constant 99 val flow = in onCancelRunsWhenSpecified() constant 115 val flow = underTest.sharedFlow(duration = 100.milliseconds, onStep = { null }) in onStepReturnsNullEmitsNothing() constant 126 val flow = in usesStartTime() constant 154 val flow = in usesInterpolator() constant 178 val flow = underTest.sharedFlow(duration = 1000.milliseconds, onStep = { it * 2 }) in usesOnStepToDoubleValue() constant 197 val flow = in usesOnStepToDoubleValueWithState() constant 267 val flow = underTest.sharedFlow(duration = 1000.milliseconds, onStep = { it }) in sameFloatValueWithTheSameTransitionStateDoesNotEmitTwice() constant [all …]
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/shared/condition/ |
D | ConditionExtensionsTest.kt | 28 val flow = flowOf(true) in flowInitiallyTrue() constant 41 val flow = flowOf(false) in flowInitiallyFalse() constant 54 val flow = emptyFlow<Boolean>() in emptyFlowWithNoInitialValue() constant 65 val flow = emptyFlow<Boolean>() in emptyFlowWithInitialValueOfTrue() constant 81 val flow = emptyFlow<Boolean>() in emptyFlowWithInitialValueOfFalse() constant 97 val flow = MutableStateFlow(false) in conditionUpdatesWhenFlowEmitsNewValue() constant 118 val flow = MutableSharedFlow<Boolean>() in stoppingConditionUnsubscribesFromFlow() constant
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/log/table/ |
D | LogDiffsForTableTest.kt | 66 val flow = flowOf(true, true, false) in boolean_doesNotLogWhenNotCollected() constant 84 val flow = flowOf(true, true, false) in boolean_logsInitialWhenCollected() constant 115 val flow = flow { in boolean_logsUpdates() constant 162 val flow = flow { in boolean_doesNotLogIfSameValue() constant 213 val flow = MutableStateFlow(false) in boolean_worksForStateFlows() constant 264 val flow = flowOf(5, 6, 7) in int_doesNotLogWhenNotCollected() constant 282 val flow = flowOf(5, 6, 7) in int_logsInitialWhenCollected() constant 313 val flow = flow { in intNullable_logsNull() constant 364 val flow = flow { in int_logsUpdates() constant 411 val flow = flow { in int_doesNotLogIfSameValue() constant [all …]
|
/frameworks/base/packages/SettingsLib/Spa/tests/src/com/android/settingslib/spa/lifecycle/ |
D | FlowExtTest.kt | 37 val flow = flowOf(TEXT) in collectAsCallbackWithLifecycle() constant 49 val flow = MutableStateFlow(TEXT) in collectAsCallbackWithLifecycle_changed() constant
|
/frameworks/base/packages/SettingsLib/SpaPrivileged/tests/unit/src/com/android/settingslib/spaprivileged/settingsprovider/ |
D | SettingsGlobalChangeFlowTest.kt | 38 val flow = context.settingsGlobalChangeFlow(name = TEST_NAME, sendInitialValue = true) in settingsGlobalChangeFlow_sendInitialValueTrue() constant 45 val flow = context.settingsGlobalChangeFlow(name = TEST_NAME, sendInitialValue = false) in <lambda>() constant
|
D | SettingsSecureStringTest.kt | 60 val flow = context.settingsSecureStringFlow(TEST_NAME) in settingsSecureStringFlow_valueNotChanged() constant 70 val flow = context.settingsSecureStringFlow(TEST_NAME) in <lambda>() constant
|
D | SettingsSecureBooleanTest.kt | 78 val flow = context.settingsSecureBooleanFlow(TEST_NAME) in <lambda>() constant 88 val flow = context.settingsSecureBooleanFlow(TEST_NAME) in <lambda>() constant
|
D | SettingsGlobalBooleanTest.kt | 78 val flow = context.settingsGlobalBooleanFlow(TEST_NAME) in <lambda>() constant 88 val flow = context.settingsGlobalBooleanFlow(TEST_NAME) in <lambda>() constant
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/display/data/repository/ |
D | FakeDeviceStateRepository.kt | 24 private val flow = MutableStateFlow(DeviceStateRepository.DeviceState.UNKNOWN) constant in com.android.systemui.display.data.repository.FakeDeviceStateRepository
|
D | FakeFocusedDisplayRepository.kt | 31 private val flow = MutableStateFlow<Int>(Display.DEFAULT_DISPLAY) constant in com.android.systemui.display.data.repository.FakeFocusedDisplayRepository
|
D | FakeDisplayRepository.kt | 51 private val flow = MutableStateFlow<Set<Display>>(emptySet()) constant
|
/frameworks/base/packages/SettingsLib/SpaPrivileged/tests/unit/src/com/android/settingslib/spaprivileged/framework/common/ |
D | BroadcastReceiverFlowTest.kt | 55 val flow = context.broadcastReceiverFlow(INTENT_FILTER) in broadcastReceiverFlow_registered() constant 84 val flow = context.broadcastReceiverFlow(INTENT_FILTER) in <lambda>() constant
|
D | BroadcastReceiverAsUserFlowTest.kt | 64 val flow = context.broadcastReceiverAsUserFlow(INTENT_FILTER, USER_HANDLE) in <lambda>() constant 93 val flow = context.broadcastReceiverAsUserFlow(INTENT_FILTER, USER_HANDLE) in <lambda>() constant
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/ |
D | GlobalActionsLayoutLite.java | 64 Flow flow = findViewById(R.id.list_flow); in onUpdateList() local 71 Flow flow = findViewById(R.id.list_flow); in addToListView() local 77 View flow = findViewById(R.id.list_flow); in removeAllListViews() local
|
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/compose/ |
D | OverridableFlow.kt | 30 val flow = merge(overrideChannel.receiveAsFlow(), flow) constant
|
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/util/ |
D | StateFlowBridge.kt | 27 val flow = stateFlow.filterNotNull() constant
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/coroutines/ |
D | FlowTest.kt | 18 val flow = flowOf(0, 1, 2) in <lambda>() constant
|
/frameworks/base/packages/SettingsLib/SpaPrivileged/tests/robotests/src/com/android/settingslib/spaprivileged/settingsprovider/ |
D | SettingsSystemIntegerTest.kt | 92 val flow = context.settingsSystemIntegerFlow(TEST_NAME, TEST_SETTING_DEFAULT_VALUE) in <lambda>() constant 105 val flow = context.settingsSystemIntegerFlow(TEST_NAME, TEST_SETTING_DEFAULT_VALUE) in <lambda>() constant
|
/frameworks/base/packages/SettingsLib/Spa/tests/src/com/android/settingslib/spa/framework/util/ |
D | StateFlowBridgeTest.kt | 37 val flow = stateFlowBridge.flow in <lambda>() constant
|
/frameworks/libs/systemui/tracinglib/core/src/coroutines/flow/ |
D | FlowExt.kt | 70 private val flow: SharedFlow<T>, constant in com.android.app.tracing.coroutines.flow.TracedSharedFlow 85 private val flow: StateFlow<T>, constant in com.android.app.tracing.coroutines.flow.TracedStateFlow 94 private val flow: MutableSharedFlow<T>, constant in com.android.app.tracing.coroutines.flow.TracedMutableSharedFlow 116 private val flow: MutableStateFlow<T>, constant in com.android.app.tracing.coroutines.flow.TracedMutableStateFlow
|
/frameworks/base/packages/SettingsLib/SpaPrivileged/tests/unit/src/com/android/settingslib/spaprivileged/model/app/ |
D | PermissionsChangedFlowTest.kt | 58 val flow = context.permissionsChangedFlow(APP) in <lambda>() constant
|
D | AppOpsRepositoryTest.kt | 70 val flow = context.appOpsManager.opModeFlow(AppOpsManager.OP_MANAGE_MEDIA, APP) in <lambda>() constant
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/demomode/ |
D | DemoModeControllerTest.kt | 78 val flow = underTest.demoFlowForCommand(TEST_COMMAND) in <lambda>() constant
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/events/ |
D | SystemEventCoordinatorTest.kt | 99 private val flow = MutableSharedFlow<Unit>() constant in com.android.systemui.statusbar.events.SystemEventCoordinatorTest.FakeConnectedDisplayInteractor
|
/frameworks/base/packages/SystemUI/utils/kairos/docs/ |
D | flow-to-kairos-cheatsheet.md | 146 ### I want to sample a State 163 ### I want to sample an Events
|