/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/ |
D | MotionPauseDetector.java | 134 boolean isPaused; in checkMotionPaused() 137 isPaused = speed < mSpeedFast || previousSpeed < mSpeedFast; in checkMotionPaused() 141 isPaused = false; in checkMotionPaused() 143 isPaused = speed < mSpeedVerySlow && previousSpeed < mSpeedVerySlow; in checkMotionPaused() 144 if (!isPaused && !mHasEverBeenPaused) { in checkMotionPaused() 149 isPaused = isRapidDeceleration && speed < mSpeedSomewhatFast; in checkMotionPaused() 156 isPaused = time - mSlowStartTime >= HARDER_TRIGGER_TIMEOUT; in checkMotionPaused() 159 isPaused = false; in checkMotionPaused() 164 updatePaused(isPaused); in checkMotionPaused() 167 private void updatePaused(boolean isPaused) { [all …]
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
D | TimerItemFragment.kt | 79 if (timer.isPaused) { in onClick() 107 if (clickedTimer.isPaused || clickedTimer.isReset) { in onClick()
|
D | TimerItem.kt | 103 if (!timer.isPaused || !blinkOff || mTimerText.isPressed) { in update()
|
/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/Launcher3/quickstep/src/com/android/quickstep/interaction/ |
D | NavBarGestureHandler.java | 260 public void onMotionPauseChanged(boolean isPaused) { in onMotionPauseChanged() argument 261 mGestureCallback.onMotionPaused(isPaused); in onMotionPauseChanged() 321 default void onMotionPaused(boolean isPaused) {} in onMotionPaused() argument
|
/packages/apps/Dialer/java/com/android/incallui/incall/protocol/ |
D | InCallButtonUi.java | 36 void setVideoPaused(boolean isPaused); in setVideoPaused() argument
|
/packages/apps/Dialer/java/com/android/incallui/videotech/ |
D | VideoTech.java | 49 boolean isPaused(); in isPaused() method
|
/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()
|
D | NewVoicemailMediaPlayer.java | 230 public boolean isPaused() { in isPaused() method in NewVoicemailMediaPlayer
|
/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 | StopwatchNotificationBuilder.kt | 142 .setAutoCancel(stopwatch.isPaused) in build()
|
/packages/apps/Dialer/java/com/android/incallui/videotech/empty/ |
D | EmptyVideoTech.java | 53 public boolean isPaused() { in isPaused() method in EmptyVideoTech
|
/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/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/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()
|
D | VideoCallFragment.java | 898 public void setVideoPaused(boolean isPaused) { in setVideoPaused() argument 899 LogUtil.i("VideoCallFragment.setVideoPaused", "isPaused: " + isPaused); in setVideoPaused() 900 cameraOffButton.setChecked(isPaused); in setVideoPaused()
|
/packages/apps/Camera2/src/com/android/camera/app/ |
D | AppController.java | 117 public boolean isPaused(); in isPaused() method
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/inputconsumers/ |
D | AccessibilityInputConsumer.java | 128 && mMotionPauseDetector.isPaused()) { in onMotionEvent()
|
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
D | StopwatchFragment.kt | 520 val blink = (stopwatch.isPaused && startTime % 1000 < 500 && !touchTarget.isPressed()) in <lambda>() 531 val period = (if (stopwatch.isPaused) { in <lambda>()
|
/packages/apps/Dialer/java/com/android/incallui/videotech/duo/ |
D | DuoVideoTech.java | 109 public boolean isPaused() { in isPaused() method in DuoVideoTech
|
/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()) {
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/ |
D | NoButtonNavbarToOverviewTouchController.java | 231 boolean goToHomeInsteadOfOverview = !mMotionPauseDetector.isPaused(); in goToOverviewOrHomeOnDragEnd()
|
/packages/apps/Dialer/java/com/android/incallui/videotech/ims/ |
D | ImsVideoTech.java | 113 public boolean isPaused() { in isPaused() method in ImsVideoTech
|
/packages/apps/Camera2/src/com/android/camera/captureintent/state/ |
D | StateOpeningCamera.java | 225 public boolean isPaused() { in isPaused() method in StateOpeningCamera
|