Home
last modified time | relevance | path

Searched refs:IntrusiveForwardListIterator (Results 1 – 1 of 1) sorted by relevance

/art/compiler/utils/
Dintrusive_forward_list.h52 class IntrusiveForwardListIterator : public std::iterator<std::forward_iterator_tag, T> {
55 IntrusiveForwardListIterator() : hook_(nullptr) { } in IntrusiveForwardListIterator() function
56 IntrusiveForwardListIterator(const IntrusiveForwardListIterator& src) = default;
57 IntrusiveForwardListIterator& operator=(const IntrusiveForwardListIterator& src) = default;
62 IntrusiveForwardListIterator(const IntrusiveForwardListIterator<OtherT, HookTraits>& src) in IntrusiveForwardListIterator() function
66 IntrusiveForwardListIterator& operator++() {
71 IntrusiveForwardListIterator operator++(int) {
72 IntrusiveForwardListIterator tmp(*this);
87 explicit IntrusiveForwardListIterator(const IntrusiveForwardListHook* hook) : hook_(hook) { } in IntrusiveForwardListIterator() function
92 friend class IntrusiveForwardListIterator; variable
[all …]