Home | History | Annotate | Download | only in Api

Lines Matching full:iterator

1671     Returns an STL-style iterator pointing to the first element in the collection.
1679 Returns an STL-style iterator pointing to the imaginary element after the
1688 \brief The QWebElementCollection::const_iterator class provides an STL-style const iterator for QWebElementCollection.
1715 Returns true if \a other points to the same item as this iterator;
1725 iterator; otherwise returns false.
1733 The prefix ++ operator (\c{++it}) advances the iterator to the next element in the collection
1734 and returns an iterator to the new current element.
1746 The postfix ++ operator (\c{it++}) advances the iterator to the next element in the collection
1747 and returns an iterator to the previously current element.
1756 iterator to the new current element.
1769 an iterator to the previously current element.
1775 Advances the iterator by \a j elements. If \a j is negative, the iterator goes backward.
1783 Makes the iterator go back by \a j elements. If \a j is negative, the iterator goes forward.
1791 Returns an iterator to the element at \a j positions forward from this iterator. If \a j
1792 is negative, the iterator goes backward.
1800 Returns an iterator to the element at \a j positiosn backward from this iterator.
1801 If \a j is negative, the iterator goes forward.
1810 and the element pointed to by this iterator.
1816 Returns true if the element pointed to by this iterator is less than the element pointed to
1817 by the \a other iterator.
1823 Returns true if the element pointed to by this iterator is less than or equal to the
1824 element pointed to by the \a other iterator.
1830 Returns true if the element pointed to by this iterator is greater than the element pointed to
1831 by the \a other iterator.
1837 Returns true if the element pointed to by this iterator is greater than or equal to the
1838 element pointed to by the \a other iterator.
1842 \fn QWebElementCollection::iterator QWebElementCollection::begin()
1844 Returns an STL-style iterator pointing to the first element in the collection.
1850 \fn QWebElementCollection::iterator QWebElementCollection::end()
1852 Returns an STL-style iterator pointing to the imaginary element after the
1861 Returns an STL-style iterator pointing to the first element in the collection.
1869 Returns an STL-style iterator pointing to the imaginary element after the
1876 \class QWebElementCollection::iterator
1878 \brief The QWebElementCollection::iterator class provides an STL-style iterator for QWebElementCollection.
1882 QWebElementCollection::iterator allows you to iterate over a QWebElementCollection.
1886 \fn QWebElementCollection::iterator::iterator(const iterator &other)
1892 \fn QWebElementCollection::iterator::iterator(const QWebElementCollection *collection, int index)
1897 \fn const QWebElement QWebElementCollection::iterator::operator*() const
1903 \fn bool QWebElementCollection::iterator::operator==(const iterator &other) const
1905 Returns true if \a other points to the same item as this iterator;
1912 \fn bool QWebElementCollection::iterator::operator!=(const iterator &other) const
1915 iterator; otherwise returns false.
1921 \fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator++()
1923 The prefix ++ operator (\c{++it}) advances the iterator to the next element in the collection
1924 and returns an iterator to the new current element.
1932 \fn QWebElementCollection::iterator QWebElementCollection::iterator::operator++(int)
1936 The postfix ++ operator (\c{it++}) advances the iterator to the next element in the collection
1937 and returns an iterator to the previously current element.
1943 \fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator--()
1946 iterator to the new current element.
1954 \fn QWebElementCollection::iterator QWebElementCollection::iterator::operator--(int)
1959 an iterator to the previously current element.
1963 \fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator+=(int j)
1965 Advances the iterator by \a j elements. If \a j is negative, the iterator goes backward.
1971 \fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator-=(int j)
1973 Makes the iterator go back by \a j elements. If \a j is negative, the iterator goes forward.
1979 \fn QWebElementCollection::iterator QWebElementCollection::iterator::operator+(int j) const
1981 Returns an iterator to the element at \a j positions forward from this iterator. If \a j
1982 is negative, the iterator goes backward.
1988 \fn QWebElementCollection::iterator QWebElementCollection::iterator::operator-(int j) const
1990 Returns an iterator to the element at \a j positiosn backward from this iterator.
1991 If \a j is negative, the iterator goes forward.
1997 \fn int QWebElementCollection::iterator::operator-(iterator other) const
2000 and the element pointed to by this iterator.
2004 \fn bool QWebElementCollection::iterator::operator<(const iterator &other) const
2006 Returns true if the element pointed to by this iterator is less than the element pointed to
2007 by the \a other iterator.
2011 \fn bool QWebElementCollection::iterator::operator<=(const iterator &other) const
2013 Returns true if the element pointed to by this iterator is less than or equal to the
2014 element pointed to by the \a other iterator.
2018 \fn bool QWebElementCollection::iterator::operator>(const iterator &other) const
2020 Returns true if the element pointed to by this iterator is greater than the element pointed to
2021 by the \a other iterator.
2025 \fn bool QWebElementCollection::iterator::operator>=(const iterator &other) const
2027 Returns true if the element pointed to by this iterator is greater than or equal to the
2028 element pointed to by the \a other iterator.