Lines Matching refs:range
972 auto range = code_map_.equal_range(entry->instruction_start());
973 for (auto i = range.first; i != range.second; ++i) {
1014 auto range = code_map_.equal_range(from);
1015 // Instead of iterating until |range.second|, iterate the number of elements.
1016 // This is because the |range.second| may no longer be the element past the
1017 // end of the equal elements range after insertions.
1018 size_t distance = std::distance(range.first, range.second);
1019 auto it = range.first;
1031 code_map_.erase(range.first, it);