Searched defs:scaleY (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DScaledPathsActivity.java84 private void drawPath(Canvas canvas, float scaleX, float scaleY) { argument
86 canvas.scale(scaleX, scaleY);
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp235 float scaleY = float(info.h) / float(h); local
236 *scale = scaleX < scaleY ? scaleX : scaleY;
/frameworks/base/core/java/android/view/
H A DDisplayList.java487 * @param scaleY The scale value of the display list
492 public abstract void setScaleY(float scaleY); argument
511 * @param scaleY The scaleY value of the display list
516 float rotation, float rotationX, float rotationY, float scaleX, float scaleY);
515 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DViewPropertyAnimator.java583 * This method will cause the View's <code>scaleY</code> property to be animated to the
590 public ViewPropertyAnimator scaleY(float value) { method in class:ViewPropertyAnimator
596 * This method will cause the View's <code>scaleY</code> property to be animated by the
H A DGLES20DisplayList.java291 public void setScaleY(float scaleY) { argument
293 nSetScaleY(mFinalizer.mNativeDisplayList, scaleY);
307 float rotation, float rotationX, float rotationY, float scaleX, float scaleY) {
310 rotation, rotationX, rotationY, scaleX, scaleY);
463 private static native void nSetScaleY(int displayList, float scaleY); argument
466 float rotationY, float scaleX, float scaleY);
306 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
464 nSetTransformationInfo(int displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DView.java2638 * based on the rotation, scaleX, and scaleY properties. The identity matrix
2647 * based on the rotation, scaleX, and scaleY properties. The identity matrix
9323 * @param scaleY The scaling factor.
9329 public void setScaleY(float scaleY) { argument
9332 if (info.mScaleY != scaleY) {
9334 info.mScaleY = scaleY;
9338 mDisplayList.setScaleY(scaleY);
17546 * A Property wrapper around the <code>scaleY</code> functionality handled by the
17549 public static final Property<View, Float> SCALE_Y = new FloatProperty<View>("scaleY") {
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp140 float scaleX, float scaleY) {
148 displayList->setScaleY(scaleY);
137 android_view_GLES20DisplayList_setTransformationInfo(JNIEnv* env, jobject clazz, DisplayList* displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
/frameworks/base/libs/hwui/
H A DDisplayList.h278 void setScaleY(float scaleY) { argument
279 if (scaleY != mScaleY) {
280 mScaleY = scaleY;
H A DPathTessellator.cpp107 float scaleY = sqrt(m10 * m10 + m11 * m11); local
109 inverseScaleY = (scaleY != 0) ? (1.0f / scaleY) : 1.0f;
H A DOpenGLRenderer.cpp2239 float scaleY = (dstBottom - dstTop) / (srcBottom - srcTop); local
2241 bool scaled = scaleX != 1.0f || scaleY != 1.0f;
2267 scale(scaleX, scaleY);

Completed in 601 milliseconds