Lines Matching refs:from_here
25 bool PostTask(const Location& from_here, OnceClosure task) override { in PostTask() argument
26 PostTaskWithTraits(from_here, traits_, std::move(task)); in PostTask()
45 void PostTask(const Location& from_here, OnceClosure task) { in PostTask() argument
46 PostDelayedTask(from_here, std::move(task), TimeDelta()); in PostTask()
49 void PostDelayedTask(const Location& from_here, in PostDelayedTask() argument
52 PostDelayedTaskWithTraits(from_here, TaskTraits(), std::move(task), delay); in PostDelayedTask()
55 void PostTaskAndReply(const Location& from_here, in PostTaskAndReply() argument
58 PostTaskWithTraitsAndReply(from_here, TaskTraits(), std::move(task), in PostTaskAndReply()
62 void PostTaskWithTraits(const Location& from_here, in PostTaskWithTraits() argument
65 PostDelayedTaskWithTraits(from_here, traits, std::move(task), TimeDelta()); in PostTaskWithTraits()
68 void PostDelayedTaskWithTraits(const Location& from_here, in PostDelayedTaskWithTraits() argument
77 from_here, GetTaskTraitsWithExplicitPriority(traits), std::move(task), in PostDelayedTaskWithTraits()
81 void PostTaskWithTraitsAndReply(const Location& from_here, in PostTaskWithTraitsAndReply() argument
86 from_here, std::move(task), std::move(reply)); in PostTaskWithTraitsAndReply()