/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/fragment/ |
D | CollapsedStatusBarFragment.java | 161 public void onOngoingCallStateChanged(boolean animate) { 162 updateStatusBarVisibilities(animate); 528 public void disable(int displayId, int state1, int state2, boolean animate) { in disable() argument 536 updateStatusBarVisibilities(animate); in disable() 539 private void updateStatusBarVisibilities(boolean animate) { in updateStatusBarVisibilities() argument 547 showEndSideContent(animate); in updateStatusBarVisibilities() 548 showOperatorName(animate); in updateStatusBarVisibilities() 550 hideEndSideContent(animate); in updateStatusBarVisibilities() 551 hideOperatorName(animate); in updateStatusBarVisibilities() 562 updateNotificationIconAreaAndOngoingActivityChip(animate); in updateStatusBarVisibilities() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | StackScrollerDecorView.java | 82 public void setVisible(boolean visible, boolean animate) { in setVisible() argument 85 if (animate) { in setVisible() 120 public void setContentVisible(boolean visible, boolean animate, in setContentVisible() argument 123 mContentAnimating = animate; in setContentVisible() 131 setViewVisible(mContent, visible, animate, onAnimationEndedWrapper); in setContentVisible() 163 protected void setSecondaryVisible(boolean visible, boolean animate, in setSecondaryVisible() argument 166 mSecondaryAnimating = animate; in setSecondaryVisible() 174 setViewVisible(mSecondaryView, visible, animate, onAnimationEndedWrapper); in setSecondaryVisible() 203 boolean animate, Consumer<Boolean> onAnimationEnded) { in setViewVisible() argument 214 view.animate().cancel(); in setViewVisible() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/disableflags/ |
D | DisableStateTrackerTest.kt | 71 underTest.disable(displayId = 0, state1 = DISABLE_CLOCK, state2 = 0, animate = false) in disable_hadNotStartedTracking_isDisabledFalse() 81 underTest.disable(displayId = 20, state1 = DISABLE_CLOCK, state2 = 0, animate = false) in disable_wrongDisplayId_isDisabledFalse() 92 DISPLAY_ID, state1 = DISABLE_EXPAND, state2 = DISABLE2_QUICK_SETTINGS, animate = false in disable_irrelevantFlagsUpdated_isDisabledFalse() 106 underTest.disable(DISPLAY_ID, state1 = DISABLE_EXPAND, state2 = 0, animate = false) in disable_partOfMask1True_isDisabledTrue() 119 underTest.disable(DISPLAY_ID, state1 = 0, state2 = DISABLE2_SYSTEM_ICONS, animate = false) in disable_partOfMask2True_isDisabledTrue() 134 underTest.disable(DISPLAY_ID, state1 = DISABLE_CLOCK, state2 = 0, animate = false) in disable_isDisabledChangesFromFalseToTrue_callbackNotified() 150 underTest.disable(DISPLAY_ID, state1 = DISABLE_CLOCK, state2 = 0, animate = false) in disable_isDisabledChangesFromTrueToFalse_callbackNotified() 155 underTest.disable(DISPLAY_ID, state1 = 0, state2 = 0, animate = false) in disable_isDisabledChangesFromTrueToFalse_callbackNotified() 174 animate = false in disable_manyUpdates_isDisabledUpdatesAppropriately() 183 animate = false in disable_manyUpdates_isDisabledUpdatesAppropriately() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
D | BouncerKeyguardMessageAreaTest.kt | 52 underTestSpy.setMessage("abc", animate = true) in testSetSameMessage() 53 underTestSpy.setMessage("abc", animate = true) in testSetSameMessage() 59 underTest.setMessage("abc", animate = true) in testSetDifferentMessage() 60 underTest.setMessage("def", animate = true) in testSetDifferentMessage() 66 underTest.setMessage(null, animate = true) in testSetNullMessage() 72 underTest.setMessage("something not null", animate = true) in testSetNullClearsPreviousMessage() 75 underTest.setMessage(null, animate = true) in testSetNullClearsPreviousMessage()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | CrossFadeHelper.java | 60 view.animate().cancel(); in fadeOut() 61 view.animate() in fadeOut() 75 view.animate().withLayer(); in fadeOut() 81 view.animate().cancel(); in fadeOut() 82 ViewPropertyAnimator animator = view.animate() in fadeOut() 96 view.animate().withLayer(); in fadeOut() 116 view.animate().cancel(); in fadeOut() 174 view.animate().cancel(); in fadeIn() 179 view.animate() in fadeIn() 186 view.animate().withLayer(); in fadeIn() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | Roundable.kt | 78 animate: Boolean, in <lambda>() 101 roundableState.setTopRoundness(value = newValue, animated = shouldAnimate || animate) in <lambda>() 126 animate = roundableState.targetView.isShown in <lambda>() 145 animate: Boolean, in <lambda>() 168 roundableState.setBottomRoundness(value = newValue, animated = shouldAnimate || animate) in <lambda>() 193 animate = roundableState.targetView.isShown in <lambda>() 214 animate: Boolean, in <lambda>() 217 requestTopRoundness(value = top, sourceType = sourceType, animate = animate) in <lambda>() 219 requestBottomRoundness(value = bottom, sourceType = sourceType, animate = animate) in <lambda>() 245 animate = roundableState.targetView.isShown, in <lambda>() [all …]
|
D | NotificationWakeUpCoordinator.kt | 118 animate = shouldAnimateVisibility(), 142 animate = shouldAnimateVisibility(), 203 animate = false, in onFullyHiddenChanged() 249 animate: Boolean, in isPulseExpanding() 253 updateNotificationVisibility(animate, increaseSpeed) in isPulseExpanding() 270 private fun updateNotificationVisibility(animate: Boolean, increaseSpeed: Boolean) { in updateNotificationVisibility() 285 setNotificationsVisible(visible, animate, increaseSpeed) in updateNotificationVisibility() 290 animate: Boolean, in setNotificationsVisible() 298 if (animate) { in setNotificationsVisible() 377 setNotificationsVisible(visible = false, animate = false, increaseSpeed = false) in updateDozeAmount() [all …]
|
D | NotificationTransitionAnimatorController.kt | 152 removeHun(animate = true) in onIntentStarted() 169 private fun removeHun(animate: Boolean) { in removeHun() 173 HeadsUpUtil.setNeedsHeadsUpDisappearAnimationAfterClick(notification, animate) in removeHun() 175 headsUpManager.removeNotification(row.entry.key, true /* releaseImmediately */, animate) in removeHun() 187 removeHun(animate = true) in onTransitionAnimationCancelled() 209 removeHun(animate = false) in onTransitionAnimationEnd()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/ |
D | MagnificationProcessor.java | 114 boolean animate, int id) { in setMagnificationConfig() argument 118 if (transitionModeIfNeeded(displayId, config, animate, id)) { in setMagnificationConfig() 132 animate, id); in setMagnificationConfig() 134 return resetFullscreenMagnification(displayId, animate); in setMagnificationConfig() 140 animate ? STUB_ANIMATION_CALLBACK : null, in setMagnificationConfig() 151 float centerX, float centerY, boolean animate, int id) { in setScaleAndCenterForFullScreenMagnification() argument 157 displayId, scale, centerX, centerY, animate, id); in setScaleAndCenterForFullScreenMagnification() 165 boolean animate, int id) { in transitionModeIfNeeded() argument 175 mController.transitionMagnificationConfigMode(displayId, config, animate, id); in transitionModeIfNeeded() 295 public boolean resetCurrentMagnification(int displayId, boolean animate) { in resetCurrentMagnification() argument [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | PropertyAnimatorTest.java | 120 mAnimationFilter.animate(mProperty.getProperty()); in testAnimationStarted() 135 mAnimationFilter.animate(mProperty.getProperty()); in testEndValueUpdated() 145 mAnimationFilter.animate(mProperty.getProperty()); in testStartTagUpdated() 161 mAnimationFilter.animate(mProperty.getProperty()); in testAnimationToRightValueUpdated() 173 mAnimationFilter.animate(mProperty.getProperty()); in testAnimationToRightValueUpdateAnimated() 176 mAnimationFilter.animate(mProperty.getProperty()); in testAnimationToRightValueUpdateAnimated() 187 mAnimationFilter.animate(mProperty.getProperty()); in testStartTagShiftedWhenChanging() 198 mAnimationFilter.animate(mProperty.getProperty()); in testUsingDuration() 209 mAnimationFilter.animate(mProperty.getProperty()); in testUsingDelay() 220 mAnimationFilter.animate(mProperty.getProperty()); in testUsingInterpolator() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardUserDetailItemView.java | 86 void updateVisibilities(boolean showItem, boolean showTextName, boolean animate) { in updateVisibilities() argument 89 showItem, showTextName, animate)); in updateVisibilities() 97 if (animate) { in updateVisibilities() 99 mName.animate() in updateVisibilities() 107 if (animate) { in updateVisibilities() 110 mName.animate() in updateVisibilities()
|
D | KeyguardUserSwitcherListView.java | 79 void updateVisibilities(boolean open, boolean animate) { in updateVisibilities() argument 82 open, animate, getChildCount())); in updateVisibilities() 95 animate); in updateVisibilities() 109 if (animate && userItemViews.length > 1) { in updateVisibilities()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/ |
D | NavigationBarTransitions.java | 146 protected void onTransition(int oldMode, int newMode, boolean animate) { in onTransition() argument 147 super.onTransition(oldMode, newMode, animate); in onTransition() 148 applyLightsOut(animate, false /*force*/); in onTransition() 154 private void applyLightsOut(boolean animate, boolean force) { in applyLightsOut() argument 156 applyLightsOut(isLightsOut(getMode()), animate, force); in applyLightsOut() local 159 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) { in applyLightsOut() argument 166 mNavButtons.animate().cancel(); in applyLightsOut() 172 if (!animate) { in applyLightsOut() 176 mNavButtons.animate() in applyLightsOut()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
D | TextAnimator.kt | 275 animate: Boolean = true, in draw() 280 ) = setTextStyleInternal(fvar, textSize, color, strokeWidth, animate, duration, in draw() 288 animate: Boolean, in draw() 296 if (animate) { in draw() 315 if (animate) { in draw() 348 setTextStyleInternal(fvar, textSize, color, strokeWidth, animate, duration, in draw() 383 animate: Boolean = true, in setTextStyle() 398 animate = animate, in setTextStyle()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | BarTransitions.java | 110 public void transitionTo(int mode, boolean animate) { in transitionTo() argument 122 modeToString(oldMode), modeToString(mode), animate)); in transitionTo() 123 onTransition(oldMode, mMode, animate); in transitionTo() 126 protected void onTransition(int oldMode, int newMode, boolean animate) { in onTransition() argument 127 applyModeBackground(oldMode, newMode, animate); in onTransition() 130 protected void applyModeBackground(int oldMode, int newMode, boolean animate) { in applyModeBackground() argument 132 modeToString(oldMode), modeToString(newMode), animate)); in applyModeBackground() 133 mBarBackground.applyModeBackground(oldMode, newMode, animate); in applyModeBackground() 251 public void applyModeBackground(int oldMode, int newMode, boolean animate) { in applyModeBackground() argument 254 mAnimating = animate; in applyModeBackground() [all …]
|
D | StatusBarHideIconsForBouncerManager.kt | 69 updateHideIconsForBouncer(animate = false) in <lambda>() 78 updateHideIconsForBouncer(animate = false) in <lambda>() 83 updateHideIconsForBouncer(animate = true) in <lambda>() 94 updateHideIconsForBouncer(animate = true) in <lambda>() 101 private fun updateHideIconsForBouncer(animate: Boolean) { in <lambda>() 122 commandQueue.recomputeDisableFlags(displayId, animate) in <lambda>()
|
D | StatusBarNotificationActivityStarter.java | 109 boolean onDismiss(PendingIntent intent, boolean isActivityIntent, boolean animate, in onDismiss() argument 240 (intent, isActivityIntent, animate, showOverTheLockScreen) -> { in onNotificationBubbleIconClicked() 259 (intent, isActivityIntent, animate, showOverTheLockScreen) -> in onNotificationClicked() 261 animate, showOverTheLockScreen); in onNotificationClicked() 292 final boolean animate = !willLaunchResolverActivity in performActionAfterKeyguardDismissed() 300 return action.onDismiss(intent, isActivityIntent, animate, showOverLockscreen); in performActionAfterKeyguardDismissed() 305 return animate; in performActionAfterKeyguardDismissed() 324 boolean animate, in performActionOnKeyguardDismissed() argument 329 entry, row, intent, isActivityIntent, animate); in performActionOnKeyguardDismissed() 342 return animate || !mPanelExpansionInteractor.isFullyCollapsed(); in performActionOnKeyguardDismissed() [all …]
|
D | PhoneStatusBarTransitions.java | 91 protected void onTransition(int oldMode, int newMode, boolean animate) { in onTransition() argument 92 super.onTransition(oldMode, newMode, animate); in onTransition() 93 applyMode(newMode, animate); in onTransition() 104 private void applyMode(int mode, boolean animate) { in applyMode() argument 112 if (animate) { in applyMode()
|
/frameworks/base/packages/SystemUI/customization/src/com/android/systemui/shared/clocks/ |
D | AnimatableClockView.kt | 304 animate = false, in <lambda>() 313 animate = true, in <lambda>() 326 animate = false, in <lambda>() 335 animate = true, in <lambda>() 343 fun animateFoldAppear(animate: Boolean = true) { in <lambda>() 352 animate = false, in <lambda>() 361 animate = animate, in <lambda>() 380 animate = true, in <lambda>() 390 animate = true, in <lambda>() 398 fun animateDoze(isDozing: Boolean, animate: Boolean) { in <lambda>() [all …]
|
/frameworks/base/core/java/android/inputmethodservice/navigationbar/ |
D | ButtonDispatcher.java | 156 public void setAlpha(float alpha, boolean animate) { in setAlpha() argument 157 setAlpha(alpha, animate, true /* cancelAnimator */); in setAlpha() 160 public void setAlpha(float alpha, boolean animate, long duration) { in setAlpha() argument 161 setAlpha(alpha, animate, duration, true /* cancelAnimator */); in setAlpha() 164 public void setAlpha(float alpha, boolean animate, boolean cancelAnimator) { in setAlpha() argument 167 animate, in setAlpha() 172 public void setAlpha(float alpha, boolean animate, long duration, boolean cancelAnimator) { in setAlpha() argument 173 if (mFadeAnimator != null && (cancelAnimator || animate)) { in setAlpha() 176 if (animate) { in setAlpha()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/ |
D | TextAnimatorTest.kt | 64 textAnimator.setTextStyle(weight = 400, animate = true) in testAnimationStarted() 94 textAnimator.setTextStyle(weight = 400, animate = false) in testAnimationNotStarted() 124 animate = true, in testAnimationEnded() 155 textAnimator.setTextStyle(weight = 400, animate = true) in testCacheTypeface() 159 textAnimator.setTextStyle(weight = 700, animate = true) in testCacheTypeface() 163 textAnimator.setTextStyle(weight = 400, animate = true) in testCacheTypeface()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/split/ |
D | DividerHandleView.java | 112 public void setTouching(boolean touching, boolean animate) { in setTouching() argument 116 setInputState(touching, animate, mTouchingWidth, mTouchingHeight); in setTouching() 121 public void setHovering(boolean hovering, boolean animate) { in setHovering() argument 125 setInputState(hovering, animate, mHoveringWidth, mHoveringHeight); in setHovering() 129 private void setInputState(boolean stateOn, boolean animate, int stateWidth, int stateHeight) { in setInputState() argument 134 if (!animate) { in setInputState()
|
/frameworks/base/core/java/android/widget/ |
D | ViewAnimator.java | 161 void showOnly(int childIndex, boolean animate) { in showOnly() argument 166 if (animate && mInAnimation != null) { in showOnly() 172 if (animate && mOutAnimation != null && child.getVisibility() == View.VISIBLE) { in showOnly() 188 final boolean animate = (!mFirstTime || mAnimateFirstTime); in showOnly() 189 showOnly(childIndex, animate); in showOnly() 364 public void setAnimateFirstView(boolean animate) { in setAnimateFirstView() argument 365 mAnimateFirstTime = animate; in setAnimateFirstView()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ |
D | TooltipManager.kt | 125 layout.animate() in <lambda>() 141 fun hide(animate: Boolean = false) { in <lambda>() 144 if (animate) { in <lambda>() 145 layout.animate() in <lambda>() 153 layout.animate().cancel() in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/buttons/ |
D | ButtonDispatcher.java | 175 public void setAlpha(float alpha, boolean animate) { in setAlpha() argument 176 setAlpha(alpha, animate, true /* cancelAnimator */); in setAlpha() 179 public void setAlpha(float alpha, boolean animate, long duration) { in setAlpha() argument 180 setAlpha(alpha, animate, duration, true /* cancelAnimator */); in setAlpha() 183 public void setAlpha(float alpha, boolean animate, boolean cancelAnimator) { in setAlpha() argument 186 animate, in setAlpha() 191 public void setAlpha(float alpha, boolean animate, long duration, boolean cancelAnimator) { in setAlpha() argument 192 if (mFadeAnimator != null && (cancelAnimator || animate)) { in setAlpha() 195 if (animate) { in setAlpha()
|