/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/ |
D | MotionPauseDetector.java | 131 boolean isPaused; in checkMotionPaused() 134 isPaused = speed < mSpeedFast || previousSpeed < mSpeedFast; in checkMotionPaused() 138 isPaused = false; in checkMotionPaused() 140 isPaused = speed < mSpeedVerySlow && previousSpeed < mSpeedVerySlow; in checkMotionPaused() 141 if (!isPaused && !mHasEverBeenPaused) { in checkMotionPaused() 146 isPaused = isRapidDeceleration && speed < mSpeedSomewhatFast; in checkMotionPaused() 153 isPaused = time - mSlowStartTime >= HARDER_TRIGGER_TIMEOUT; in checkMotionPaused() 156 isPaused = false; in checkMotionPaused() 161 updatePaused(isPaused); in checkMotionPaused() 164 private void updatePaused(boolean isPaused) { [all …]
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/touchcontrollers/ |
D | FlingAndHoldTouchController.java | 88 mMotionPauseDetector.setOnMotionPauseListener(isPaused -> { in onDragStart() 90 recentsView.setOverviewStateEnabled(isPaused); in onDragStart() 94 LauncherState fromState = isPaused ? NORMAL : OVERVIEW_PEEK; in onDragStart() 95 LauncherState toState = isPaused ? OVERVIEW_PEEK : NORMAL; in onDragStart() 96 long peekDuration = isPaused ? PEEK_IN_ANIM_DURATION : PEEK_OUT_ANIM_DURATION; in onDragStart() 108 mLauncher.getDragLayer().getScrim().animateToSysuiMultiplier(isPaused ? 0 : 1, in onDragStart() 173 if (mMotionPauseDetector.isPaused() && handlingOverviewAnim()) { in onDragEnd()
|
D | NoButtonQuickSwitchTouchController.java | 184 public void onMotionPauseChanged(boolean isPaused) { in onMotionPauseChanged() argument 185 ShelfAnimState shelfState = isPaused ? PEEK : HIDE; in onMotionPauseChanged() 328 if (mMotionPauseDetector.isPaused() && noFling) { in onDragEnd()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/inputconsumers/ |
D | ScreenPinnedInputConsumer.java | 47 mMotionPauseDetector.setOnMotionPauseListener(isPaused -> { in ScreenPinnedInputConsumer() 48 if (isPaused) { in ScreenPinnedInputConsumer()
|
D | FallbackNoButtonInputConsumer.java | 213 public void onMotionPauseChanged(boolean isPaused) { in onMotionPauseChanged() argument 215 mIsMotionPaused = isPaused; in onMotionPauseChanged() 216 mLauncherAlpha.animateToValue(mLauncherAlpha.value, isPaused ? 0 : 1) in onMotionPauseChanged()
|
D | AccessibilityInputConsumer.java | 133 if (mAllowLongClick && mMotionPauseDetector.isPaused()) { in onMotionEvent()
|
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/ |
D | NativeNfcTag.java | 80 private boolean isPaused = false; field in NativeNfcTag.PresenceCheckWatchdog 90 isPaused = true; in pause() 96 isPaused = false; in doResume() 118 if (!isPaused) { in run()
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
D | TimerItemFragment.kt | 80 if (timer.isPaused) { in onClick() 108 if (clickedTimer.isPaused || clickedTimer.isReset) { in onClick()
|
D | TimerItemFragment.java | 99 if (timer.isPaused()) { in onClick() 129 if (clickedTimer.isPaused() || clickedTimer.isReset()) { in onClick()
|
/packages/apps/Launcher3/src/com/android/launcher3/anim/ |
D | SpringObjectAnimator.java | 211 public boolean isPaused() { in isPaused() method in SpringObjectAnimator 212 return mObjectAnimator.isPaused(); in isPaused()
|
/packages/apps/Dialer/java/com/android/dialer/voicemail/listui/ |
D | NewVoicemailAdapter.java | 523 if (mediaPlayer.isPaused() in expandViewHolderFirstTimeAndCollapseAllOtherVisibleViewHolders() 800 if (mediaPlayer.isPaused()) { in recursivelyUpdateMediaPlayerViewOfExpandedViewHolder() 877 mediaPlayer.isPaused(), in recursivelyUpdateMediaPlayerViewOfExpandedViewHolder()
|
/packages/apps/Dialer/java/com/android/incallui/incall/protocol/ |
D | InCallButtonUi.java | 36 void setVideoPaused(boolean isPaused); in setVideoPaused() argument
|
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
D | TimerModel.kt | 345 if (timer.isRunning || timer.isPaused) { in resetUnexpiredTimers() 695 if (timer.isRunning || timer.isPaused) { in updateNotification()
|
D | Stopwatch.kt | 44 val isPaused: Boolean constant in com.android.deskclock.data.Stopwatch
|
D | Stopwatch.java | 60 public boolean isPaused() { return mState == PAUSED; } in isPaused() method in Stopwatch
|
D | TimerModel.java | 386 if (timer.isRunning() || timer.isPaused()) { in resetUnexpiredTimers() 738 if (timer.isRunning() || timer.isPaused()) { in updateNotification()
|
/packages/apps/Dialer/java/com/android/incallui/ |
D | VideoCallPresenter.java | 168 boolean isPaused = VideoProfile.isPaused(videoState); in showIncomingVideo() 174 return !isPaused in showIncomingVideo()
|
/packages/apps/Dialer/java/com/android/incallui/videotech/ |
D | VideoTech.java | 49 boolean isPaused(); in isPaused() method
|
/packages/apps/Dialer/java/com/android/incallui/video/impl/ |
D | SurfaceViewVideoCallFragment.java | 786 public void setVideoPaused(boolean isPaused) { in setVideoPaused() argument 787 LogUtil.i("SurfaceViewVideoCallFragment.setVideoPaused", "isPaused: " + isPaused); in setVideoPaused() 788 cameraOffButton.setChecked(isPaused); in setVideoPaused()
|
/packages/apps/TV/src/com/android/tv/ui/ |
D | TvOverlayManager.java | 439 if (mMainActivity.getTimeShiftManager().isPaused()) { in showMenuWithTimeShiftPauseIfNeeded() 911 menuAboutToShow = mMainActivity.getTimeShiftManager().isPaused(); in onOverlayClosed() 1099 if (timeShiftManager.isPaused()) { in onKeyUp()
|
/packages/apps/Dialer/java/com/android/incallui/videotech/empty/ |
D | EmptyVideoTech.java | 53 public boolean isPaused() { in isPaused() method in EmptyVideoTech
|
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
D | StopwatchFragment.kt | 521 val blink = (stopwatch.isPaused && startTime % 1000 < 500 && !touchTarget.isPressed()) in <lambda>() 532 val period = (if (stopwatch.isPaused) { in <lambda>()
|
D | StopwatchFragment.java | 546 final boolean blink = stopwatch.isPaused() in run() 559 final long period = stopwatch.isPaused() in run()
|
/packages/apps/Camera2/src/com/android/camera/app/ |
D | AppController.java | 117 public boolean isPaused(); in isPaused() method
|
/packages/apps/Camera2/src/com/android/camera/ |
D | CaptureModule.java | 652 if(!mAppController.isPaused()) { in reopenCamera() 1384 boolean isControllerPaused = mAppController.isPaused(); 1410 if (mAppController.isPaused()) {
|