Searched refs:scaleY (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/view/
H A DDisplayList.java222 * Sets the scaleY value for the DisplayList
224 * @param scaleY The scaleY value of the DisplayList
227 public abstract void setScaleY(float scaleY); argument
239 * @param scaleY The scaleY value of the DisplayList
242 float rotation, float rotationX, float rotationY, float scaleX, float scaleY);
241 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DGLES20DisplayList.java201 public void setScaleY(float scaleY) { argument
203 nSetScaleY(mFinalizer.mNativeDisplayList, scaleY);
209 float rotation, float rotationX, float rotationY, float scaleX, float scaleY) {
212 rotation, rotationX, rotationY, scaleX, scaleY);
316 private static native void nSetScaleY(int displayList, float scaleY); argument
319 float rotationY, float scaleX, float scaleY);
208 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
317 nSetTransformationInfo(int displayList, float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
H A DViewPropertyAnimator.java574 * This method will cause the View's <code>scaleY</code> property to be animated to the
581 public ViewPropertyAnimator scaleY(float value) { method in class:ViewPropertyAnimator
587 * This method will cause the View's <code>scaleY</code> property to be animated by the
H A DView.java2668 * based on the rotation, scaleX, and scaleY properties. The identity matrix
2677 * based on the rotation, scaleX, and scaleY properties. The identity matrix
9054 * @param scaleY The scaling factor.
9060 public void setScaleY(float scaleY) { argument
9063 if (info.mScaleY != scaleY) {
9065 info.mScaleY = scaleY;
9069 mDisplayList.setScaleY(scaleY);
16806 * A Property wrapper around the <code>scaleY</code> functionality handled by the
16809 public static final Property<View, Float> SCALE_Y = new FloatProperty<View>("scaleY") {
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp111 float scaleX, float scaleY) {
119 displayList->setScaleY(scaleY);
108 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/testing/uiautomator/utils/uiautomatorviewer/src/com/android/uiautomator/
H A DUiAutomatorViewer.java353 float scaleY = (canvas.height - 2 * IMG_BORDER - 1) / (float)image.height;
355 mScale = Math.min(scaleX, scaleY);
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.h256 void setScaleY(float scaleY) { argument
257 if (scaleY != mScaleY) {
258 mScaleY = scaleY;
H A DOpenGLRenderer.cpp1766 float scaleY = sqrt(m10 * m10 + m11 * m11); local
1768 inverseScaleY = (scaleY != 0) ? (inverseScaleY / scaleY) : 0;
1883 float scaleY = sqrtf(m10 * m10 + m11 * m11); local
1886 inverseScaleY = (scaleY != 0) ? (inverseScaleY / scaleY) : 0;
/frameworks/base/core/java/android/provider/
H A DMediaStore.java766 float scaleY = height / source.getHeight();
768 matrix.setScale(scaleX, scaleY);

Completed in 203 milliseconds