HomeSort by: relevance | last modified time | path
    Searched defs:simple_iterator (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
aarch64-early-ra.cc 60 class simple_iterator : public wrapper_iterator<T> class in inherits:wrapper_iterator
65 simple_iterator &operator-- () { --this->m_contents; return *this; }
66 simple_iterator operator-- (int) { return this->m_contents--; }
67 simple_iterator &operator++ () { ++this->m_contents; return *this; }
68 simple_iterator operator++ (int) { return this->m_contents++; }
87 using allocno_iterator = simple_iterator<unsigned int>;
aarch64-early-ra.cc 60 class simple_iterator : public wrapper_iterator<T> class in inherits:wrapper_iterator
65 simple_iterator &operator-- () { --this->m_contents; return *this; }
66 simple_iterator operator-- (int) { return this->m_contents--; }
67 simple_iterator &operator++ () { ++this->m_contents; return *this; }
68 simple_iterator operator++ (int) { return this->m_contents++; }
87 using allocno_iterator = simple_iterator<unsigned int>;

Completed in 51 milliseconds