Home
last modified time | relevance | path

Searched refs:ElementMatcher (Results 1 – 11 of 11) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/
H A DTransitionDsl.kt129 fun punchHole(matcher: ElementMatcher, bounds: ElementKey, shape: Shape = RectangleShape)
138 fun fade(matcher: ElementMatcher)
141 fun translate(matcher: ElementMatcher, x: Dp = 0.dp, y: Dp = 0.dp)
152 fun translate(matcher: ElementMatcher, edge: Edge, startsOutsideLayoutBounds: Boolean = true)
163 fun anchoredTranslate(matcher: ElementMatcher, anchor: ElementKey)
171 fun scaleSize(matcher: ElementMatcher, width: Float = 1f, height: Float = 1f)
179 fun anchoredSize(matcher: ElementMatcher, anchor: ElementKey)
183 interface ElementMatcher { regex
H A DTransitionDslImpl.kt92 override fun punchHole(matcher: ElementMatcher, bounds: ElementKey, shape: Shape) {
132 override fun fade(matcher: ElementMatcher) {
136 override fun translate(matcher: ElementMatcher, x: Dp, y: Dp) {
141 matcher: ElementMatcher,
148 override fun anchoredTranslate(matcher: ElementMatcher, anchor: ElementKey) {
152 override fun scaleSize(matcher: ElementMatcher, width: Float, height: Float) {
156 override fun anchoredSize(matcher: ElementMatcher, anchor: ElementKey) {
H A DKey.kt63 ) : Key(name, identity), ElementMatcher {
74 fun withIdentity(predicate: (Any) -> Boolean): ElementMatcher {
75 return object : ElementMatcher {
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/transformation/
H A DFade.kt20 import com.android.compose.animation.scene.ElementMatcher
27 override val matcher: ElementMatcher,
H A DScaleSize.kt21 import com.android.compose.animation.scene.ElementMatcher
32 override val matcher: ElementMatcher,
H A DTranslate.kt23 import com.android.compose.animation.scene.ElementMatcher
30 override val matcher: ElementMatcher,
H A DAnchoredSize.kt22 import com.android.compose.animation.scene.ElementMatcher
30 override val matcher: ElementMatcher,
H A DAnchoredTranslate.kt23 import com.android.compose.animation.scene.ElementMatcher
31 override val matcher: ElementMatcher,
H A DEdgeTranslate.kt22 import com.android.compose.animation.scene.ElementMatcher
29 override val matcher: ElementMatcher,
H A DTransformation.kt21 import com.android.compose.animation.scene.ElementMatcher
31 val matcher: ElementMatcher
H A DPunchHole.kt36 import com.android.compose.animation.scene.ElementMatcher
42 override val matcher: ElementMatcher,