Home
last modified time | relevance | path

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

/bionic/linker/
Dlinked_list.h30 class LinkedListIterator {
32 LinkedListIterator() : entry_(nullptr) {} in LinkedListIterator() function
33 LinkedListIterator(const LinkedListIterator<T>& that) : entry_(that.entry_) {} in LinkedListIterator() function
34 explicit LinkedListIterator(LinkedListEntry<T>* entry) : entry_(entry) {} in LinkedListIterator() function
36 LinkedListIterator<T>& operator=(const LinkedListIterator<T>& that) {
41 LinkedListIterator<T>& operator++() {
50 bool operator==(const LinkedListIterator<T>& that) const {
54 bool operator!=(const LinkedListIterator<T>& that) const {
68 typedef LinkedListIterator<T> iterator;