Home
last modified time | relevance | path

Searched defs:div (Results 1 – 12 of 12) sorted by relevance

/compose/ui/ui-unit/src/commonMain/kotlin/androidx/compose/ui/unit/
DDp.kt58 @Stable inline operator fun div(other: Float): Dp = Dp(value / other) in plus() method
60 @Stable inline operator fun div(other: Int): Dp = Dp(value / other) in plus() method
63 @Stable inline operator fun div(other: Dp): Float = value / other.value in plus() method
332 operator fun div(other: Int): DpSize = in takeOrElse() method
336 operator fun div(other: Float): DpSize = in takeOrElse() method
DTextUnit.kt107 inline operator fun div(other: Float): TextUnit { in TextUnit() method
120 inline operator fun div(other: Double): TextUnit { in TextUnit() method
133 inline operator fun div(other: Int): TextUnit { in TextUnit() method
DVelocity.kt128 operator fun div(operand: Float): Velocity = in Velocity() method
DIntSize.kt72 operator fun div(other: Int): IntSize = in IntSize() method
DIntOffset.kt118 operator fun div(operand: Float): IntOffset = in IntOffset() method
/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/layout/
DScaleFactor.kt70 @Stable operator fun div(operand: Float) = ScaleFactor(scaleX / operand, scaleY / operand) in ScaleFactor() method
127 operator fun Size.div(scaleFactor: ScaleFactor): Size = in takeOrElse() method
/compose/ui/ui-geometry/src/commonMain/kotlin/androidx/compose/ui/geometry/
DCornerRadius.kt152 operator fun div(operand: Float) = in CornerRadius() method
DSize.kt122 operator fun div(operand: Float): Size = in Size() method
DOffset.kt206 operator fun div(operand: Float): Offset { in Offset() method
/compose/runtime/runtime/src/linuxx64StubsMain/kotlin/androidx/compose/runtime/snapshots/
DSnapshotId.linuxx64Stubs.kt42 internal actual operator fun SnapshotId.div(other: Int): SnapshotId = implementedInJetBrainsFork() in compareTo() method
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/snapshots/
DSnapshotId.kt43 internal expect operator fun SnapshotId.div(other: Int): SnapshotId in compareTo() method
/compose/runtime/runtime/src/jvmMain/kotlin/androidx/compose/runtime/snapshots/
DSnapshotId.jvm.kt42 internal actual inline operator fun SnapshotId.div(other: Int): SnapshotId = this / other.toLong() in <lambda>() method