Searched defs:ConstIterator (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/net/quic/congestion_control/
H A Dquic_max_sized_map.h7 // Note: the ConstIterator will NOT be valid after an Insert or RemoveAll.
23 typedef typename std::multimap<Key, Value>::const_iterator ConstIterator; typedef in class:net::QuicMaxSizedMap
53 ConstIterator Find(const Key& k) const {
57 ConstIterator Begin() const {
58 return ConstIterator(table_.begin());
61 ConstIterator End() const {
62 return ConstIterator(table_.end());
/external/chromium_org/content/browser/device_orientation/
H A Dprovider_impl.cc270 typedef std::set<Observer*>::const_iterator ConstIterator; typedef
271 for (ConstIterator i = observers_.begin(); i != observers_.end(); ++i) {
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashIterators.h89 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableConstKeysIterator
92 HashTableConstKeysIterator(const ConstIterator& impl) : m_impl(impl) {}
101 ConstIterator m_impl;
106 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableConstValuesIterator
109 HashTableConstValuesIterator(const ConstIterator& impl) : m_impl(impl) {}
118 ConstIterator m_impl;
124 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableKeysIterator
137 ConstIterator i = m_impl;
147 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableValuesIterator
160 ConstIterator
[all...]
/external/llvm/include/llvm/ADT/
H A DDenseSet.h84 class ConstIterator { class in class:llvm::DenseSet
94 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {} function in class:llvm::DenseSet::ConstIterator
99 ConstIterator& operator++() { ++I; return *this; }
100 bool operator==(const ConstIterator& X) const { return I == X.I; }
101 bool operator!=(const ConstIterator& X) const { return I != X.I; }
105 typedef ConstIterator const_iterator;
110 const_iterator begin() const { return ConstIterator(TheMap.begin()); }
111 const_iterator end() const { return ConstIterator(TheMap.end()); }
115 void erase(ConstIterator CI) { return TheMap.erase(CI.I); }
H A DDenseMap.h989 KeyInfoT, true> ConstIterator; typedef in class:llvm::DenseMapIterator
1021 bool operator==(const ConstIterator &RHS) const {
1024 bool operator!=(const ConstIterator &RHS) const {
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dphonenumberutil.cc1604 typedef vector<IntRegionsPair>::const_iterator ConstIterator; typedef
1605 pair<ConstIterator, ConstIterator> range = equal_range(

Completed in 365 milliseconds