Home
last modified time | relevance | path

Searched refs:isPaused (Results 1 – 25 of 37) sorted by relevance

12

/external/glide/library/src/main/java/com/bumptech/glide/manager/
DRequestTracker.java20 private boolean isPaused; field in RequestTracker
27 if (!isPaused) { in runRequest()
47 public boolean isPaused() { in isPaused() method in RequestTracker
48 return isPaused; in isPaused()
55 isPaused = true; in pauseRequests()
67 isPaused = false; in resumeRequests()
92 if (!isPaused) { in restartRequests()
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
DBaseTween.java34 private boolean isPaused; // true if pause() was called field in BaseTween
53 isStarted = isInitialized = isFinished = isKilled = isPaused = false; in reset()
133 isPaused = true; in pause()
140 isPaused = false; in resume()
339 public boolean isPaused() { in isPaused() method in BaseTween
340 return isPaused; in isPaused()
414 if (!isStarted || isPaused || isKilled) return; in update()
DTweenManager.java52 private boolean isPaused = false; field in TweenManager
133 isPaused = true; in pause()
140 isPaused = false; in resume()
164 if (!isPaused) { in update()
/external/webrtc/webrtc/api/objc/
DRTCEAGLVideoView.m24 @property(nonatomic) BOOL isPaused; property
56 - (BOOL)isPaused { method
60 - (void)setIsPaused:(BOOL)isPaused {
61 _displayLink.paused = isPaused;
241 _timer.isPaused = NO;
246 _timer.isPaused = YES;
/external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
DScheduler.java131 public boolean isPaused() { in isPaused() method in Scheduler
159 …if ((idleState != CONSTANT_IDLE && (isPaused() || delayMillis > 0)) || Thread.currentThread() != a… in postDelayed()
172 if (isPaused() || Thread.currentThread() != associatedThread) { in postAtFrontOfQueue()
/external/webrtc/talk/app/webrtc/objc/
DRTCEAGLVideoView.m45 @property(nonatomic) BOOL isPaused; property
77 - (BOOL)isPaused { method
81 - (void)setIsPaused:(BOOL)isPaused {
82 _displayLink.paused = isPaused;
259 _timer.isPaused = NO;
264 _timer.isPaused = YES;
/external/glide/library/src/main/java/com/bumptech/glide/request/
DThumbnailRequestCoordinator.java94 public boolean isPaused() { in isPaused() method in ThumbnailRequestCoordinator
95 return full.isPaused(); in isPaused()
DRequest.java27 boolean isPaused(); in isPaused() method
/external/swiftshader/src/OpenGL/libGLESv2/
DTransformFeedback.cpp68 if(isActive() && !isPaused()) in addVertexOffset()
84 bool TransformFeedback::isPaused() const in isPaused() function in es2::TransformFeedback
DTransformFeedback.h45 bool isPaused() const;
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowLooper.java350 public boolean isPaused() { in isPaused() method in ShadowLooper
351 return getScheduler().isPaused(); in isPaused()
355 boolean wasPaused = isPaused(); in setPaused()
/external/v8/src/inspector/
Dv8-debugger.cc189 if (isPaused()) { in disable()
214 return isPaused() && m_pausedContextGroupId == contextGroupId; in isPausedInContextGroup()
264 if (isPaused()) return; in setPauseOnNextCall()
285 if (isPaused()) return; in breakProgram()
293 if (isPaused()) return; in interruptAndBreak()
303 if (isPaused()) m_inspector->client()->quitMessageLoopOnPause(); in continueProgram()
310 if (isPaused()) return; in breakProgramOnAssert()
320 DCHECK(isPaused()); in stepIntoStatement()
330 DCHECK(isPaused()); in stepOverStatement()
339 DCHECK(isPaused()); in stepOutOfFunction()
[all …]
Dv8-debugger-agent-impl.cc335 if (isPaused()) { in enableImpl()
697 if (!isPaused()) return Response::Error(kDebuggerNotPaused); in continueToLocation()
905 if (!isPaused()) return Response::Error(kDebuggerNotPaused); in restartFrame()
953 if (isPaused() || !acceptsPause(false) || !m_breakpointsActive) return; in schedulePauseOnNextStatement()
961 if (isPaused() || !acceptsPause(false) || !m_breakpointsActive) return; in cancelPauseOnNextStatement()
970 if (isPaused()) return Response::OK(); in pause()
983 if (!isPaused()) return Response::Error(kDebuggerNotPaused); in resume()
990 if (!isPaused()) return Response::Error(kDebuggerNotPaused); in stepOver()
997 if (!isPaused()) return Response::Error(kDebuggerNotPaused); in stepInto()
1005 if (!isPaused()) return Response::Error(kDebuggerNotPaused); in stepOut()
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
DRobolectricTest.java71 assertThat(Robolectric.getBackgroundThreadScheduler().isPaused()).isFalse(); in shouldResetBackgroundSchedulerBeforeTests()
77 assertThat(Robolectric.getBackgroundThreadScheduler().isPaused()).isFalse(); in shouldResetBackgroundSchedulerAfterTests()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/controller/
DIntentServiceControllerTest.java64 assertThat(shadowOf(Looper.getMainLooper()).isPaused()).isFalse(); in whenLooperIsNotPaused_shouldCreateWithMainLooperPaused()
72 assertThat(shadowOf(Looper.getMainLooper()).isPaused()).isTrue(); in whenLooperIsAlreadyPaused_shouldCreateWithMainLooperPaused()
DServiceControllerTest.java65 assertThat(shadowOf(Looper.getMainLooper()).isPaused()).isFalse(); in whenLooperIsNotPaused_shouldCreateWithMainLooperPaused()
73 assertThat(shadowOf(Looper.getMainLooper()).isPaused()).isTrue(); in whenLooperIsAlreadyPaused_shouldCreateWithMainLooperPaused()
DActivityControllerTest.java110 assertThat(shadowOf(Looper.getMainLooper()).isPaused()).isFalse(); in whenLooperIsNotPaused_shouldCreateWithMainLooperPaused()
118 assertThat(shadowOf(Looper.getMainLooper()).isPaused()).isTrue(); in whenLooperIsAlreadyPaused_shouldCreateWithMainLooperPaused()
DFragmentControllerTest.java95 public void isPaused() { in isPaused() method in FragmentControllerTest
/external/robolectric-shadows/utils/src/test/java/org/robolectric/util/
DSchedulerTest.java37 assertThat(scheduler.isPaused()).isFalse(); in whenIdleStateIsConstantIdle_isPausedReturnsFalse()
43 assertThat(scheduler.isPaused()).isFalse(); in whenIdleStateIsUnPaused_isPausedReturnsFalse()
49 assertThat(scheduler.isPaused()).isTrue(); in whenIdleStateIsPaused_isPausedReturnsTrue()
548 scheduler.isPaused(); in schedulerAllowsConcurrentIsPaused_whileLockIsHeld()
/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
DTimelineApplet.java50 private boolean isPaused = false; field in TimelineApplet
104 if (canvas.getTimeline() == null || isPaused) return; in load()
210 if (isPaused) return; in update()
584 isPaused = true; in pauseBtnActionPerformed()
588 isPaused = false; in resumeBtnActionPerformed()
/external/skqp/tools/timer/
DSkAnimTimer.h44 bool isPaused() const { return kPaused_State == fState; } in isPaused() function
/external/skia/tools/timer/
DSkAnimTimer.h44 bool isPaused() const { return kPaused_State == fState; } in isPaused() function
/external/glide/library/src/main/java/com/bumptech/glide/
DRequestManager.java118 public boolean isPaused() { in isPaused() method in RequestManager
120 return requestTracker.isPaused(); in isPaused()
/external/replicaisland/src/com/replica/replicaisland/
DAndouKun.java334 if (!mGame.isPaused()) { in onTrackballEvent()
344 if (!mGame.isPaused()) { in onTouchEvent()
374 if (mGame.isPaused()) { in onKeyDown()
/external/robolectric-shadows/shadows/supportv4/src/test/java/org/robolectric/shadows/support/v4/
DSupportFragmentControllerTest.java100 public void isPaused() { in isPaused() method in SupportFragmentControllerTest

12