Home | History | Annotate | Download | only in Api

Lines Matching refs:QWebElementCollection

55 class QWebElementCollection;
70 QWebElementCollection findAll(const QString &selectorQuery) const;
117 // TODO: Add QWebElementCollection overloads
169 friend class QWebElementCollection;
186 class QWEBKIT_EXPORT QWebElementCollection
189 QWebElementCollection();
190 QWebElementCollection(const QWebElement &contextElement, const QString &query);
191 QWebElementCollection(const QWebElementCollection &);
192 QWebElementCollection &operator=(const QWebElementCollection &);
193 ~QWebElementCollection();
195 QWebElementCollection operator+(const QWebElementCollection &other) const;
196 inline QWebElementCollection &operator+=(const QWebElementCollection &other)
201 void append(const QWebElementCollection &collection);
214 inline const_iterator(const QWebElementCollection* collection, int index) : i(index), collection(collection) {}
237 const QWebElementCollection* const collection;
248 inline iterator(const QWebElementCollection* collection, int index) : i(index), collection(collection) {}
271 const QWebElementCollection* const collection;