/frameworks/base/services/core/java/com/android/server/wm/ |
D | AppWindowAnimator.java | 52 boolean animating; field in AppWindowAnimator 124 animating = false; in setAnimation() 183 animating = true; in clearAnimation() 215 toAppAnimator.animating = animating; in transferCurrentAnimation() 366 if ((mAppToken.allDrawn || animating || mAppToken.startingDisplayed) in stepAnimationLocked() 368 if (!animating) { in stepAnimationLocked() 373 + " allDrawn=" + mAppToken.allDrawn + " animating=" + animating); in stepAnimationLocked() 376 animating = true; in stepAnimationLocked() 395 animating = true; in stepAnimationLocked() 401 if (!animating && animation == null) { in stepAnimationLocked() [all …]
|
D | WindowAnimator.java | 181 appAnimator.wasAnimating = appAnimator.animating; in updateAppWindowsLocked() 183 appAnimator.animating = true; in updateAppWindowsLocked() 210 appAnimator.wasAnimating = appAnimator.animating; in updateAppWindowsLocked() 625 && appAnimator.animating) { in updateWallpaperLocked() 999 void setAnimating(boolean animating) { in setAnimating() argument 1000 mAnimating = animating; in setAnimating() 1003 void orAnimating(boolean animating) { in orAnimating() argument 1004 mAnimating |= animating; in orAnimating()
|
D | DimLayer.java | 285 final boolean animating = isAnimating(); in show() 286 if ((animating && (mTargetAlpha != alpha || durationEndsEarlier(duration))) in show() 287 || (!animating && mAlpha != alpha)) { in show()
|
D | DisplayContent.java | 525 boolean animating = false; in checkForDeferredActions() 529 animating = true; in checkForDeferredActions() 547 if (!animating && mDeferredRemoval) { in checkForDeferredActions()
|
D | WindowState.java | 1209 final boolean animating = atoken != null && atoken.mAppAnimator.animation != null; in isVisibleOrBehindKeyguardLw() 1213 || mWinAnimator.mAnimation != null || animating); in isVisibleOrBehindKeyguardLw() 1221 return (mAppToken == null || !mAppToken.hiddenRequested || mAppToken.mAppAnimator.animating) in isWinVisibleLw()
|
D | WindowStateAnimator.java | 1736 + (mAppAnimator != null ? mAppAnimator.animating : false) + " Callers=" in performShowLocked() 1751 + (mAppAnimator != null ? mAppAnimator.animating : false)); in performShowLocked()
|
D | WindowSurfacePlacer.java | 466 token.mAppAnimator.animating = false; in performSurfacePlacementInner()
|
D | WindowManagerService.java | 1555 if (token.mAppAnimator.animating || token.mAppAnimator.animation != null) { in findDesiredInputMethodWindowIndexLocked() 4872 + " animating=" + wtoken.mAppAnimator.animating); in removeAppToken() 4887 wtoken.mAppAnimator.animating = false; in removeAppToken()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/widget/ |
D | AnimatedImageView.java | 90 public void setAnimating(boolean animating) { in setAnimating() argument 91 mAnimating = animating; in setAnimating()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
D | VolumeDialogMotion.java | 96 final boolean animating = mShowing || mDismissing; in updateAnimating() 97 if (animating == mAnimating) return; in updateAnimating() 98 mAnimating = animating; in updateAnimating() 305 void onAnimatingChanged(boolean animating); in onAnimatingChanged() argument
|
D | VolumeDialog.java | 225 public void onAnimatingChanged(boolean animating) { in initDialog() 226 if (animating) return; in initDialog() 663 final boolean animating = mMotion.isAnimating(); in onStateChangedH() 664 if (D.BUG) Log.d(TAG, "onStateChangedH animating=" + animating); in onStateChangedH() 666 if (animating) { in onStateChangedH() 1083 final boolean animating = mMotion.isAnimating(); 1084 if (D.BUG) Log.d(TAG, "onStop animating=" + animating); 1085 if (animating) {
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | prop-animation.jd | 120 animating.</p> 148 property that you are animating, based on the interpolated fraction, the starting value, and the 156 value for the property in the object that you are animating. Setting the property doesn't redraw 204 functionality that must be extended to fully support animating values. The following 222 types to evaluate. There are two pieces to animating properties: calculating the animated 237 because it makes the process of animating values on target objects much easier. However, 288 <td>An interface that allows you to create your own evaluator. If you are animating an 429 animate a named property of a target object. This makes animating any object much easier, as you 446 …<li>The object property that you are animating must have a setter function (in camel case) in the … 465 animation. Therefore, the object property that you are animating must have a getter function [all …]
|
D | index.jd | 26 utility class that makes animating these properties even easier.</p>
|
D | hardware-accel.jd | 478 better performance when animating complex views or to apply composition effects. For instance, 527 animating complex views that issue a lot of drawing operations. This can be alleviated by 556 <p>These properties are the names used when animating a view with an {@link
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | DrawableContainer.java | 554 boolean animating = false; in animate() 564 animating = true; in animate() 581 animating = true; in animate() 588 if (schedule && animating) { in animate()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ExpandableView.java | 439 public void setActualHeightAnimating(boolean animating) {} in setActualHeightAnimating() argument
|
D | NotificationContentView.java | 1182 public void setContentHeightAnimating(boolean animating) { 1183 if (!animating) {
|
D | ExpandableNotificationRow.java | 205 public void setActualHeightAnimating(boolean animating) { in setActualHeightAnimating() argument 207 mPrivateLayout.setContentHeightAnimating(animating); in setActualHeightAnimating()
|
/frameworks/base/docs/html/training/material/ |
D | drawables.jd | 131 about animating the properties of vector drawables, see
|
/frameworks/base/docs/html/training/gestures/ |
D | scroll.jd | 223 This is typically be done when a view child is animating a scroll using a scroller object, as in th…
|
/frameworks/base/docs/html/training/transitions/ |
D | transitions.jd | 156 scene. For example, the framework does not support animating changes to
|
/frameworks/base/core/java/android/view/ |
D | ViewRootImpl.java | 2690 boolean animating = mScroller != null && mScroller.computeScrollOffset(); in draw() 2692 if (animating) { in draw() 2714 if (animating && mScroller != null) { in draw() 2833 if (animating) { in draw()
|
/frameworks/base/docs/html/training/testing/ |
D | performance.jd | 243 animators or what fields ObjectAnimators are animating and ensure they are appropriate
|
/frameworks/base/docs/html/about/versions/ |
D | kitkat.jd | 492 <h4 id="44-transitions">Transitions framework for animating scenes</h4>
|
D | android-4.0-highlights.jd | 927 object in the hierarchy, including moving, transforming, and animating the view
|