OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ConstIterator
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/ADT/
DenseSet.h
82
class
ConstIterator
{
92
ConstIterator
(const typename MapTy::const_iterator &i) : I(i) {}
97
ConstIterator
& operator++() { ++I; return *this; }
98
bool operator==(const
ConstIterator
& X) const { return I == X.I; }
99
bool operator!=(const
ConstIterator
& X) const { return I != X.I; }
103
typedef
ConstIterator
const_iterator;
108
const_iterator begin() const { return
ConstIterator
(TheMap.begin()); }
109
const_iterator end() const { return
ConstIterator
(TheMap.end()); }
113
void erase(
ConstIterator
CI) { return TheMap.erase(CI.I); }
DenseMap.h
508
KeyInfoT, true>
ConstIterator
;
540
bool operator==(const
ConstIterator
&RHS) const {
543
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 472 milliseconds