Searched defs:scaleY (Results 1 - 11 of 11) 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.cpp238 float scaleY = float(info.h) / float(h); local
239 *scale = scaleX < scaleY ? scaleX : scaleY;
/frameworks/base/core/java/android/view/
H A DDisplayList.java500 * @param scaleY The scale value of the display list
505 public abstract void setScaleY(float scaleY); argument
524 * @param scaleY The scaleY value of the display list
529 float rotation, float rotationX, float rotationY, float scaleX, float scaleY);
528 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DViewPropertyAnimator.java628 * This method will cause the View's <code>scaleY</code> property to be animated to the
635 public ViewPropertyAnimator scaleY(float value) { method in class:ViewPropertyAnimator
641 * This method will cause the View's <code>scaleY</code> property to be animated by the
H A DGLES20DisplayList.java294 public void setScaleY(float scaleY) { argument
296 nSetScaleY(mFinalizer.mNativeDisplayList, scaleY);
310 float rotation, float rotationX, float rotationY, float scaleX, float scaleY) {
313 rotation, rotationX, rotationY, scaleX, scaleY);
466 private static native void nSetScaleY(int displayList, float scaleY); argument
469 float rotationY, float scaleX, float scaleY);
309 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
467 nSetTransformationInfo(int displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DView.java2803 * based on the rotation, scaleX, and scaleY properties. The identity matrix
2812 * based on the rotation, scaleX, and scaleY properties. The identity matrix
9663 * @param scaleY The scaling factor.
9669 public void setScaleY(float scaleY) { argument
9672 if (info.mScaleY != scaleY) {
9674 info.mScaleY = scaleY;
9678 mDisplayList.setScaleY(scaleY);
18247 * A Property wrapper around the <code>scaleY</code> functionality handled by the
18250 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.h284 void setScaleY(float scaleY) { argument
285 if (scaleY != mScaleY) {
286 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.cpp2353 float scaleY = (dstBottom - dstTop) / (srcBottom - srcTop); local
2355 bool scaled = scaleX != 1.0f || scaleY != 1.0f;
2381 scale(scaleX, scaleY);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DPrintJobConfigActivity.java1865 final float scaleY = (float) showingView.getMeasuredHeight()
1869 AutoCancellingAnimator.animate(contentContainer).scaleY(scaleY)
2859 public AutoCancellingAnimator scaleY(float scale) { method in class:PrintJobConfigActivity.AutoCancellingAnimator
2860 mAnimator = mAnimator.scaleY(scale);

Completed in 310 milliseconds