HomeSort by relevance Sort by last modified time
    Searched refs:QWebElementCollection (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebKit/qt/Api/
qwebelement.h 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 &)
    [all...]
qwebelement.cpp 238 QWebElementCollection QWebElement::findAll(const QString &selectorQuery) const
240 return QWebElementCollection(*this, selectorQuery);
    [all...]
qwebframe.h 51 class QWebElementCollection;
193 QWebElementCollection findAllElements(const QString &selectorQuery) const;
qwebframe.cpp     [all...]
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/
main.cpp 109 QWebElementCollection allSpans = document.findAll("span");
110 QWebElementCollection introSpans = document.findAll("p.intro span");
  /external/webkit/Source/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 121 QWebElementCollection list = body.findAll("p");
283 QWebElementCollection paras = body.findAll("p");
317 QWebElementCollection paras = body.findAll("p");
319 QWebElementCollection::iterator it = paras.begin();
333 const QWebElementCollection paras = body.findAll("p");
335 QWebElementCollection::const_iterator it = paras.begin();
358 QWebElementCollection emptyCollection;
369 QWebElementCollection collection = body.findAll("p");
378 QWebElementCollection all = collection + body.findAll("span.b");
386 QWebElementCollection test
    [all...]
  /external/webkit/Tools/QtTestBrowser/
launcherwindow.cpp 714 QWebElementCollection result = page()->mainFrame()->findAllElements(str);
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp     [all...]

Completed in 221 milliseconds