HomeSort by relevance Sort by last modified time
    Searched refs:DequeConstIterator (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
MessageQueue.h 135 DequeConstIterator<DataType*> found = m_queue.end();
177 DequeConstIterator<DataType*> found = m_queue.findIf(predicate);
Deque.h 42 template<typename T, size_t inlineCapacity> class DequeConstIterator;
51 typedef DequeConstIterator<T, inlineCapacity> const_iterator;
176 class DequeConstIterator : public DequeIteratorBase<T, inlineCapacity> {
179 typedef DequeConstIterator<T, inlineCapacity> Iterator;
183 DequeConstIterator(const Deque<T, inlineCapacity>* deque, size_t index) : Base(deque, index) { }
185 DequeConstIterator(const Iterator& other) : Base(other) { }
186 DequeConstIterator(const NonConstIterator& other) : Base(other) { }
187 DequeConstIterator& operator=(const Iterator& other) { Base::assign(other); return *this; }
188 DequeConstIterator& operator=(const NonConstIterator& other) { Base::assign(other); return *this; }

Completed in 46 milliseconds