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

1 2 3 4 5

  /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();
  /frameworks/opt/net/ims/src/java/com/android/ims/internal/
VideoPauseTracker.java 78 boolean wasPaused = isPaused();
109 boolean wasPaused = isPaused();
111 boolean isPaused = isPaused();
113 if (wasPaused && !isPaused) {
118 } else if (wasPaused && isPaused) {
139 public boolean isPaused() {
ImsVideoCallProviderWrapper.java 305 !VideoProfile.isPaused(mCurrentVideoState)) {
368 boolean fromPaused = VideoProfile.isPaused(from);
369 boolean toPaused = VideoProfile.isPaused(to);
383 boolean fromPaused = VideoProfile.isPaused(from);
384 boolean toPaused = VideoProfile.isPaused(to);
445 VideoProfile.isPaused(fromVideoState) &&
446 VideoProfile.isPaused(toVideoState));
572 if (VideoProfile.isPaused(mCurrentVideoState) && !VideoProfile.isPaused(newVideoState)) {
  /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));
  /packages/apps/Dialer/java/com/android/incallui/incall/protocol/
InCallButtonUi.java 35 void setVideoPaused(boolean isPaused);
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
BaseTween.java 34 private boolean isPaused; // true if pause() was called
53 isStarted = isInitialized = isFinished = isKilled = isPaused = false;
133 isPaused = true;
140 isPaused = false;
339 public boolean isPaused() {
340 return isPaused;
414 if (!isStarted || isPaused || isKilled) return;
TweenManager.java 52 private boolean isPaused = false;
133 isPaused = true;
140 isPaused = false;
164 if (!isPaused) {
  /external/webrtc/talk/app/webrtc/objc/
RTCEAGLVideoView.m 45 @property(nonatomic) BOOL isPaused;
77 - (BOOL)isPaused {
81 - (void)setIsPaused:(BOOL)isPaused {
82 _displayLink.paused = isPaused;
259 _timer.isPaused = NO;
264 _timer.isPaused = YES;
  /external/webrtc/webrtc/api/objc/
RTCEAGLVideoView.m 24 @property(nonatomic) BOOL isPaused;
56 - (BOOL)isPaused {
60 - (void)setIsPaused:(BOOL)isPaused {
61 _displayLink.paused = isPaused;
241 _timer.isPaused = NO;
246 _timer.isPaused = YES;
  /external/swiftshader/src/OpenGL/libGLESv2/
TransformFeedback.h 45 bool isPaused() const;
TransformFeedback.cpp 68 if(isActive() && !isPaused())
84 bool TransformFeedback::isPaused() const
  /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/debugger/QT/
SkDebuggerGUI.h 189 void pauseDrawing(bool isPaused = true);
334 bool isPaused() const {
  /frameworks/base/telecomm/java/android/telecom/
VideoProfile.java 249 if (isPaused(videoState)) {
319 public static boolean isPaused(@VideoState int videoState) {
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerItemFragment.java 99 if (timer.isPaused()) {
129 if (clickedTimer.isPaused() || clickedTimer.isReset()) {
  /external/skia/gm/
SkAnimTimer.h 37 bool isPaused() const { return kPaused_State == fState; }
  /packages/apps/DeskClock/src/com/android/deskclock/data/
Stopwatch.java 60 public boolean isPaused() { return mState == PAUSED; }
  /external/v8/src/inspector/
v8-debugger-agent-impl.cc 177 if (isPaused()) m_debugger->continueProgram();
553 if (!isPaused()) return Response::Error(kDebuggerNotPaused);
610 m_javaScriptPauseScheduled || isPaused() ||
620 isPaused())
626 if (m_javaScriptPauseScheduled || isPaused()) return;
633 if (m_javaScriptPauseScheduled || isPaused()) return Response::OK();
642 if (!isPaused()) return Response::Error(kDebuggerNotPaused);
650 if (!isPaused()) return Response::Error(kDebuggerNotPaused);
662 if (!isPaused()) return Response::Error(kDebuggerNotPaused);
670 if (!isPaused()) return Response::Error(kDebuggerNotPaused)
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
Scheduler.java 26 public boolean isPaused() {
  /frameworks/base/core/tests/coretests/src/android/animation/
ValueAnimatorTests.java 239 assertFalse(a1.isPaused());
240 assertFalse(a2.isPaused());
245 assertFalse(a1.isPaused());
246 assertFalse(a2.isPaused());
259 assertTrue(a1.isPaused());
260 assertFalse(a2.isPaused());
274 assertTrue(a1.isPaused());
286 assertFalse(a1.isPaused());
297 assertFalse(a1.isPaused());
    [all...]
  /packages/apps/Camera2/src/com/android/camera/app/
AppController.java 117 public boolean isPaused();
  /external/robolectric/v1/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 397 boolean isPaused = isVideoStateSet(videoState, VideoProfile.STATE_PAUSED);
398 if (isPaused) {

Completed in 707 milliseconds

1 2 3 4 5