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

/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java61 private Animator mCurrentAnimation; field in class:ActionBarContextView
263 mCurrentAnimation = makeOutAnimation();
264 mCurrentAnimation.start();
268 final Animator a = mCurrentAnimation;
270 mCurrentAnimation = null;
472 mCurrentAnimation = makeInAnimation();
473 mCurrentAnimation.start();
/frameworks/base/core/java/android/view/
H A DView.java1522 protected Animation mCurrentAnimation = null; field in class:View
10247 return (mViewFlags & VISIBILITY_MASK) != VISIBLE && mCurrentAnimation == null &&
11857 mCurrentAnimation = null;
15783 return mCurrentAnimation;
15802 if (mCurrentAnimation != null) {
15803 mCurrentAnimation.detach();
15805 mCurrentAnimation = null;
15823 mCurrentAnimation = animation;

Completed in 81 milliseconds