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

1 2

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/thread/
threadedmessagequeue_unittest.py 39 (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)
threadedmessagequeue.py 49 is_running = self._is_running
51 return (messages, is_running)
messagepump.py 53 (messages, is_running) = self._message_queue.take_all()
56 if not is_running:
  /external/chromium_org/chrome/test/mini_installer/
process_verifier.py 30 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/
animation_container_unittest.cc 93 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());
animation_container.h 52 bool is_running() const { return !elements_.empty(); } function in class:gfx::AnimationContainer
  /external/srec/srec/ca/
rec_basi.c 61 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/
proxy_message_pipe_endpoint.cc 35 DCHECK(!is_running());
55 if (!is_running()) {
72 if (is_running()) {
103 DCHECK(!is_running());
proxy_message_pipe_endpoint.h 75 bool is_running() const { function in class:mojo::system::ProxyMessagePipeEndpoint
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
path_unittest.py 74 self.assertTrue(path._CygPath._singleton.is_running())
80 self.assertFalse(path._CygPath._singleton.is_running())
path.py 87 def is_running(self): member in class:_CygPath
99 if not self.is_running():
  /external/chromium_org/content/child/
webthread_impl.cc 77 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/
webthread_impl.cc 78 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/
d8-debug.cc 10 void PrintPrompt(bool is_running) {
11 const char* prompt = is_running? "> " : "dbg> ";
  /external/chromium_org/third_party/skia/platform_tools/nacl/
httpd.py 61 # 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/
httpd.py 61 # 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/
ProcessKDP.cpp 875 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);
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/
local_server.py 102 def is_running(self): member in class:LocalServer
147 assert not server.is_running, 'Server already started'
  /external/chromium_org/chrome/browser/plugins/
plugin_observer.cc 300 bool is_running = false; local
302 is_running = base::GetTerminationStatus(plugin_handle, NULL) ==
307 if (is_running) {
  /external/chromium_org/chrome/browser/chromeos/dbus/
service_provider_test_helper.cc 160 if (message_loop_.is_running())
  /external/chromium_org/ui/compositor/
layer_animator.cc 454 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/
ProcessPOSIX.cpp 902 bool is_running = false; local
912 is_running = true;
916 return is_running;
  /external/chromium_org/base/message_loop/
message_loop.h 382 bool is_running() const;
  /external/chromium_org/chrome/browser/ui/views/
simple_message_box_views.cc 215 !base::MessageLoopForUI::current()->is_running() ||
  /external/chromium_org/net/dns/
host_resolver_impl.cc 1383 bool is_running() const { function in class:net::HostResolverImpl::Job
    [all...]

Completed in 616 milliseconds

1 2