/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/keyguard/ui/composable/blueprint/ |
D | ClockTransition.kt | 21 import com.android.compose.animation.scene.ElementKey 65 private fun TransitionBuilder.transitioningToLargeClock(largeClockElements: List<ElementKey>) { in TransitionBuilder() 78 private fun TransitionBuilder.transitioningToSmallClock(largeClockElements: List<ElementKey>) { in TransitionBuilder() 102 val largeClockElementKey = ElementKey("large-clock") 103 val smallClockElementKey = ElementKey("small-clock") 104 val smartspaceElementKey = ElementKey("smart-space") 113 val timeElementKey = ElementKey("weather-large-clock-time") 114 val dateElementKey = ElementKey("weather-large-clock-date") 115 val weatherIconElementKey = ElementKey("weather-large-clock-weather-icon") 116 val temperatureElementKey = ElementKey("weather-large-clock-temperature") [all …]
|
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/ |
D | TransitionDsl.kt | 225 element: ElementKey, in sceneDuringTransition() 243 element: ElementKey, in sceneDuringTransition() 267 element: ElementKey, in sceneDuringTransition() 283 element: ElementKey, in sceneDuringTransition() 312 element: ElementKey, in sceneDuringTransition() 359 fun anchoredTranslate(matcher: ElementMatcher, anchor: ElementKey) 387 anchor: ElementKey,
|
D | Key.kt | 54 val rootElementKey = ElementKey(debugName, identity) 62 class ElementKey( class 77 override fun matches(key: ElementKey, scene: SceneKey): Boolean { in matches() 89 override fun matches(key: ElementKey, scene: SceneKey): Boolean { in withIdentity()
|
D | MovableElement.kt | 35 key: ElementKey, in <lambda>() 55 key: ElementKey, in MovableElement() 73 private val element: ElementKey, 97 element: ElementKey, 113 private val element: ElementKey, 167 element: ElementKey, in shouldComposeMovableElement()
|
D | SceneTransitionLayoutImpl.kt | 68 internal val elements = mutableMapOf<ElementKey, Element>() in <lambda>() 76 private var _movableContents: SnapshotStateMap<ElementKey, MovableElementContent>? = null in <lambda>() 77 val movableContents: SnapshotStateMap<ElementKey, MovableElementContent> in <lambda>() 80 ?: SnapshotStateMap<ElementKey, MovableElementContent>().also { in <lambda>() 88 private var _sharedValues: MutableMap<ValueKey, MutableMap<ElementKey?, SharedValue<*, *>>>? = in <lambda>() 90 internal val sharedValues: MutableMap<ValueKey, MutableMap<ElementKey?, SharedValue<*, *>>> in <lambda>() 93 ?: mutableMapOf<ValueKey, MutableMap<ElementKey?, SharedValue<*, *>>>().also { in <lambda>()
|
D | ElementMatcher.kt | 22 fun matches(key: ElementKey, scene: SceneKey): Boolean in matches() 33 override fun matches(key: ElementKey, scene: SceneKey): Boolean { in matches()
|
D | UserActionDistanceScopeImpl.kt | 25 override fun ElementKey.targetSize(scene: SceneKey): IntSize? { in targetSize() 31 override fun ElementKey.targetOffset(scene: SceneKey): Offset? { in targetOffset()
|
D | SceneTransitionLayout.kt | 152 fun ElementKey.targetSize(scene: SceneKey): IntSize? in scene() method 158 fun ElementKey.targetOffset(scene: SceneKey): Offset? in scene() method 195 fun Modifier.element(key: ElementKey): Modifier in Modifier() 215 key: ElementKey, in Modifier() 241 key: ElementKey, in Modifier()
|
D | Scene.kt | 100 override fun Modifier.element(key: ElementKey): Modifier { in <lambda>() 106 key: ElementKey, in <lambda>() 115 key: ElementKey, in <lambda>()
|
D | SceneTransitions.kt | 278 private val cache = mutableMapOf<ElementKey, MutableMap<SceneKey, ElementTransformations>>() 280 internal fun transformations(element: ElementKey, scene: SceneKey): ElementTransformations { in transformations() 288 element: ElementKey, in computeTransformations() 345 element: ElementKey, in throwIfNotNull()
|
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/transformation/ |
D | AnchoredTranslate.kt | 22 import com.android.compose.animation.scene.ElementKey 31 private val anchor: ElementKey, 79 anchor: ElementKey, in throwMissingAnchorException()
|
D | AnchoredSize.kt | 21 import com.android.compose.animation.scene.ElementKey 30 private val anchor: ElementKey,
|
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/bouncer/ui/composable/ |
D | BouncerScene.kt | 25 import com.android.compose.animation.scene.ElementKey 40 val Background = ElementKey("BouncerBackground") 41 val Content = ElementKey("BouncerContent")
|
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/qs/ui/composable/ |
D | QuickSettings.kt | 35 import com.android.compose.animation.scene.ElementKey in <lambda>() 58 ElementKey("QuickSettingsContent", scenePicker = MovableElementScenePicker(SCENES)) in <lambda>() 59 val QuickQuickSettings = ElementKey("QuickQuickSettings") in <lambda>() 60 val SplitShadeQuickSettings = ElementKey("SplitShadeQuickSettings") in <lambda>() 61 val FooterActions = ElementKey("QuickSettingsFooterActions") in <lambda>()
|
/frameworks/base/packages/SystemUI/compose/scene/tests/utils/src/com/android/compose/animation/scene/ |
D | TestValues.kt | 34 val Foo = ElementKey("Foo") 35 val Bar = ElementKey("Bar")
|
D | TestMatchers.kt | 24 fun isElement(element: ElementKey, scene: SceneKey? = null): SemanticsMatcher { in isElement()
|
D | TestTransition.kt | 80 fun onElement(element: ElementKey, scene: SceneKey? = null): SemanticsNodeInteraction in onElement() 123 element: ElementKey, in TimeSeriesCaptureScope() 194 element: ElementKey, in ComposeContentTestRule()
|
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/keyguard/ui/composable/section/ |
D | BottomAreaSection.kt | 32 import com.android.compose.animation.scene.ElementKey in <lambda>() 214 private val StartButtonElementKey = ElementKey("StartButton") 215 private val EndButtonElementKey = ElementKey("EndButton") 216 private val IndicationAreaElementKey = ElementKey("IndicationArea")
|
D | StatusBarSection.kt | 31 import com.android.compose.animation.scene.ElementKey 111 private val StatusBarElementKey = ElementKey("StatusBar")
|
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/ |
D | CommunalContainer.kt | 40 import com.android.compose.animation.scene.ElementKey in <lambda>() 68 val Scrim = ElementKey("Scrim", scenePicker = LowestZIndexScenePicker) in <lambda>() 69 val Grid = ElementKey("CommunalContent") in <lambda>() 70 val LockIcon = ElementKey("CommunalLockIcon") in <lambda>() 71 val IndicationArea = ElementKey("CommunalIndicationArea") in <lambda>() 72 val StatusBar = ElementKey("StatusBar") in <lambda>() 77 override fun matches(key: ElementKey, scene: SceneKey) = true in matches()
|
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/shade/ui/composable/ |
D | OverlayShade.kt | 51 import com.android.compose.animation.scene.ElementKey 184 val Scrim = ElementKey("OverlayShadeScrim", scenePicker = LowestZIndexScenePicker) 185 val Panel = ElementKey("OverlayShadePanel", scenePicker = LowestZIndexScenePicker) 187 ElementKey("OverlayShadePanelBackground", scenePicker = LowestZIndexScenePicker)
|
D | ShadeHeader.kt | 61 import com.android.compose.animation.scene.ElementKey in <lambda>() 93 val ExpandedContent = ElementKey("ShadeHeaderExpandedContent") in <lambda>() 94 val CollapsedContentStart = ElementKey("ShadeHeaderCollapsedContentStart") in <lambda>() 95 val CollapsedContentEnd = ElementKey("ShadeHeaderCollapsedContentEnd") in <lambda>() 96 val PrivacyChip = ElementKey("PrivacyChip", scenePicker = LowestZIndexScenePicker) in <lambda>() 97 val Clock = ElementKey("ShadeHeaderClock", scenePicker = LowestZIndexScenePicker) in <lambda>() 98 val ShadeCarrierGroup = ElementKey("ShadeCarrierGroup") in <lambda>()
|
/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/ |
D | ElementScenePickerTest.kt | 39 val key = ElementKey("TestElement", scenePicker = HighestZIndexScenePicker) in highestZIndexPicker() 65 val key = ElementKey("TestElement", scenePicker = LowestZIndexScenePicker) in lowestZIndexPicker()
|
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/media/controls/ui/composable/ |
D | MediaCarousel.kt | 30 import com.android.compose.animation.scene.ElementKey in <lambda>() 39 internal val Content = ElementKey("MediaCarouselContent") in <lambda>()
|
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/notifications/ui/composable/ |
D | Notifications.kt | 67 import com.android.compose.animation.scene.ElementKey in <lambda>() 90 val NotificationScrim = ElementKey("NotificationScrim") in <lambda>() 91 val NotificationStackPlaceholder = ElementKey("NotificationStackPlaceholder") in <lambda>() 92 val HeadsUpNotificationPlaceholder = ElementKey("HeadsUpNotificationPlaceholder") in <lambda>() 93 val ShelfSpace = ElementKey("ShelfSpace") in <lambda>()
|