Searched refs:QWebElementCollection (Results 1 – 10 of 10) sorted by relevance
55 class QWebElementCollection; variable70 QWebElementCollection findAll(const QString &selectorQuery) const;169 friend class QWebElementCollection; variable186 class QWEBKIT_EXPORT QWebElementCollection189 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;[all …]
238 QWebElementCollection QWebElement::findAll(const QString &selectorQuery) const in findAll()240 return QWebElementCollection(*this, selectorQuery); in findAll()1585 QWebElementCollection::QWebElementCollection() in QWebElementCollection() function in QWebElementCollection1592 QWebElementCollection::QWebElementCollection(const QWebElementCollection &other) in QWebElementCollection() function in QWebElementCollection1601 QWebElementCollection::QWebElementCollection(const QWebElement &contextElement, const QString &quer… in QWebElementCollection() function in QWebElementCollection1609 QWebElementCollection &QWebElementCollection::operator=(const QWebElementCollection &other) in operator =()1618 QWebElementCollection::~QWebElementCollection() in ~QWebElementCollection()1636 QWebElementCollection QWebElementCollection::operator+(const QWebElementCollection &other) const in operator +()1638 QWebElementCollection n = *this; n.d.detach(); n += other; return n; in operator +()1648 void QWebElementCollection::append(const QWebElementCollection &other) in append()[all …]
51 class QWebElementCollection; variable193 QWebElementCollection findAllElements(const QString &selectorQuery) const;
1382 QWebElementCollection QWebFrame::findAllElements(const QString &selectorQuery) const in findAllElements()
10 …??0QWebElementCollection@@QAE@ABV0@@Z @ 9 NONAME ; QWebElementCollection::QWebElementCollection(cl…11 …??0QWebElementCollection@@QAE@ABVQWebElement@@ABVQString@@@Z @ 10 NONAME ; QWebElementCollection::…12 ??0QWebElementCollection@@QAE@XZ @ 11 NONAME ; QWebElementCollection::QWebElementCollection(void)38 ??1QWebElementCollection@@QAE@XZ @ 37 NONAME ; QWebElementCollection::~QWebElementCollection(void)54 …??4QWebElementCollection@@QAEAAV0@ABV0@@Z @ 53 NONAME ; class QWebElementCollection & QWebElementC…67 …ollection@@QBE?AVQWebElement@@H@Z @ 66 NONAME ; class QWebElement QWebElementCollection::operator[…68 …BE?AV0@ABV0@@Z @ 67 NONAME ; class QWebElementCollection QWebElementCollection::operator+(class QW…69 …EAAV0@ABV0@@Z @ 68 NONAME ; class QWebElementCollection & QWebElementCollection::operator+=(class …88 …?append@QWebElementCollection@@QAEXABV1@@Z @ 87 NONAME ; void QWebElementCollection::append(class …93 …?at@QWebElementCollection@@QBE?AVQWebElement@@H@Z @ 92 NONAME ; class QWebElement QWebElementColle…[all …]
121 QWebElementCollection list = body.findAll("p"); in simpleCollection()283 QWebElementCollection paras = body.findAll("p"); in iteration()317 QWebElementCollection paras = body.findAll("p"); in nonConstIterator()319 QWebElementCollection::iterator it = paras.begin(); in nonConstIterator()333 const QWebElementCollection paras = body.findAll("p"); in constIterator()335 QWebElementCollection::const_iterator it = paras.begin(); in constIterator()358 QWebElementCollection emptyCollection; in emptyCollection()369 QWebElementCollection collection = body.findAll("p"); in appendCollection()378 QWebElementCollection all = collection + body.findAll("span.b"); in appendCollection()386 QWebElementCollection test; in appendCollection()[all …]
109 QWebElementCollection allSpans = document.findAll("span"); in findAll()110 QWebElementCollection introSpans = document.findAll("p.intro span"); in findAll()
714 QWebElementCollection result = page()->mainFrame()->findAllElements(str); in selectElements()
11815 findAll() returns a QWebElementCollection, not QList<QWebElement>.12623 Add a non-const iterator to QWebElementCollection.13280 [Qt] Reintroduce QWebElementCollection13282 Revert the patch that has replaced QWebElementCollection 13293 (QWebElementCollection::QWebElementCollection):13294 (QWebElementCollection::operator=):13295 (QWebElementCollection::~QWebElementCollection):13296 (QWebElementCollection::operator+):13297 (QWebElementCollection::append):13298 (QWebElementCollection::count):[all …]
1558 QWebElementCollection inputs = page->mainFrame()->documentElement().findAll("input"); in inputMethods()