Searched defs:mAnimation (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java76 protected Animation mAnimation; field in class:LayoutAnimationController
199 mAnimation = animation;
200 mAnimation.setFillBefore(true);
213 return mAnimation;
299 mDuration = mAnimation.getDuration();
301 mAnimation.setStartTime(-1);
321 final long delay = getDelayForView(view) + mAnimation.getStartOffset();
325 final Animation animation = mAnimation.clone();
341 mAnimation.getStartTime() + mMaxDelay + mDuration;
376 final float delay = mDelay * mAnimation
[all...]
/frameworks/base/core/java/android/widget/
H A DProgressBar.java211 private AlphaAnimation mAnimation; field in class:ProgressBar
869 if (mAnimation == null) {
870 mAnimation = new AlphaAnimation(0.0f, 1.0f);
872 mAnimation.reset();
875 mAnimation.setRepeatMode(mBehavior);
876 mAnimation.setRepeatCount(Animation.INFINITE);
877 mAnimation.setDuration(mDuration);
878 mAnimation.setInterpolator(mInterpolator);
879 mAnimation.setStartTime(Animation.START_ON_FIRST_FRAME);
1042 mAnimation
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowStateAnimator.java74 Animation mAnimation; field in class:WindowStateAnimator
181 mAnimation = anim;
182 mAnimation.restrictDuration(WindowManagerService.MAX_ANIMATION_DURATION);
183 mAnimation.scaleCurrentDuration(mService.mWindowAnimationScale);
191 if (mAnimation != null) {
194 mAnimation.cancel();
195 mAnimation = null;
201 return mAnimation != null
202 || (mAttachedWinAnimator != null && mAttachedWinAnimator.mAnimation != null)
216 return mAnimation !
[all...]
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp120 bool mAnimation; member in class:android::Composer
124 mAnimation(false)
233 if (mAnimation) {
238 mAnimation = false;
246 mAnimation = true;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DProgressBarICS.java91 private AlphaAnimation mAnimation; field in class:ProgressBarICS
619 mAnimation = null;
626 mAnimation = new AlphaAnimation(0.0f, 1.0f);
627 mAnimation.setRepeatMode(mBehavior);
628 mAnimation.setRepeatCount(Animation.INFINITE);
629 mAnimation.setDuration(mDuration);
630 mAnimation.setInterpolator(mInterpolator);
631 mAnimation.setStartTime(Animation.START_ON_FIRST_FRAME);
640 mAnimation = null;
779 if (mAnimation !
[all...]

Completed in 371 milliseconds