Searched defs:scaleY (Results 1 - 8 of 8) 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.java212 public void setScaleY(float scaleY) { argument
214 nSetScaleY(mFinalizer.mNativeDisplayList, scaleY);
220 float rotation, float rotationX, float rotationY, float scaleX, float scaleY) {
223 rotation, rotationX, rotationY, scaleX, scaleY);
328 private static native void nSetScaleY(int displayList, float scaleY); argument
331 float rotationY, float scaleX, float scaleY);
219 setTransformationInfo(float alpha, float translationX, float translationY, float rotation, float rotationX, float rotationY, float scaleX, float scaleY) argument
329 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.java2619 * based on the rotation, scaleX, and scaleY properties. The identity matrix
2628 * based on the rotation, scaleX, and scaleY properties. The identity matrix
9171 * @param scaleY The scaling factor.
9177 public void setScaleY(float scaleY) { argument
9180 if (info.mScaleY != scaleY) {
9182 info.mScaleY = scaleY;
9186 mDisplayList.setScaleY(scaleY);
17180 * A Property wrapper around the <code>scaleY</code> functionality handled by the
17183 public static final Property<View, Float> SCALE_Y = new FloatProperty<View>("scaleY") {
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp116 float scaleX, float scaleY) {
124 displayList->setScaleY(scaleY);
113 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 DPathRenderer.cpp59 float scaleY = sqrt(m10 * m10 + m11 * m11); local
61 inverseScaleY = (scaleY != 0) ? (1.0f / scaleY) : 1.0f;
H A DDisplayListRenderer.h258 void setScaleY(float scaleY) { argument
259 if (scaleY != mScaleY) {
260 mScaleY = scaleY;
H A DOpenGLRenderer.cpp2050 float scaleY = sqrtf(m10 * m10 + m11 * m11); local
2053 inverseScaleY = (scaleY != 0) ? (inverseScaleY / scaleY) : 0;

Completed in 1760 milliseconds