HomeSort by relevance Sort by last modified time
    Searched defs:Quit (Results 1 - 19 of 19) sorted by null

  /external/chromium/base/
message_pump_default.cc 18 DCHECK(keep_running_) << "Quit must have been called outside of Run!";
60 void MessagePumpDefault::Quit() {
message_loop_proxy_impl_unittest.cc 17 Quit();
20 void Quit() const {
47 test->Quit();
71 test_->Quit();
message_pump_glib.cc 204 // callbacks. This is so we only quit our own loops, and we don't quit
321 void MessagePumpForUI::Quit() {
325 NOTREACHED() << "Quit called outside Run!";
message_pump_glib_unittest.cc 139 MessageLoop::current()->Quit();
185 // Checks that Quit works and that the basic infrastructure is working.
187 // Quit from a task
193 // Quit from an event
236 // quit.
252 // quit.
277 // And then quit (relies on the condition tested by TestEventTaskInterleave).
287 // It will quit the main loop once enough tasks and events have been processed,
302 MessageLoop::current()->Quit();
314 MessageLoop::current()->Quit();
    [all...]
message_pump_libevent.cc 212 DCHECK(keep_running_) << "Quit must have been called outside of Run!";
266 void MessagePumpLibevent::Quit() {
message_pump_win.cc 56 void MessagePumpWin::Quit() {
337 // Repost the QUIT message so that it will be retrieved by the primary
observer_list_unittest.cc 144 void Quit() {
310 threaded_observer[index]->Quit();
message_loop.cc 255 void MessageLoop::Quit() {
260 NOTREACHED() << "Must be inside Run to call Quit";
267 pump_->Quit();
269 NOTREACHED() << "Must be inside Run to call Quit";
624 pump_->Quit();
  /external/chromium/chrome/browser/automation/
automation_tab_helper_browsertest.cc 64 // and quit the message loop when the redirect has completed. This expects
79 MessageLoopForUI::current(), &MessageLoop::Quit));
  /external/chromium/chrome/browser/chromeos/login/
online_attempt_unittest.cc 89 static void Quit() {
127 .WillOnce(Invoke(OnlineAttemptTest::Quit))
154 .WillOnce(Invoke(OnlineAttemptTest::Quit))
185 .WillOnce(Invoke(OnlineAttemptTest::Quit))
211 .WillOnce(Invoke(OnlineAttemptTest::Quit))
  /external/chromium/net/tools/flip_server/
acceptor_thread.h 69 void Quit() { quitting_.Notify(); }
  /external/chromium/third_party/libjingle/source/talk/base/
win32socketserver.h 160 virtual void Quit() {
messagequeue.cc 142 void MessageQueue::Quit() {
  /external/chromium/chrome/browser/printing/
print_job.cc 186 MessageLoop::current(), &MessageLoop::Quit);
302 // - We want this code path to wait on the thread to quit before continuing.
317 // The thread quit.
320 // An error occured. Assume the thread quit.
print_view_manager.cc 272 // pages it needs. MessageLoop::current()->Quit() will be called as soon as
291 // We are in a message loop created by RenderAllMissingPagesNow. Quit from
293 MessageLoop::current()->Quit();
412 MessageLoop::current(), &MessageLoop::Quit);
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_BWin.h 215 the application should respond to the quit request,
222 virtual void Quit() {
225 BDirectWindow::Quit();
  /external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.cc 112 " quit Quits the application.\n"
120 " quit Quits the application.\n"
137 " quit Quits the application.\n"
164 if (command == "quit") {
165 Quit();
325 Quit();
671 void CallClient::Quit() {
672 talk_base::Thread::Current()->Quit();
  /external/v8/samples/
shell.cc 66 v8::Handle<v8::Value> Quit(const v8::Arguments& args);
342 // Bind the 'quit' function
343 global->Set(v8::String::New("quit"), v8::FunctionTemplate::New(Quit));
432 // The callback that is invoked by v8 whenever the JavaScript 'quit'
434 v8::Handle<v8::Value> Quit(const v8::Arguments& args) {
  /external/v8/src/
d8.cc 227 Handle<Value> Shell::Quit(const Arguments& args) {
427 global_template->Set(String::New("quit"), FunctionTemplate::New(Quit));

Completed in 311 milliseconds