Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/ui/controller/
DMediaHierarchyManagerTest.kt338 val transformType = mediaHierarchyManager.calculateTransformationType() in testTransformationOnLockScreenIsFading() constant
339 assertThat(transformType).isEqualTo(MediaHierarchyManager.TRANSFORMATION_TYPE_FADE) in testTransformationOnLockScreenIsFading()
346 val transformType = mediaHierarchyManager.calculateTransformationType() in calculateTransformationType_notOnLockscreen_returnsTransition() constant
348 assertThat(transformType).isEqualTo(MediaHierarchyManager.TRANSFORMATION_TYPE_TRANSITION) in calculateTransformationType_notOnLockscreen_returnsTransition()
356 val transformType = mediaHierarchyManager.calculateTransformationType() in calculateTransformationType_onLockscreen_returnsTransition() constant
358 assertThat(transformType).isEqualTo(MediaHierarchyManager.TRANSFORMATION_TYPE_FADE) in calculateTransformationType_onLockscreen_returnsTransition()
368 val transformType = mediaHierarchyManager.calculateTransformationType() in calculateTransformationType_onLockShade_inSplitShade_goingToFullShade_returnsTransition() constant
369 assertThat(transformType).isEqualTo(MediaHierarchyManager.TRANSFORMATION_TYPE_TRANSITION) in calculateTransformationType_onLockShade_inSplitShade_goingToFullShade_returnsTransition()
380 val transformType = mediaHierarchyManager.calculateTransformationType() in calculateTransformationType_onLockSplitShade_goingToFullShade_mediaInvisible_returnsFade() constant
381 assertThat(transformType).isEqualTo(MediaHierarchyManager.TRANSFORMATION_TYPE_FADE) in calculateTransformationType_onLockSplitShade_goingToFullShade_mediaInvisible_returnsFade()
[all …]
/frameworks/native/opengl/tests/hwc/
DhwcCommit.cpp134 const struct transformType { struct
137 } transformType[] = { argument
680 for (unsigned int idx = 0; idx < NUMA(transformType); idx++) { in supportedTransforms()
681 unsigned int id = transformType[idx].id; in supportedTransforms()
1465 for (unsigned int idx = 0; idx < NUMA(transformType); idx++) { in transformList2str()
1466 if (id == transformType[idx].id) { in transformList2str()
1467 out << " (" << transformType[idx].desc << ')'; in transformList2str()
/frameworks/native/opengl/libs/GLES2/
Dgl2ext_api.in1150 void API_ENTRY(glTransformPathNV)(GLuint resultPath, GLuint srcPath, GLenum transformType, const GL…
1151 CALL_GL_API(glTransformPathNV, resultPath, srcPath, transformType, transformValues);
1180 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat…
1181 …InstancedNV, numPaths, pathNameType, paths, pathBase, fillMode, mask, transformType, transformValu…
1183 …st void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat…
1184 …nstancedNV, numPaths, pathNameType, paths, pathBase, reference, mask, transformType, transformValu…
1195 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
1196 …lPathInstancedNV, numPaths, pathNameType, paths, pathBase, coverMode, transformType, transformValu…
1198 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
1199 …ePathInstancedNV, numPaths, pathNameType, paths, pathBase, coverMode, transformType, transformValu…
[all …]
/frameworks/native/opengl/include/GLES2/
Dgl2ext.h3093 … PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat…
3103 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat…
3104 …st void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat…
3108 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
3109 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
3117 …, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *retu…
3130 …uint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat…
3131 …uint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat…
3170 …APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat…
3180 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat…
[all …]
/frameworks/native/opengl/libs/
Dentries.in123 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
125 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
393 …, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *retu…
829 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat…
837 …st void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat…
839 …uint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat…
841 …uint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat…
910 GL_ENTRY(void, glTransformPathNV, GLuint resultPath, GLuint srcPath, GLenum transformType, const GL…
/frameworks/base/core/java/android/view/
DView.java24445 final int transformType = t.getTransformationType(); in setDisplayListProperties() local
24446 if (transformType != Transformation.TYPE_IDENTITY) { in setDisplayListProperties()
24447 if ((transformType & Transformation.TYPE_ALPHA) != 0) { in setDisplayListProperties()
24450 if ((transformType & Transformation.TYPE_MATRIX) != 0) { in setDisplayListProperties()
24528 final int transformType = t.getTransformationType(); in draw() local
24529 transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null; in draw()
24530 concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0; in draw()