Searched refs:mAnimation (Results 1 - 10 of 10) 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...]
H A DGridLayoutAnimationController.java311 final long duration = mAnimation.getDuration();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DProgressBarCompat.java92 private AlphaAnimation mAnimation; field in class:ProgressBarCompat
620 mAnimation = null;
627 mAnimation = new AlphaAnimation(0.0f, 1.0f);
628 mAnimation.setRepeatMode(mBehavior);
629 mAnimation.setRepeatCount(Animation.INFINITE);
630 mAnimation.setDuration(mDuration);
631 mAnimation.setInterpolator(mInterpolator);
632 mAnimation.setStartTime(Animation.START_ON_FIRST_FRAME);
641 mAnimation = null;
782 if (mAnimation !
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowStateAnimator.java91 Animation mAnimation; field in class:WindowStateAnimator
211 mAnimation = anim;
212 mAnimation.restrictDuration(WindowManagerService.MAX_ANIMATION_DURATION);
213 mAnimation.scaleCurrentDuration(mService.getWindowAnimationScaleLocked());
221 if (mAnimation != null) {
224 mAnimation.cancel();
225 mAnimation = null;
232 return mAnimation != null
233 || (mAttachedWinAnimator != null && mAttachedWinAnimator.mAnimation != null)
247 return mAnimation !
[all...]
H A DWindowAnimator.java237 winAnimator.mAnimation = new AlphaAnimation(1.0f, 1.0f);
238 winAnimator.mAnimation.setDuration(KEYGUARD_ANIM_TIMEOUT_MS);
321 + " anim=" + win.mWinAnimator.mAnimation);
454 if (winAnimator.mAnimation != null) {
456 && winAnimator.mAnimation.getDetachWallpaper()) {
459 final int color = winAnimator.mAnimation.getBackgroundColor();
H A DWindowState.java865 || mWinAnimator.mAnimation != null || animating);
923 || mWinAnimator.mAnimation != null || atoken.mAppAnimator.animation != null);
925 return !mAttachedHidden || mWinAnimator.mAnimation != null;
940 || mWinAnimator.mAnimation != null
961 || mWinAnimator.mAnimation != null
985 return mWinAnimator.mAnimation != null
1029 && isDrawnLw() && mWinAnimator.mAnimation == null
1163 + mPolicyVisibility + " mAnimation=" + mWinAnimator.mAnimation);
1166 } else if (mPolicyVisibility && mWinAnimator.mAnimation
[all...]
H A DTaskStack.java295 long duration = (mDimWinAnimator.mAnimating && mDimWinAnimator.mAnimation != null)
296 ? mDimWinAnimator.mAnimation.computeDurationHint()
/frameworks/support/v4/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java106 private Animation mAnimation; field in class:MaterialProgressDrawable
272 mAnimation.reset();
280 mParent.startAnimation(mAnimation);
324 mParent.startAnimation(mAnimation);
386 mAnimation = animation;
/frameworks/base/core/java/android/widget/
H A DProgressBar.java215 private AlphaAnimation mAnimation; field in class:ProgressBar
1502 if (mAnimation == null) {
1503 mAnimation = new AlphaAnimation(0.0f, 1.0f);
1505 mAnimation.reset();
1508 mAnimation.setRepeatMode(mBehavior);
1509 mAnimation.setRepeatCount(Animation.INFINITE);
1510 mAnimation.setDuration(mDuration);
1511 mAnimation.setInterpolator(mInterpolator);
1512 mAnimation.setStartTime(Animation.START_ON_FIRST_FRAME);
1684 mAnimation
[all...]
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp120 bool mAnimation; member in class:android::Composer
124 mAnimation(false)
234 if (mAnimation) {
239 mAnimation = false;
247 mAnimation = true;

Completed in 483 milliseconds