HomeSort by relevance Sort by last modified time
    Searched refs:ConstIterator (Results 1 - 5 of 5) 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 485 KeyInfoT, ValueInfoT, true> ConstIterator;
516 bool operator==(const ConstIterator &RHS) const {
519 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...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
NotificationPresenterClientQt.cpp 277 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/
gtest-printers_test.cc 956 TEST(PrintStlContainerTest, ConstIterator) {
    [all...]

Completed in 7967 milliseconds