Home
last modified time | relevance | path

Searched refs:transformType (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/ui/
H A DMediaHierarchyManagerTest.kt296 val transformType = mediaHierarchyManager.calculateTransformationType() regex
297 assertThat(transformType).isEqualTo(MediaHierarchyManager.TRANSFORMATION_TYPE_FADE)
304 val transformType = mediaHierarchyManager.calculateTransformationType() regex
314 val transformType = mediaHierarchyManager.calculateTransformationType() regex
316 assertThat(transformType).isEqualTo(MediaHierarchyManager.TRANSFORMATION_TYPE_FADE)
326 val transformType = mediaHierarchyManager.calculateTransformationType() regex
338 val transformType = mediaHierarchyManager.calculateTransformationType() regex
339 assertThat(transformType).isEqualTo(MediaHierarchyManager.TRANSFORMATION_TYPE_FADE)
350 val transformType = mediaHierarchyManager.calculateTransformationType() regex
351 assertThat(transformType).isEqualTo(MediaHierarchyManager.TRANSFORMATION_TYPE_FADE)
[all …]
/aosp14/frameworks/base/core/java/android/view/
H A DView.java23503 final int transformType = t.getTransformationType(); in setDisplayListProperties() local
23504 if (transformType != Transformation.TYPE_IDENTITY) { in setDisplayListProperties()
23505 if ((transformType & Transformation.TYPE_ALPHA) != 0) { in setDisplayListProperties()
23508 if ((transformType & Transformation.TYPE_MATRIX) != 0) { in setDisplayListProperties()
23586 final int transformType = t.getTransformationType(); in draw() local
23587 transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null; in draw()
23588 concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0; in draw()