Home | History | Annotate | Download | only in base

Lines Matching defs:loop

62 //   HRESULT hr = DoDragDrop(...); // Implicitly runs a modal message loop here.
138 // from within a message loop at some point in the future.
196 // Run the message loop.
210 // run loop you are quiting, so be careful!
230 // Optional call to connect the thread name with this loop.
238 // of recursive message loops. Some unwanted message loop may occurs when
243 // - The thread is running a message loop.
245 // - The task #1 implicitly start a message loop, like a MessageBox in the
248 // loop.
251 // message loop level".
255 // Enables nestable tasks on |loop| while in scope.
258 explicit ScopedNestableTaskAllower(MessageLoop* loop)
259 : loop_(loop),
280 // Returns true if we are currently running a nested message loop.
306 // Returns true if the message loop has high resolution timers enabled.
350 explicit AutoRunState(MessageLoop* loop);
369 bool nestable; // OK to dispatch from a nested loop.
392 // stacks around the running of a main message loop. It will run the message
393 // loop in a SEH try block or not depending on the set_SEH_restoration()
401 // A surrounding stack frame around the running of the message loop that
460 // time to execute them we were in a nested message loop. They will execute
491 // which enter a modal message loop.
518 MessageLoop* loop = MessageLoop::current();
521 static_cast<int>(loop->type()));
523 DCHECK_EQ(MessageLoop::TYPE_UI, loop->type());
525 return static_cast<MessageLoopForUI*>(loop);
597 MessageLoop* loop = MessageLoop::current();
600 static_cast<int>(loop->type()));
602 DCHECK_EQ(MessageLoop::TYPE_IO, loop->type());
604 return static_cast<MessageLoopForIO*>(loop);