Home
last modified time | relevance | path

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

/bionic/linker/
Dlinked_list.h42 class LinkedListIterator {
44 LinkedListIterator() : entry_(nullptr) {} in LinkedListIterator() function
45 LinkedListIterator(const LinkedListIterator<T>& that) : entry_(that.entry_) {} in LinkedListIterator() function
46 explicit LinkedListIterator(LinkedListEntry<T>* entry) : entry_(entry) {} in LinkedListIterator() function
48 LinkedListIterator<T>& operator=(const LinkedListIterator<T>& that) {
53 LinkedListIterator<T>& operator++() {
62 bool operator==(const LinkedListIterator<T>& that) const {
66 bool operator!=(const LinkedListIterator<T>& that) const {
80 typedef LinkedListIterator<T> iterator;