Searched refs:mPivotY (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/view/animation/ |
D | RotateAnimation.java | 40 private float mPivotY; field in RotateAnimation 84 mPivotY = 0.0f; in RotateAnimation() 153 if (mPivotX == 0.0f && mPivotY == 0.0f) { in applyTransformation() 156 t.getMatrix().setRotate(degrees, mPivotX * scale, mPivotY * scale); in applyTransformation() 164 mPivotY = resolveSize(mPivotYType, mPivotYValue, height, parentHeight); in initialize()
|
D | ScaleAnimation.java | 54 private float mPivotY; field in ScaleAnimation 150 mPivotY = 0; in ScaleAnimation() 236 if (mPivotX == 0 && mPivotY == 0) { in applyTransformation() 239 t.getMatrix().setScale(sx, sy, scale * mPivotX, scale * mPivotY); in applyTransformation() 270 mPivotY = resolveSize(mPivotYType, mPivotYValue, height, parentHeight); in initialize()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | RotateDrawable.java | 84 float py = st.mPivotYRel ? (h * st.mPivotY) : st.mPivotY; in draw() 270 mState.mPivotY = pivotY; in inflate() 301 float mPivotY; field in RotateDrawable.RotateState 322 mPivotY = source.mPivotY; in RotateState()
|
D | AnimatedRotateDrawable.java | 80 float py = st.mPivotYRel ? (h * st.mPivotY) : st.mPivotY; in draw() 271 rotateState.mPivotY = pivotY; in inflate() 306 float mPivotY; field in AnimatedRotateDrawable.AnimatedRotateState 325 mPivotY = source.mPivotY; in AnimatedRotateState()
|
/frameworks/base/core/java/android/view/ |
D | View.java | 2163 float mPivotY = 0f; field in View.TransformationInfo 7041 info.mPivotY = info.mPrevHeight / 2f; 7047 info.mMatrix.preRotate(info.mRotation, info.mPivotX, info.mPivotY); 7048 info.mMatrix.preScale(info.mScaleX, info.mScaleY, info.mPivotX, info.mPivotY); 7055 info.mMatrix.preScale(info.mScaleX, info.mScaleY, info.mPivotX, info.mPivotY); 7058 info.matrix3D.preTranslate(-info.mPivotX, -info.mPivotY); 7060 info.mPivotY + info.mTranslationY); 7414 return mTransformationInfo != null ? mTransformationInfo.mPivotY : 0; 7435 if (info.mPivotY != pivotY) { 7439 info.mPivotY = pivotY; [all …]
|