Home
last modified time | relevance | path

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

/art/compiler/utils/
Dintrusive_forward_list.h63 class IntrusiveForwardListIterator : public std::iterator<std::forward_iterator_tag, T> {
66 IntrusiveForwardListIterator() : hook_(nullptr) { } in IntrusiveForwardListIterator() function
67 IntrusiveForwardListIterator(const IntrusiveForwardListIterator& src) = default;
68 IntrusiveForwardListIterator& operator=(const IntrusiveForwardListIterator& src) = default;
73IntrusiveForwardListIterator(const IntrusiveForwardListIterator<OtherT, HookTraits>& src) // NOLI… in IntrusiveForwardListIterator() function
77 IntrusiveForwardListIterator& operator++() {
82 IntrusiveForwardListIterator operator++(int) {
83 IntrusiveForwardListIterator tmp(*this);
98 explicit IntrusiveForwardListIterator(const IntrusiveForwardListHook* hook) : hook_(hook) { } in IntrusiveForwardListIterator() function
103 friend class IntrusiveForwardListIterator; variable
[all …]