/external/webkit/WebKit/qt/tests/qwebelement/ |
D | tst_qwebelement.cpp | 120 QWebElementCollection list = body.findAll("p"); in simpleCollection() 198 QWebElement p = m_mainFrame->documentElement().findAll("p").at(0); in classes() 268 QWebElement svg = body.findAll("*#foobar").at(0); in namespaceURI() 282 QWebElementCollection paras = body.findAll("p"); in iteration() 316 QWebElementCollection paras = body.findAll("p"); in nonConstIterator() 332 const QWebElementCollection paras = body.findAll("p"); in constIterator() 348 foreach(QWebElement p, body.findAll("p")) { in foreachManipulation() 352 QCOMPARE(body.findAll("div").count(), 4); in foreachManipulation() 368 QWebElementCollection collection = body.findAll("p"); in appendCollection() 371 collection.append(body.findAll("div")); in appendCollection() [all …]
|
/external/webkit/WebKit/qt/docs/webkitsnippets/webelement/ |
D | main.cpp | 39 static void findAll() in findAll() function 56 QWebElementCollection allSpans = document.findAll("span"); in findAll() 57 QWebElementCollection introSpans = document.findAll("p.intro span"); in findAll() 67 findAll(); in main()
|
/external/webkit/WebKitTools/Scripts/webkitpy/ |
D | buildbot.py | 64 status_cells = status_row.findAll('td') 130 for status_row in status_table.findAll('tr'):
|
D | buildbot_unittest.py | 80 input_rows = status_table.findAll('tr')
|
D | BeautifulSoup.py | 587 return apply(self.findAll, args, kwargs) 768 l = self.findAll(name, attrs, recursive, text, 1, **kwargs) 774 def findAll(self, name=None, attrs={}, recursive=True, text=None, member in Tag 789 findChildren = findAll 793 fetch = findAll 796 return self.findAll(text=text, recursive=recursive, limit=limit)
|
D | bugzilla.py | 408 for element in soup.findAll('cc')] 409 …"] = [self._parse_attachment_element(element, bug["id"]) for element in soup.findAll('attachment')] 579 match.group('error_message')).findAll(text=True)
|
/external/webkit/WebKit/qt/Api/ |
D | qwebelement.h | 55 QWebElementCollection findAll(const QString &selectorQuery) const;
|
D | qwebelement.cpp | 211 QWebElementCollection QWebElement::findAll(const QString &selectorQuery) const in findAll() function in QWebElement
|
D | qwebframe.cpp | 1318 return documentElement().findAll(selectorQuery); in findAllElements()
|
/external/webkit/SunSpider/tests/parse-only/ |
D | prototype-1.6.0.3.js | 658 findAll: function(iterator, context) { method 805 select: Enumerable.findAll, 806 filter: Enumerable.findAll, 897 return this.uniq().findAll(function(item) { 3521 var elements = $(form).getElements().findAll(function(element) { 3524 var firstByIndex = elements.findAll(function(element) {
|
D | concat-jquery-mootools-prototype.js | 9037 findAll: function(iterator, context) { method 9184 select: Enumerable.findAll, 9185 filter: Enumerable.findAll, 9276 return this.uniq().findAll(function(item) { 11900 var elements = $(form).getElements().findAll(function(element) { 11903 var firstByIndex = elements.findAll(function(element) {
|
/external/webkit/WebKit/qt/symbian/bwins/ |
D | QtWebKitu.def | 173 …?findAll@QWebElement@@QBE?AVQWebElementCollection@@ABVQString@@@Z @ 172 NONAME ; class QWebElement…
|
/external/webkit/WebKit/qt/tests/qwebpage/ |
D | tst_qwebpage.cpp | 1337 QWebElementCollection inputs = page->mainFrame()->documentElement().findAll("input"); in inputMethods()
|
/external/webkit/WebKit/qt/tests/qwebframe/ |
D | tst_qwebframe.cpp | 2371 QWebElement p = frame->documentElement().findAll("p").at(0); in setHtmlWithResource()
|
/external/webkit/WebKit/qt/ |
D | ChangeLog | 1315 findAll() returns a QWebElementCollection, not QList<QWebElement>. 1318 (findAll): 1632 (findAll): 2790 (QWebElement::findAll): 4424 (QWebElement::findAll): 5445 Clean up documentation of QWebElement's findFirst and findAll functions, 7132 (QWebElement::findAll): 7150 * Fix argument names of findAll/findFirst 7164 (QWebElement::findAll): 7281 (QWebElement::findAll): [all …]
|