Home
last modified time | relevance | path

Searched refs:offsetBeforeInterruption (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/
DElement.kt125 var offsetBeforeInterruption = Offset.Unspecified in <lambda>() variable in com.android.compose.animation.scene.Element.State
504 getValueBeforeInterruption = { stateInContent.offsetBeforeInterruption }, in Placeable()
505 setValueBeforeInterruption = { stateInContent.offsetBeforeInterruption = it }, in Placeable()
864 stateInContent.offsetBeforeInterruption = Offset.Unspecified in prepareInterruption()
889 if (previousState != null && state.offsetBeforeInterruption == Offset.Unspecified) { in reconcileStates()
900 ?.takeIf { it.offsetBeforeInterruption != Offset.Unspecified } in reconcileStates()
908 fromContentState.offsetBeforeInterruption != Offset.Unspecified && in reconcileStates()
909 toContentState.offsetBeforeInterruption == Offset.Unspecified in reconcileStates()
917 toContentState.offsetBeforeInterruption != Offset.Unspecified && in reconcileStates()
918 fromContentState.offsetBeforeInterruption == Offset.Unspecified in reconcileStates()
[all …]
/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/
DElementTest.kt1338 assertThat(stateInC.offsetBeforeInterruption).isEqualTo(Offset.Unspecified) in <lambda>()