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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DListHashSet.h44 template<typename Set> class ListHashSetIterator;
100 typedef ListHashSetIterator<ListHashSet> iterator;
102 friend class ListHashSetIterator<ListHashSet>;
437 template<typename Set> class ListHashSetIterator { class in namespace:WTF
445 ListHashSetIterator(const Set* set, Node* position) : m_iterator(set, position) { } function in class:WTF::ListHashSetIterator
448 ListHashSetIterator() { } function in class:WTF::ListHashSetIterator
456 ListHashSetIterator& operator++() { ++m_iterator; return *this; }
457 ListHashSetIterator& operator--() { --m_iterator; return *this; }
462 bool operator==(const ListHashSetIterator& other) const { return m_iterator == other.m_iterator; }
463 bool operator!=(const ListHashSetIterator
[all...]

Completed in 69 milliseconds