Searched refs:isRunning (Results 1 - 25 of 100) sorted by relevance

1234

/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DLocationProviderTest.java36 assertTrue("Should be running", mLocationProvider.isRunning());
38 assertFalse("Should have stopped", mLocationProvider.isRunning());
49 assertTrue("Should be running", mLocationProvider.isRunning());
51 assertTrue("Should be running", mLocationProvider.isRunning());
53 assertFalse("Should have stopped", mLocationProvider.isRunning());
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifDrawable.java22 private boolean isRunning; field in class:GifDrawable
37 if (!isRunning) {
38 isRunning = true;
67 isRunning = false;
71 public boolean isRunning() { method in class:GifDrawable
72 return isRunning;
76 void setIsRunning(boolean isRunning) { argument
77 this.isRunning = isRunning;
108 } if (!isRunning) {
[all...]
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DStopwatch.java74 private boolean isRunning; field in class:Stopwatch
99 public boolean isRunning() { method in class:Stopwatch
100 return isRunning;
110 checkState(!isRunning);
111 isRunning = true;
125 checkState(isRunning);
126 isRunning = false;
139 isRunning = false;
144 return isRunning ? ticker.read() - startTick + elapsedNanos : elapsedNanos;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DClockTest.cpp45 EXPECT_FALSE(clock->isRunning());
47 EXPECT_TRUE(clock->isRunning());
49 EXPECT_FALSE(clock->isRunning());
H A DClock.h47 bool isRunning() const { return m_running; } function in class:blink::Clock
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DRequest.java24 public boolean isRunning(); method in interface:Request
H A DThumbnailRequestCoordinator.java54 if (!thumb.isRunning()) {
57 if (!full.isRunning()) {
69 public boolean isRunning() { method in class:ThumbnailRequestCoordinator
70 return full.isRunning();
/external/guava/guava/src/com/google/common/base/
H A DStopwatch.java75 private boolean isRunning; field in class:Stopwatch
100 public boolean isRunning() { method in class:Stopwatch
101 return isRunning;
111 checkState(!isRunning);
112 isRunning = true;
126 checkState(isRunning);
127 isRunning = false;
140 isRunning = false;
145 return isRunning ? ticker.read() - startTick + elapsedNanos : elapsedNanos;
/external/chromium_org/third_party/webrtc/examples/android/opensl_loopback/src/org/webrtc/app/
H A DOpenSlDemo.java26 private boolean isRunning = false; field in class:OpenSlDemo
58 if (isRunning) {
61 isRunning = false;
62 } else if (!isRunning){
65 isRunning = true;
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserThread.cpp66 if (blink::Platform::current()->currentThread() && s_sharedThread->isRunning()) {
85 if (!isRunning()) {
92 bool HTMLParserThread::isRunning() function in class:blink::HTMLParserThread
H A DHTMLParserThread.h50 bool isRunning();
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-suspend.js52 assertTrue(dcp.isRunning());
61 assertTrue(dcp.isRunning());
70 assertFalse(dcp.isRunning());
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dsimplethread.h18 UBool isRunning(); // return true if a started thread has exited.
/external/deqp/execserver/
H A DxsPosixFileReader.hpp44 bool isRunning (void) const { return m_isRunning; } function in class:xs::posix::FileReader
H A DxsTestProcess.hpp48 virtual bool isRunning (void) = DE_NULL;
/external/icu/icu4c/source/test/intltest/
H A Dsimplethread.h18 UBool isRunning(); // return true if a started thread has exited.
/external/smack/src/org/jivesoftware/smackx/workgroup/util/
H A DListenerEventDispatcher.java41 protected transient boolean isRunning; field in class:ListenerEventDispatcher
49 this.isRunning = false;
71 if (!this.isRunning) {
87 this.isRunning = true;
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingService.java57 @Override public boolean isRunning() { method in class:ForwardingService
58 return delegate().isRunning();
H A DService.java82 boolean isRunning(); method in interface:Service
H A DAbstractExecutionThreadService.java50 if (isRunning()) {
90 * while ({@link #isRunning()}) {
145 @Override public final boolean isRunning() { method in class:AbstractExecutionThreadService
146 return delegate.isRunning();
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DTCPMessageProcessor.java62 private boolean isRunning; field in class:TCPMessageProcessor
102 this.isRunning = true;
112 while (this.isRunning) {
124 if (!this.isRunning)
142 this.isRunning = false;
176 isRunning = false;
H A DUDPMessageProcessor.java85 protected boolean isRunning; field in class:UDPMessageProcessor
151 this.isRunning = true;
182 while (this.isRunning) {
252 isRunning = false;
259 isRunning = false;
280 this.isRunning = false;
H A DTLSMessageProcessor.java71 private boolean isRunning; field in class:TLSMessageProcessor
116 this.isRunning = true;
126 while (this.isRunning) {
138 if (!this.isRunning)
158 if ( this.isRunning ) {
161 this.isRunning = false;
165 this.isRunning = false;
192 if (!isRunning)
195 isRunning = false;
/external/deqp/framework/delibs/decpp/
H A DdeProcess.hpp53 bool isRunning (void) { return deProcess_isRunning(m_process) == DE_TRUE; } function in class:de::Process
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DLocationProviderAdapter.java73 public boolean isRunning() { method in class:LocationProviderAdapter
75 return mImpl.isRunning();

Completed in 432 milliseconds

1234