Home
last modified time | relevance | path

Searched refs:iterator_high (Results 1 – 2 of 2) sorted by relevance

/external/google-breakpad/src/processor/
Dcontained_range_map-inl.h76 MapIterator iterator_high = map_->lower_bound(high); in StoreRange() local
79 if (iterator_base == iterator_high && iterator_base != iterator_end && in StoreRange()
102 bool contains_high = iterator_high != iterator_end && in StoreRange()
103 high >= iterator_high->second->base_; in StoreRange()
108 (contains_high && high < iterator_high->first)) { in StoreRange()
123 ++iterator_high; in StoreRange()
130 if (iterator_base != iterator_high) { in StoreRange()
134 child_map = new AddressToRangeMap(iterator_base, iterator_high); in StoreRange()
137 map_->erase(iterator_base, iterator_high); in StoreRange()
Drange_map-inl.h69 MapConstIterator iterator_high = map_.lower_bound(high); in StoreRange() local
71 if (iterator_base != iterator_high) { in StoreRange()
90 if (iterator_high != map_.end()) { in StoreRange()
91 if (iterator_high->second.base() <= high) { in StoreRange()