Home | History | Annotate | Download | only in Api

Lines Matching refs:QWebElementCollection

238 QWebElementCollection QWebElement::findAll(const QString &selectorQuery) const
240 return QWebElementCollection(*this, selectorQuery);
1559 \class QWebElementCollection
1561 \brief The QWebElementCollection class represents a collection of web elements.
1575 QWebElementCollection collection = document.findAll("p");
1585 QWebElementCollection::QWebElementCollection()
1592 QWebElementCollection::QWebElementCollection(const QWebElementCollection &other)
1601 QWebElementCollection::QWebElementCollection(const QWebElement &contextElement, const QString &query)
1609 QWebElementCollection &QWebElementCollection::operator=(const QWebElementCollection &other)
1618 QWebElementCollection::~QWebElementCollection()
1622 /*! \fn QWebElementCollection &QWebElementCollection::operator+=(const QWebElementCollection &other)
1636 QWebElementCollection QWebElementCollection::operator+(const QWebElementCollection &other) const
1638 QWebElementCollection n = *this; n.d.detach(); n += other; return n;
1648 void QWebElementCollection::append(const QWebElementCollection &other)
1675 int QWebElementCollection::count() const
1685 QWebElement QWebElementCollection::at(int i) const
1694 \fn const QWebElement QWebElementCollection::operator[](int position) const
1699 /*! \fn QWebElement QWebElementCollection::first() const
1706 /*! \fn QWebElement QWebElementCollection::last() const
1716 QList<QWebElement> QWebElementCollection::toList() const
1732 \fn QWebElementCollection::const_iterator QWebElementCollection::begin() const
1740 \fn QWebElementCollection::const_iterator QWebElementCollection::end() const
1749 \class QWebElementCollection::const_iterator
1751 \brief The QWebElementCollection::const_iterator class provides an STL-style const iterator for QWebElementCollection.
1753 QWebElementCollection provides STL style const iterators for fast low-level access to the elements.
1755 QWebElementCollection::const_iterator allows you to iterate over a QWebElementCollection.
1759 \fn QWebElementCollection::const_iterator::const_iterator(const const_iterator &other)
1765 \fn QWebElementCollection::const_iterator::const_iterator(const QWebElementCollection *collection, int index)
1770 \fn const QWebElement QWebElementCollection::const_iterator::operator*() const
1776 \fn bool QWebElementCollection::const_iterator::operator==(const const_iterator &other) const
1785 \fn bool QWebElementCollection::const_iterator::operator!=(const const_iterator &other) const
1794 \fn QWebElementCollection::const_iterator &QWebElementCollection::const_iterator::operator++()
1799 Calling this function on QWebElementCollection::end() leads to undefined results.
1805 \fn QWebElementCollection::const_iterator QWebElementCollection::const_iterator::operator++(int)
1812 Calling this function on QWebElementCollection::end() leads to undefined results.
1816 \fn QWebElementCollection::const_iterator &QWebElementCollection::const_iterator::operator--()
1821 Calling this function on QWebElementCollection::begin() leads to undefined results.
1827 \fn QWebElementCollection::const_iterator QWebElementCollection::const_iterator::operator--(int)
1836 \fn QWebElementCollection::const_iterator &QWebElementCollection::const_iterator::operator+=(int j)
1844 \fn QWebElementCollection::const_iterator &QWebElementCollection::const_iterator::operator-=(int j)
1852 \fn QWebElementCollection::const_iterator QWebElementCollection::const_iterator::operator+(int j) const
1861 \fn QWebElementCollection::const_iterator QWebElementCollection::const_iterator::operator-(int j) const
1870 \fn int QWebElementCollection::const_iterator::operator-(const_iterator other) const
1877 \fn bool QWebElementCollection::const_iterator::operator<(const const_iterator &other) const
1884 \fn bool QWebElementCollection::const_iterator::operator<=(const const_iterator &other) const
1891 \fn bool QWebElementCollection::const_iterator::operator>(const const_iterator &other) const
1898 \fn bool QWebElementCollection::const_iterator::operator>=(const const_iterator &other) const
1905 \fn QWebElementCollection::iterator QWebElementCollection::begin()
1913 \fn QWebElementCollection::iterator QWebElementCollection::end()
1922 \fn QWebElementCollection::const_iterator QWebElementCollection::constBegin() const
1930 \fn QWebElementCollection::const_iterator QWebElementCollection::constEnd() const
1939 \class QWebElementCollection::iterator
1941 \brief The QWebElementCollection::iterator class provides an STL-style iterator for QWebElementCollection.
1943 QWebElementCollection provides STL style iterators for fast low-level access to the elements.
1945 QWebElementCollection::iterator allows you to iterate over a QWebElementCollection.
1949 \fn QWebElementCollection::iterator::iterator(const iterator &other)
1955 \fn QWebElementCollection::iterator::iterator(const QWebElementCollection *collection, int index)
1960 \fn const QWebElement QWebElementCollection::iterator::operator*() const
1966 \fn bool QWebElementCollection::iterator::operator==(const iterator &other) const
1975 \fn bool QWebElementCollection::iterator::operator!=(const iterator &other) const
1984 \fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator++()
1989 Calling this function on QWebElementCollection::end() leads to undefined results.
1995 \fn QWebElementCollection::iterator QWebElementCollection::iterator::operator++(int)
2002 Calling this function on QWebElementCollection::end() leads to undefined results.
2006 \fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator--()
2011 Calling this function on QWebElementCollection::begin() leads to undefined results.
2017 \fn QWebElementCollection::iterator QWebElementCollection::iterator::operator--(int)
2026 \fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator+=(int j)
2034 \fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator-=(int j)
2042 \fn QWebElementCollection::iterator QWebElementCollection::iterator::operator+(int j) const
2051 \fn QWebElementCollection::iterator QWebElementCollection::iterator::operator-(int j) const
2060 \fn int QWebElementCollection::iterator::operator-(iterator other) const
2067 \fn bool QWebElementCollection::iterator::operator<(const iterator &other) const
2074 \fn bool QWebElementCollection::iterator::operator<=(const iterator &other) const
2081 \fn bool QWebElementCollection::iterator::operator>(const iterator &other) const
2088 \fn bool QWebElementCollection::iterator::operator>=(const iterator &other) const