Home
last modified time | relevance | path

Searched refs:QWebElementCollection (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebKit/qt/Api/
Dqwebelement.h55 class QWebElementCollection; variable
70 QWebElementCollection findAll(const QString &selectorQuery) const;
169 friend class QWebElementCollection; variable
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;
[all …]
Dqwebelement.cpp238 QWebElementCollection QWebElement::findAll(const QString &selectorQuery) const in findAll()
240 return QWebElementCollection(*this, selectorQuery); in findAll()
1585 QWebElementCollection::QWebElementCollection() in QWebElementCollection() function in QWebElementCollection
1592 QWebElementCollection::QWebElementCollection(const QWebElementCollection &other) in QWebElementCollection() function in QWebElementCollection
1601 QWebElementCollection::QWebElementCollection(const QWebElement &contextElement, const QString &quer… in QWebElementCollection() function in QWebElementCollection
1609 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 …]
Dqwebframe.h51 class QWebElementCollection; variable
193 QWebElementCollection findAllElements(const QString &selectorQuery) const;
Dqwebframe.cpp1382 QWebElementCollection QWebFrame::findAllElements(const QString &selectorQuery) const in findAllElements()
/external/webkit/Source/WebKit/qt/symbian/bwins/
DQtWebKitu.def10 …??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 …]
/external/webkit/Source/WebKit/qt/tests/qwebelement/
Dtst_qwebelement.cpp121 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 …]
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/
Dmain.cpp109 QWebElementCollection allSpans = document.findAll("span"); in findAll()
110 QWebElementCollection introSpans = document.findAll("p.intro span"); in findAll()
/external/webkit/Tools/QtTestBrowser/
Dlauncherwindow.cpp714 QWebElementCollection result = page()->mainFrame()->findAllElements(str); in selectElements()
/external/webkit/Source/WebKit/qt/
DChangeLog-2011-02-1611815 findAll() returns a QWebElementCollection, not QList<QWebElement>.
12623 Add a non-const iterator to QWebElementCollection.
13280 [Qt] Reintroduce QWebElementCollection
13282 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 …]
/external/webkit/Source/WebKit/qt/tests/qwebpage/
Dtst_qwebpage.cpp1558 QWebElementCollection inputs = page->mainFrame()->documentElement().findAll("input"); in inputMethods()