Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/modifiers/
H A DSize.kt94 private val SizeUnspecified: Density.() -> Int = { 0 }
97 private val minWidth: Density.() -> Int = SizeUnspecified,
99 private val maxWidth: Density.() -> Int = SizeUnspecified,
107 if (maxWidth != SizeUnspecified) {
113 if (maxHeight != SizeUnspecified) {
119 if (minWidth != SizeUnspecified) {
127 if (minHeight != SizeUnspecified) {
152 if (minWidth != SizeUnspecified) {
158 if (maxWidth != SizeUnspecified) {
164 if (minHeight != SizeUnspecified) {
[all …]
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/
H A DElement.kt57 var lastSize = SizeUnspecified
71 var size by mutableStateOf(SizeUnspecified)
82 val SizeUnspecified = IntSize(Int.MAX_VALUE, Int.MAX_VALUE) regex
280 if (lastSize != Element.SizeUnspecified) {
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/transformation/
H A DAnchoredSize.kt43 return if (size != null && size != Element.SizeUnspecified) {
H A DEdgeTranslate.kt43 if (elementSize == Element.SizeUnspecified) {
H A DPunchHole.kt56 bounds.lastSize == Element.SizeUnspecified ||