Home
last modified time | relevance | path

Searched refs:IteratorAtIndex (Results 1 – 3 of 3) sorted by relevance

/external/google-breakpad/src/processor/
Dstatic_map.h99 inline iterator begin() const { return IteratorAtIndex(0); } in begin()
100 inline iterator last() const { return IteratorAtIndex(num_nodes_ - 1); } in last()
101 inline iterator end() const { return IteratorAtIndex(num_nodes_); } in end()
102 inline iterator IteratorAtIndex(int index) const { in IteratorAtIndex() function
Dstatic_map-inl.h71 return IteratorAtIndex(middle); in find()
92 return IteratorAtIndex(middle); in lower_bound()
99 return IteratorAtIndex(begin); in lower_bound()
113 return IteratorAtIndex(middle + 1); in upper_bound()
120 return IteratorAtIndex(begin); in upper_bound()
Dstatic_range_map-inl.h114 MapConstIterator iterator = map_.IteratorAtIndex(index); in RetrieveRangeAtIndex()