HomeSort by relevance Sort by last modified time
    Searched refs:isPaused (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/glide/library/src/main/java/com/bumptech/glide/manager/
RequestTracker.java 20 private boolean isPaused;
27 if (!isPaused) {
47 public boolean isPaused() {
48 return isPaused;
55 isPaused = true;
67 isPaused = false;
92 if (!isPaused) {
  /external/glide/library/src/main/java/com/bumptech/glide/request/
Request.java 27 boolean isPaused();
ThumbnailRequestCoordinator.java 94 public boolean isPaused() {
95 return full.isPaused();
  /cts/tests/tests/telecom/src/android/telecom/cts/
VideoProfileTest.java 68 assertTrue(VideoProfile.isPaused(VideoProfile.STATE_PAUSED));
69 assertTrue(VideoProfile.isPaused(VideoProfile.STATE_BIDIRECTIONAL |
71 assertTrue(VideoProfile.isPaused(VideoProfile.STATE_TX_ENABLED |
73 assertTrue(VideoProfile.isPaused(VideoProfile.STATE_RX_ENABLED |
76 assertFalse(VideoProfile.isPaused(VideoProfile.STATE_AUDIO_ONLY));
77 assertFalse(VideoProfile.isPaused(VideoProfile.STATE_TX_ENABLED));
78 assertFalse(VideoProfile.isPaused(VideoProfile.STATE_RX_ENABLED));
79 assertFalse(VideoProfile.isPaused(VideoProfile.STATE_BIDIRECTIONAL));
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediaplayback/
MediaPlayerApiTest.java 140 boolean isPaused = CodecTest.pause(MediaNames.MP3CBR);
141 assertTrue("MP3CBR Pause", isPaused);
146 boolean isPaused = CodecTest.pause(MediaNames.MP3VBR);
147 assertTrue("MP3VBR Pause", isPaused);
152 boolean isPaused = CodecTest.pause(MediaNames.MIDI);
153 assertTrue("MIDI Pause", isPaused);
158 boolean isPaused = CodecTest.pause(MediaNames.AMR);
159 assertTrue("AMR Pause", isPaused);
164 boolean isPaused = CodecTest.pause(MediaNames.OGG);
165 assertTrue("OGG Pause", isPaused);
    [all...]
  /external/skia/gm/
SkAnimTimer.h 36 bool isPaused() const { return kPaused_State == fState; }
  /external/skia/debugger/QT/
SkDebuggerGUI.h 198 void pauseDrawing(bool isPaused = true);
346 bool isPaused() const {
  /frameworks/base/telecomm/java/android/telecom/
VideoProfile.java 229 if (isPaused(videoState)) {
296 public static boolean isPaused(int videoState) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
Scheduler.java 26 public boolean isPaused() {
  /packages/apps/Camera2/src/com/android/camera/app/
AppController.java 117 public boolean isPaused();
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouterActivity.java 146 long pos = item.getPosition() + (mSessionManager.isPaused() ?
315 if (mSessionManager.isPaused()) {
426 if (mSessionManager.isPaused()) {
436 if (mSessionManager.isPaused()) {
444 if (!mSessionManager.isPaused()) {
481 if (!mPlayer.isRemotePlayback() && !mSessionManager.isPaused()) {
545 long timeDelta = mSessionManager.isPaused() ? 0 :
581 mPauseResumeButton.setImageResource(mSessionManager.isPaused() ?
SessionManager.java 53 public boolean isPaused() {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/
RobolectricTest.java 92 assertThat(Robolectric.getBackgroundScheduler().isPaused(), equalTo(false));
98 assertThat(Robolectric.getBackgroundScheduler().isPaused(), equalTo(false));
  /frameworks/base/telephony/java/com/android/ims/
ImsCallProfile.java 354 boolean isPaused = isVideoStateSet(videoState, VideoProfile.STATE_PAUSED);
355 if (isPaused) {
  /frameworks/base/core/java/android/animation/
Animator.java 103 * @see #isPaused()
127 * @see #isPaused()
152 public boolean isPaused() {
528 * queries to {@link #isStarted()}, {@link #isRunning()}, and {@link #isPaused()}
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 80 private boolean isPaused = false;
90 isPaused = true;
96 isPaused = false;
115 if (!isPaused) {
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 78 private boolean isPaused = false;
87 isPaused = true;
93 isPaused = false;
112 if (!isPaused) {
  /external/glide/library/src/main/java/com/bumptech/glide/
RequestManager.java 118 public boolean isPaused() {
120 return requestTracker.isPaused();
126 * @see #isPaused()
137 * @see #isPaused()
  /frameworks/av/services/audioflinger/
PlaybackTracks.h 95 bool isPaused() const { return mState == PAUSED; }
  /frameworks/base/core/java/android/webkit/
WebViewProvider.java 199 public boolean isPaused();
  /packages/apps/InCallUI/src/com/android/incallui/
VideoCallPresenter.java 773 boolean isPaused = VideoProfile.isPaused(videoState);
776 ui.showVideoViews(true, !isPaused && isCallActive);
780 ui.showVideoViews(false, !isPaused && isCallActive);
    [all...]
  /frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
LocalRenderer.java 525 } else if (!isPaused()) {
578 public boolean isPaused() {
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 906 * @param isPaused Set to true When a pause is received or false after
909 public void setLastRunPaused(boolean isPaused) {
911 .putBoolean(KEY_LAST_RUN_PAUSED, isPaused)
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
Filter.java 753 if (runner != null && !runner.isPaused() && !runner.isStopped()) {
  /packages/apps/Camera2/src/com/android/camera/captureintent/state/
StateOpeningCamera.java 225 public boolean isPaused() {

Completed in 765 milliseconds

1 2 3