Lines Matching refs:whenMap_
131 tmpWhenMap.insert(whenMap_.begin(), whenMap_.end());
132 whenMap_.swap(tmpWhenMap);
134 whenMap_.insert({task->GetUptime(), task});
136 if (task == whenMap_.begin()->second) {
148 while (!whenMap_.empty() && now < whenMap_.begin()->first && !isExit_) {
149 uint64_t diff = whenMap_.begin()->first - now;
157 if (whenMap_.empty()) {
165 return dequeFunc_(queueId_, now, whenMap_, &pulledTaskCount_);
171 int nonIdleNum = std::count_if(whenMap_.cbegin(), whenMap_.cend(),
184 DumpUnexecutedTaskInfo(tag, whenMap_, oss);
191 return std::count_if(whenMap_.begin(), whenMap_.end(), [=](const auto& pair) {