HomeSort by relevance Sort by last modified time
    Searched defs:ConstIterator (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/ADT/
DenseSet.h 84 class ConstIterator {
94 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {}
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); }
DenseMap.h 989 KeyInfoT, true> ConstIterator;
1021 bool operator==(const ConstIterator &RHS) const {
1024 bool operator!=(const ConstIterator &RHS) const {
  /external/webkit/Source/JavaScriptCore/wtf/
HashIterators.h 87 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator;
90 HashTableConstKeysIterator(const ConstIterator& impl) : m_impl(impl) {}
99 ConstIterator m_impl;
104 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator;
107 HashTableConstValuesIterator(const ConstIterator& impl) : m_impl(impl) {}
116 ConstIterator m_impl;
122 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator;
135 ConstIterator i = m_impl;
145 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator;
158 ConstIterator i = m_impl
    [all...]

Completed in 70 milliseconds