Searched refs:ConstIterator (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DDenseSet.h82 class ConstIterator { class in class:llvm::DenseSet
92 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {} function in class:llvm::DenseSet::ConstIterator
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); }
H A DDenseMap.h485 KeyInfoT, ValueInfoT, true> ConstIterator; typedef in class:llvm::DenseMapIterator
516 bool operator==(const ConstIterator &RHS) const {
519 bool operator!=(const ConstIterator &RHS) const {
/external/webkit/Source/JavaScriptCore/wtf/
H A DHashIterators.h87 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableConstKeysIterator
90 HashTableConstKeysIterator(const ConstIterator& impl) : m_impl(impl) {}
99 ConstIterator m_impl;
104 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableConstValuesIterator
107 HashTableConstValuesIterator(const ConstIterator& impl) : m_impl(impl) {}
116 ConstIterator m_impl;
122 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableKeysIterator
135 ConstIterator i = m_impl;
145 typedef HashTableConstIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableValuesIterator
158 ConstIterator
[all...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DNotificationPresenterClientQt.cpp277 NotificationsQueue::ConstIterator end = m_notifications.end();
278 NotificationsQueue::ConstIterator iter = m_notifications.begin();
297 NotificationsQueue::ConstIterator end = m_notifications.end();
298 NotificationsQueue::ConstIterator iter = m_notifications.begin();
/external/chromium/testing/gtest/test/
H A Dgtest-printers_test.cc956 TEST(PrintStlContainerTest, ConstIterator) {

Completed in 266 milliseconds