Lines Matching refs:iter
96 auto iter = timerTable.find(tId);
97 if (iter == timerTable.end()) {
101 TimerCallbackInfo* callbackInfo = iter->second;
254 auto iter = timerTable.begin();
255 while (iter != timerTable.end()) {
256 TimerCallbackInfo* callbackInfo = iter->second;
258 iter = timerTable.erase(iter);
261 iter++;
269 auto iter = std::find_if(timerTable.begin(), timerTable.end(), [env](const auto &item) {
272 return iter != timerTable.end();