Searched defs:mPivotYRel (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedRotateDrawable.java65 final float py = st.mPivotYRel ? (h * st.mPivotY) : st.mPivotY;
195 state.mPivotYRel = tv.type == TypedValue.TYPE_FRACTION;
196 state.mPivotY = state.mPivotYRel ? tv.getFraction(1.0f, 1.0f) : tv.getFloat();
225 boolean mPivotYRel = false; field in class:AnimatedRotateDrawable.AnimatedRotateState
236 mPivotYRel = orig.mPivotYRel;
H A DRotateDrawable.java132 state.mPivotYRel = tv.type == TypedValue.TYPE_FRACTION;
133 state.mPivotY = state.mPivotYRel ? tv.getFraction(1.0f, 1.0f) : tv.getFloat();
151 final float py = st.mPivotYRel ? (h * st.mPivotY) : st.mPivotY;
294 if (mState.mPivotYRel != relative) {
295 mState.mPivotYRel = relative;
306 return mState.mPivotYRel;
332 boolean mPivotYRel = true; field in class:RotateDrawable.RotateState
344 mPivotYRel = orig.mPivotYRel;

Completed in 53 milliseconds