HomeSort by relevance Sort by last modified time
    Searched refs:mPivotYRel (Results 1 - 2 of 2) sorted by null

  /frameworks/base/graphics/java/android/graphics/drawable/
RotateDrawable.java 132 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;
344 mPivotYRel = orig.mPivotYRel;
AnimatedRotateDrawable.java 65 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;
236 mPivotYRel = orig.mPivotYRel;

Completed in 77 milliseconds