Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/dialog/ui/composable/
DAlertDialogContent.kt37 import androidx.compose.ui.layout.Placeable in <lambda>()
135 var positive: Placeable? = null in AlertDialogButtons()
136 var negative: Placeable? = null in AlertDialogButtons()
137 var neutral: Placeable? = null in AlertDialogButtons()
148 fun Placeable?.width() = this?.width ?: 0 in AlertDialogButtons() method
149 fun Placeable?.height() = this?.height ?: 0 in AlertDialogButtons() method
191 fun Placeable.place() { in AlertDialogButtons() method
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/dialog/
DSettingsAlterDialogContent.kt45 import androidx.compose.ui.layout.Placeable in <lambda>()
194 val sequences = mutableListOf<List<Placeable>>() in measurables()
201 val currentSequence = mutableListOf<Placeable>() in measurables()
206 fun canAddToCurrentSequence(placeable: Placeable) = in measurables()
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/volume/panel/component/selector/ui/composable/
DVolumePanelRadioButtons.kt48 import androidx.compose.ui.layout.Placeable
216 val buttonsPlaceable: Placeable = in measure()
220 val labelsPlaceable: Placeable = in measure()
225 val buttonsBackgroundPlaceable: Placeable = in measure()
239 val indicatorPlaceable: Placeable = in measure()
/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/
DPlatformSlider.kt61 import androidx.compose.ui.layout.Placeable in <lambda>()
329 val backgroundPlaceable: Placeable = in measure()
334 val iconPlaceable: Placeable? = in measure()
348 val labelPlaceable: Placeable? = in measure()
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/
DElement.kt39 import androidx.compose.ui.layout.Placeable in <lambda>()
249 override fun Placeable.PlacementScope.isPlacementApproachInProgress( in isPlacementApproachInProgress()
310 private fun Placeable.PlacementScope.place( in Placeable() method
312 placeable: Placeable, in Placeable()
868 ): Placeable { in measure()
872 var maybePlaceable: Placeable? = null in measure()
923 private fun Placeable.size(): IntSize = IntSize(width, height) in size() method