OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HasTasks
(Results
1 - 3
of
3
) sorted by null
/external/libchrome/base/message_loop/
incoming_task_queue.h
43
// |!
HasTasks
()|) before this task was posted. DidQueueTask() can be invoked
54
// Returns the next task.
HasTasks
() is assumed to be true.
57
// Removes and returns the next task.
HasTasks
() is assumed to be true.
61
virtual bool
HasTasks
() = 0;
161
bool
HasTasks
() override;
182
bool
HasTasks
() override;
210
bool
HasTasks
() override;
message_loop.cc
206
tasks_remain = incoming_task_queue_->triage_tasks().
HasTasks
();
297
if (incoming_task_queue_->triage_tasks().
HasTasks
())
301
if (incoming_task_queue_->deferred_tasks().
HasTasks
() &&
416
if (incoming_task_queue_->triage_tasks().
HasTasks
())
432
while (incoming_task_queue_->deferred_tasks().
HasTasks
()) {
494
while (incoming_task_queue_->triage_tasks().
HasTasks
()) {
540
if (!incoming_task_queue_->delayed_tasks().
HasTasks
()) {
578
// DelayedTaskQueue::
HasTasks
()); hence, we cannot check for strict
602
if (incoming_task_queue_->delayed_tasks().
HasTasks
()) {
628
if (incoming_task_queue_->delayed_tasks().
HasTasks
()) {
[
all
...]
incoming_task_queue.cc
113
bool IncomingTaskQueue::TriageQueue::
HasTasks
() {
194
bool IncomingTaskQueue::DelayedQueue::
HasTasks
() {
239
bool IncomingTaskQueue::DeferredQueue::
HasTasks
() {
Completed in 106 milliseconds