Searched refs:is_running (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/thread/
H A Dthreadedmessagequeue_unittest.py39 (messages, is_running) = queue.take_all()
41 self.assertTrue(is_running)
42 (messages, is_running) = queue.take_all()
44 self.assertTrue(is_running)
48 (messages, is_running) = queue.take_all()
50 self.assertFalse(is_running)
51 (messages, is_running) = queue.take_all()
53 self.assertFalse(is_running)
H A Dthreadedmessagequeue.py49 is_running = self._is_running
51 return (messages, is_running)
H A Dmessagepump.py53 (messages, is_running) = self._message_queue.take_all()
56 if not is_running:
/external/chromium_org/chrome/test/mini_installer/
H A Dprocess_verifier.py30 is_running = process_path in running_process_paths
31 assert expectation['running'] == is_running, \
32 ('Process %s is running' % process_path) if is_running else \
/external/chromium_org/ui/gfx/animation/
H A Danimation_container_unittest.cc93 EXPECT_TRUE(container->is_running());
95 EXPECT_TRUE(container->is_running());
105 EXPECT_FALSE(container->is_running());
120 EXPECT_TRUE(container->is_running());
133 EXPECT_FALSE(container->is_running());
H A Danimation_container.h52 bool is_running() const { return !elements_.empty(); } function in class:gfx::AnimationContainer
/external/srec/srec/ca/
H A Drec_basi.c61 hRecog->is_running = False;
119 if (hRecog->is_running == True)
162 if (hRecog->is_running == True)
169 hRecog->is_running = True;
186 if (hRecog->is_running == False)
213 if (hRecog->is_running == False)
231 hRecog->is_running = False;
/external/chromium_org/mojo/system/
H A Dproxy_message_pipe_endpoint.cc35 DCHECK(!is_running());
55 if (!is_running()) {
72 if (is_running()) {
103 DCHECK(!is_running());
H A Dproxy_message_pipe_endpoint.h75 bool is_running() const { function in class:mojo::system::ProxyMessagePipeEndpoint
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dpath_unittest.py74 self.assertTrue(path._CygPath._singleton.is_running())
80 self.assertFalse(path._CygPath._singleton.is_running())
H A Dpath.py87 def is_running(self): member in class:_CygPath
99 if not self.is_running():
/external/chromium_org/content/child/
H A Dwebthread_impl.cc77 CHECK(!thread_->message_loop()->is_running()); // We don't support nesting.
83 CHECK(thread_->message_loop()->is_running());
115 CHECK(!base::MessageLoop::current()->is_running());
121 CHECK(base::MessageLoop::current()->is_running());
/external/chromium_org/mojo/examples/html_viewer/
H A Dwebthread_impl.cc78 CHECK(!thread_->message_loop()->is_running()); // We don't support nesting.
84 CHECK(thread_->message_loop()->is_running());
116 CHECK(!base::MessageLoop::current()->is_running());
122 CHECK(base::MessageLoop::current()->is_running());
/external/chromium_org/v8/src/
H A Dd8-debug.cc10 void PrintPrompt(bool is_running) { argument
11 const char* prompt = is_running? "> " : "dbg> ";
/external/chromium_org/third_party/skia/platform_tools/nacl/
H A Dhttpd.py61 # An HTTP server that will quit when |is_running| is set to False. We also use
67 self.is_running = True
69 while self.is_running:
73 self.is_running = False
/external/skia/platform_tools/nacl/
H A Dhttpd.py61 # An HTTP server that will quit when |is_running| is set to False. We also use
67 self.is_running = True
69 while self.is_running:
73 self.is_running = False
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.cpp875 bool is_running = false; local
883 is_running = true;
896 is_running = false;
918 is_running = false;
927 is_running = false;
930 } while (is_running);
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dlocal_server.py102 def is_running(self): member in class:LocalServer
147 assert not server.is_running, 'Server already started'
/external/chromium_org/chrome/browser/plugins/
H A Dplugin_observer.cc300 bool is_running = false; local
302 is_running = base::GetTerminationStatus(plugin_handle, NULL) ==
307 if (is_running) {
/external/chromium_org/chrome/browser/chromeos/dbus/
H A Dservice_provider_test_helper.cc160 if (message_loop_.is_running())
/external/chromium_org/ui/compositor/
H A Dlayer_animator.cc454 bool is_running = false; local
461 is_running = true;
503 if (is_running) {
683 bool is_running = false; local
687 is_running = true;
692 if (!is_running)
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIX.cpp902 bool is_running = false; local
912 is_running = true;
916 return is_running;
/external/chromium_org/chrome/browser/ui/views/
H A Dsimple_message_box_views.cc215 !base::MessageLoopForUI::current()->is_running() ||
/external/chromium_org/net/dns/
H A Dhost_resolver_impl.cc1224 if (is_running()) {
1332 DCHECK(is_running());
1348 DCHECK(!is_running());
1383 bool is_running() const { function in class:net::HostResolverImpl::Job
1437 DCHECK(!is_running());
1653 if (is_running()) {
2191 if (job->is_running()) {
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideocapturer.cc172 bool is_running = capture_state() == CS_STARTING || local
174 if (!is_running) {

Completed in 680 milliseconds

12