Lines Matching refs:posted_from
96 Timer(const Location& posted_from,
100 Timer(const Location& posted_from,
123 virtual void Start(const Location& posted_from,
131 void Start(const Location& posted_from, in Start() argument
135 Start(posted_from, delay, in Start()
166 const Location& posted_from() const { return posted_from_; } in posted_from() function
258 RepeatingTimer(const Location& posted_from, in RepeatingTimer() argument
261 : Timer(posted_from, delay, std::move(user_task), true) {} in RepeatingTimer()
262 RepeatingTimer(const Location& posted_from, in RepeatingTimer() argument
266 : Timer(posted_from, delay, std::move(user_task), true, tick_clock) {} in RepeatingTimer()
278 RetainingOneShotTimer(const Location& posted_from, in RetainingOneShotTimer() argument
281 : Timer(posted_from, delay, std::move(user_task), false) {} in RetainingOneShotTimer()
282 RetainingOneShotTimer(const Location& posted_from, in RetainingOneShotTimer() argument
286 : Timer(posted_from, delay, std::move(user_task), false, tick_clock) {} in RetainingOneShotTimer()
303 DelayTimer(const Location& posted_from, in DelayTimer() argument
307 : DelayTimer(posted_from, delay, receiver, method, nullptr) {} in DelayTimer()
310 DelayTimer(const Location& posted_from, in DelayTimer() argument
315 : timer_(posted_from, in DelayTimer()