Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/service/autofill/
H A DInternalTransformation.java62 @NonNull ArrayList<Pair<Integer, InternalTransformation>> transformations) { in batchApply() argument
63 final int size = transformations.size(); in batchApply()
66 final Pair<Integer, InternalTransformation> pair = transformations.get(i); in batchApply()
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/
H A DTransitionDslImpl.kt70 impl.transformations,
79 val transformations = mutableListOf<Transformation>() regex
93 transformations.add(PunchHole(matcher, bounds, shape))
126 transformations.add(RangedPropertyTransformation(transformation, range!!))
128 transformations.add(transformation)
H A DSceneTransitions.kt97 val transformations: List<Transformation>,
106 transformations = transformations.fastMap { it.reverse() },
110 internal fun transformations(element: ElementKey): ElementTransformations {
145 transformations.fastForEach { transformation ->
H A DElement.kt216 .transformations(element.key)
420 layoutImpl.transitions.transitionSpec(fromScene, toScene).transformations(element.key)
/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
H A DSaveUi.java386 final ArrayList<Pair<Integer, InternalTransformation>> transformations = in applyCustomDescription() local
389 Slog.v(TAG, "applyCustomDescription(): transformations = " + transformations); in applyCustomDescription()
391 if (transformations != null) { in applyCustomDescription()
392 if (!InternalTransformation.batchApply(valueFinder, template, transformations)) { in applyCustomDescription()