HomeSort by relevance Sort by last modified time
    Searched refs:iterator_high (Results 1 - 2 of 2) sorted by null

  /external/google-breakpad/src/processor/
contained_range_map-inl.h 76 MapIterator iterator_high = map_->lower_bound(high); local
79 if (iterator_base == iterator_high && iterator_base != iterator_end &&
98 // iterator_high might refer to an irrelevant range: one whose base address
100 // only if iterator_high refers to a range that is at least partially
102 bool contains_high = iterator_high != iterator_end &&
103 high >= iterator_high->second->base_;
108 (contains_high && high < iterator_high->first)) {
121 // because contains_high can't be true if iterator_high == iterator_end.
123 ++iterator_high;
130 if (iterator_base != iterator_high) {
    [all...]
range_map-inl.h 69 MapConstIterator iterator_high = map_.lower_bound(high); local
71 if (iterator_base != iterator_high) {
90 if (iterator_high != map_.end()) {
91 if (iterator_high->second.base() <= high) {
99 // AddressType other_base = iterator_high->second.base();
100 // AddressType other_size = iterator_high->first - other_base + 1;

Completed in 59 milliseconds