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

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DIconPulser.java39 target.animate().scaleX(PULSE_SCALE).scaleY(PULSE_SCALE)
44 target.animate().scaleX(1).scaleY(1).setListener(null);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
H A DUtils.java133 PropertyValuesHolder scaleY = PropertyValuesHolder.ofKeyframe("scaleY", k0, k1, k2, k3);
135 ObjectAnimator.ofPropertyValuesHolder(labelToAnimate, 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/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/base/libs/hwui/
H A DPathTessellator.h33 * Populates scaleX and scaleY with the 'tessellation scale' of the transform - the effective X
40 static void extractTessellationScales(const Matrix4& transform, float* scaleX, float* scaleY);
H A DTessellationCache.cpp40 , scaleY(1.0f)
54 PathTessellator::extractTessellationScales(transform, &scaleX, &scaleY);
65 hash = JenkinsHashMix(hash, android::hash_type(scaleY));
71 matrix->loadScale(scaleX, scaleY, 1.0f);
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);
/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/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSpeedBumpView.java99 .scaleY(endValue)
/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
H A DChangeImageTransform.java109 float scaleY = ((float) bounds.height()) / drawableHeight;
111 matrix.setScale(scaleX, scaleY);
/frameworks/base/core/java/android/view/
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
/frameworks/base/core/java/com/android/internal/app/
H A DPlatLogoActivity.java151 .scaleY(1)
232 im.animate().scaleX(0.3f).scaleY(0.3f)
/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/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewController.java924 final float scaleY = (float) mAnimationStartHeight / totalHeight;
925 final float scale = Math.max(scaleW, scaleY);
949 ViewPropertyAnimator animator = mTemporaryImage.animate().scaleX(1f).scaleY(1f)
1006 final float scaleY = (float) mAnimationStartHeight / totalHeight;
1007 final float scale = Math.max(scaleW, scaleY);
1029 animator = mTemporaryImage.animate().scaleX(scale).scaleY(scale)
1033 animator = mViewPager.animate().scaleX(scale).scaleY(scale)
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp240 float scaleY = float(info.h) / float(h); local
241 *scale = scaleX < scaleY ? scaleX : scaleY;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java96 .scaleY(scale);
/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;
/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/hardware/camera2/legacy/
H A DSurfaceTextureRenderer.java282 float scaleY = intermediate.height() / output.height();
288 Matrix.scaleM(mMVPMatrix, /*offset*/0, /*x*/scaleX, /*y*/scaleY, /*z*/1);
291 Log.d(TAG, "Scaling factors (S_x = " + scaleX + ",S_y = " + scaleY + ") used for " +
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DCameraWidgetFrame.java305 .scaleY(1)
336 .scaleY(1f)
337 .scaleY(1f)
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DLLand.java530 .scaleY(1f)
565 .scaleY(1f)
802 .scaleY(1.25f)
815 .scaleY(1f)
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java320 v.animate().withLayer().scaleX(s).scaleY(s).alpha(1f).setDuration(animationLen);
392 .scaleX(0.5f).scaleY(0.5f).alpha(0)

Completed in 523 milliseconds

12