Searched defs:scaleY (Results 1 - 15 of 15) 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/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DScaleFrameLayout.java54 public void setLayoutScaleY(float scaleY) { argument
55 if (scaleY != mLayoutScaleY) {
56 mLayoutScaleY = scaleY;
/frameworks/support/v4/ics/android/support/v4/view/
H A DViewPropertyAnimatorCompatICS.java93 public static void scaleY(View view, float value) { method in class:ViewPropertyAnimatorCompatICS
94 view.animate().scaleY(value);
/frameworks/base/libs/hwui/
H A DTessellationCache.h57 float scaleY; member in struct:android::uirenderer::TessellationCache::Description
H A DPathTessellator.cpp66 float* scaleX, float* scaleY) {
69 *scaleY = 1.0f;
76 *scaleY = MathUtils::clampTessellationScale(sqrt(m10 * m10 + m11 * m11));
107 float scaleX, scaleY; local
108 PathTessellator::extractTessellationScales(transform, &scaleX, &scaleY);
110 inverseScaleY = 1.0f / scaleY;
65 extractTessellationScales(const Matrix4& transform, float* scaleX, float* scaleY) argument
H A DRenderProperties.h323 bool setScaleY(float scaleY) { argument
324 return RP_SET_AND_DIRTY(mPrimitiveFields.mScaleY, scaleY);
H A DOpenGLRenderer.cpp2179 float scaleY = (dstBottom - dstTop) / (srcBottom - srcTop); local
2181 bool scaled = scaleX != 1.0f || scaleY != 1.0f;
2207 scale(scaleX, scaleY);
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp240 float scaleY = float(info.h) / float(h); local
241 *scale = scaleX < scaleY ? scaleX : scaleY;
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java412 float translationZ, float scaleX, float scaleY, float rotationX,
418 view.setScaleY(scaleY);
429 public final float scaleY; field in class:ChangeTransform.Transforms
439 scaleY = view.getScaleY();
446 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
460 thatTransform.scaleY == scaleY &&
411 setTransforms(View view, float translationX, float translationY, float translationZ, float scaleX, float scaleY, float rotationX, float rotationY, float rotationZ) argument
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicResize.cpp43 float scaleY; member in class:android::renderscript::RsdCpuScriptIntrinsicResize
192 float yf = (p->y + 0.5f) * cp->scaleY - 0.5f;
232 float yf = (p->y + 0.5f) * cp->scaleY - 0.5f;
272 float yf = (p->y + 0.5f) * cp->scaleY - 0.5f;
333 scaleY = (float)srcHeight / aout->mHal.drvState.lod[0].dimY;
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java56 public void scaleY(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
189 public void scaleY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
427 public void scaleY(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.ICSViewPropertyAnimatorCompatImpl
428 ViewPropertyAnimatorCompatICS.scaleY(view, value);
962 * This method will cause the View's <code>scaleY</code> property to be animated to the
970 public ViewPropertyAnimatorCompat scaleY(float value) { method in class:ViewPropertyAnimatorCompat
973 IMPL.scaleY(this, view, value);
979 * This method will cause the View's <code>scaleY</code> property to be animated by the
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java703 * This method will cause the View's <code>scaleY</code> property to be animated to the
710 public ViewPropertyAnimator scaleY(float value) { method in class:ViewPropertyAnimator
716 * This method will cause the View's <code>scaleY</code> property to be animated by the
H A DRenderNode.java624 * @param scaleY The scale value of the display list
629 public boolean setScaleY(float scaleY) { argument
630 return nSetScaleY(mNativeRenderNode, scaleY);
883 private static native boolean nSetScaleY(long renderNode, float scaleY); argument
H A DView.java10386 * @param scaleY The scaling factor.
10392 public void setScaleY(float scaleY) { argument
10393 if (scaleY != getScaleY()) {
10395 mRenderNode.setScaleY(scaleY);
19675 * A Property wrapper around the <code>scaleY</code> functionality handled by the
19678 public static final Property<View, Float> SCALE_Y = new FloatProperty<View>("scaleY") {
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java105 * <dt><code>android:scaleY</code></dt>
411 float scaleY = viewportHeight / intrinsicHeight;
412 return Math.min(scaleX, scaleY);
941 final float scaleY = h / mViewportHeight;
942 final float minScale = Math.min(scaleX, scaleY);
945 mFinalPathMatrix.postScale(scaleX, scaleY);
1207 public void setScaleY(float scaleY) { argument
1208 if (scaleY != mScaleY) {
1209 mScaleY = scaleY;

Completed in 1058 milliseconds