• Home
  • Raw
  • Download

Lines Matching refs:it

172   for (DataCollector::Collection::iterator it = collection->begin();  in WriteHTML()  local
173 it != collection->end(); ++it) { in WriteHTML()
174 if (comparator.Acceptable(*it)) in WriteHTML()
175 match_array.push_back(*it); in WriteHTML()
261 BirthMap::iterator it = birth_map_.find(location); in TallyABirth() local
262 if (it != birth_map_.end()) { in TallyABirth()
263 it->second->RecordBirth(); in TallyABirth()
264 return it->second; in TallyABirth()
280 DeathMap::iterator it = death_map_.find(&lifetimes); in TallyADeath() local
281 if (it != death_map_.end()) { in TallyADeath()
282 it->second.RecordDeath(duration); in TallyADeath()
305 for (BirthMap::const_iterator it = birth_map_.begin(); in SnapshotBirthMap() local
306 it != birth_map_.end(); ++it) in SnapshotBirthMap()
307 (*output)[it->first] = it->second; in SnapshotBirthMap()
313 for (DeathMap::const_iterator it = death_map_.begin(); in SnapshotDeathMap() local
314 it != death_map_.end(); ++it) in SnapshotDeathMap()
315 (*output)[it->first] = it->second; in SnapshotDeathMap()
330 for (DeathMap::iterator it = death_map_.begin(); in Reset() local
331 it != death_map_.end(); ++it) in Reset()
332 it->second.Clear(); in Reset()
333 for (BirthMap::iterator it = birth_map_.begin(); in Reset() local
334 it != birth_map_.end(); ++it) in Reset()
335 it->second->Clear(); in Reset()
344 for (ThreadData* it = list; it; it = it->next()) { in RunOnAllThreads() local
345 if (current() != it && it->message_loop()) in RunOnAllThreads()
346 message_loops.push_back(it->message_loop()); in RunOnAllThreads()
427 for (BirthMap::iterator it = next_thread_data->birth_map_.begin(); in ShutdownSingleThreadedCleanup() local
428 next_thread_data->birth_map_.end() != it; ++it) in ShutdownSingleThreadedCleanup()
429 delete it->second; // Delete the Birth Records. in ShutdownSingleThreadedCleanup()
564 for (ThreadData::DeathMap::const_iterator it = death_map.begin(); in Append() local
565 it != death_map.end(); ++it) { in Append()
566 collection_.push_back(Snapshot(*it->first, thread_data, it->second)); in Append()
567 global_birth_count_[it->first] -= it->first->birth_count(); in Append()
570 for (ThreadData::BirthMap::const_iterator it = birth_map.begin(); in Append() local
571 it != birth_map.end(); ++it) { in Append()
572 global_birth_count_[it->second] += it->second->birth_count(); in Append()
585 for (BirthCount::iterator it = global_birth_count_.begin(); in AddListOfLivingObjects() local
586 it != global_birth_count_.end(); ++it) { in AddListOfLivingObjects()
587 if (it->second > 0) in AddListOfLivingObjects()
588 collection_.push_back(Snapshot(*it->first, it->second)); in AddListOfLivingObjects()
904 KeyMap::iterator it = key_map.find(keyword); in ParseKeyphrase() local
905 if (key_map.end() == it) in ParseKeyphrase()
907 if (it->second == RESET_ALL_DATA) in ParseKeyphrase()