Home
last modified time | relevance | path

Searched refs:SizeUnspecified (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/modifiers/
DSize.kt94 private val SizeUnspecified: Density.() -> Int = { 0 } in <lambda>() constant
97 private val minWidth: Density.() -> Int = SizeUnspecified,
98 private val minHeight: Density.() -> Int = SizeUnspecified,
99 private val maxWidth: Density.() -> Int = SizeUnspecified,
100 private val maxHeight: Density.() -> Int = SizeUnspecified,
107 if (maxWidth != SizeUnspecified) {
113 if (maxHeight != SizeUnspecified) {
119 if (minWidth != SizeUnspecified) {
127 if (minHeight != SizeUnspecified) {
152 if (minWidth != SizeUnspecified) { in measure()
[all …]
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/
DUserActionDistanceScopeImpl.kt27 it != Element.SizeUnspecified in targetSize()
DElement.kt85 var targetSize by mutableStateOf(SizeUnspecified) in <lambda>()
90 var lastSize = SizeUnspecified in <lambda>()
96 var sizeBeforeInterruption = SizeUnspecified in <lambda>()
120 val SizeUnspecified = IntSize(Int.MAX_VALUE, Int.MAX_VALUE) in <lambda>() constant
297 sceneState.lastSize = Element.SizeUnspecified in approachMeasure()
883 isSpecified = { it != Element.SizeUnspecified }, in measure()
890 sceneState.sizeBeforeInterruption = Element.SizeUnspecified in measure()
900 unspecifiedValue = Element.SizeUnspecified, in measure()
DMovableElement.kt210 if (targetValueInScene != Element.SizeUnspecified) { in placeholderContentSize()
224 if (targetValueInOtherScene != null && targetValueInOtherScene != Element.SizeUnspecified) { in placeholderContentSize()
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/transformation/
DAnchoredSize.kt45 it != Element.SizeUnspecified in transform()
DEdgeTranslate.kt43 if (elementSize == Element.SizeUnspecified) { in transform()