/external/webkit/Source/WebKit/qt/tests/qwebelement/ |
D | tst_qwebelement.cpp | 121 QWebElementCollection list = body.findAll("p"); in simpleCollection() 199 QWebElement p = m_mainFrame->documentElement().findAll("p").at(0); in classes() 269 QWebElement svg = body.findAll("*#foobar").at(0); in namespaceURI() 283 QWebElementCollection paras = body.findAll("p"); in iteration() 317 QWebElementCollection paras = body.findAll("p"); in nonConstIterator() 333 const QWebElementCollection paras = body.findAll("p"); in constIterator() 349 foreach(QWebElement p, body.findAll("p")) { in foreachManipulation() 353 QCOMPARE(body.findAll("div").count(), 4); in foreachManipulation() 369 QWebElementCollection collection = body.findAll("p"); in appendCollection() 372 collection.append(body.findAll("div")); in appendCollection() [all …]
|
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/ |
D | main.cpp | 92 static void findAll() in findAll() function 109 QWebElementCollection allSpans = document.findAll("span"); in findAll() 110 QWebElementCollection introSpans = document.findAll("p.intro span"); in findAll() 120 findAll(); in main()
|
/external/webkit/Tools/Scripts/webkitpy/common/net/ |
D | layouttestresults.py | 71 for anchor in row.findAll("a"): 119 return [cls._test_result_from_row(row, table_title) for row in table.findAll("tr")] 123 tables = BeautifulSoup(page).findAll("table")
|
/external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/ |
D | buildbot.py | 333 status_cells = status_row.findAll('td') 401 file_cells = file_row.findAll('td') 412 … file_rows = soup.find('table').findAll('tr', {'class': re.compile(r'\b(?:directory|file)\b')}) 425 …self._parse_builder_status_from_row(status_row) for status_row in soup.find('table').findAll('tr')]
|
D | buildbot_unittest.py | 190 input_rows = status_table.findAll('tr')
|
/external/webkit/Tools/Scripts/ |
D | print-vse-failure-logs | 97 result.extend([text.replace(" ", "") for text in table.findAll(text=True)])
|
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/ |
D | bugzilla.py | 148 quips = soup.find(text=re.compile(r"Existing quips:")).findNext("ul").findAll("li") 333 bug["cc_emails"] = [self._string_contents(element) for element in soup.findAll('cc')] 334 …"] = [self._parse_attachment_element(element, bug["id"]) for element in soup.findAll('attachment')] 552 match.group('error_message')).findAll(text=True)
|
/external/webkit/Tools/Scripts/webkitpy/thirdparty/ |
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)
|
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebelement.h | 70 QWebElementCollection findAll(const QString &selectorQuery) const;
|
D | qwebelement.cpp | 238 QWebElementCollection QWebElement::findAll(const QString &selectorQuery) const in findAll() function in QWebElement
|
D | qwebframe.cpp | 1384 return documentElement().findAll(selectorQuery); in findAllElements()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | utilities.js | 368 String.prototype.findAll = function(string) method in String 382 this._lineEndings = this.findAll("\n");
|
/external/webkit/PerformanceTests/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/Source/WebKit/qt/tests/qwebframe/ |
D | tst_qwebframe.cpp | 2522 QWebElement p = frame->documentElement().findAll("p").at(0); in setHtmlWithResource() 3139 QCOMPARE(mainFrame->documentElement().findAll("span").at(0).toPlainText(), QString("SUCCESS")); in scrollbarsOff()
|
/external/webkit/Source/WebKit/qt/symbian/bwins/ |
D | QtWebKitu.def | 173 …?findAll@QWebElement@@QBE?AVQWebElementCollection@@ABVQString@@@Z @ 172 NONAME ; class QWebElement…
|
/external/webkit/Source/WebKit/qt/tests/qwebpage/ |
D | tst_qwebpage.cpp | 1558 QWebElementCollection inputs = page->mainFrame()->documentElement().findAll("input"); in inputMethods()
|
/external/webkit/Source/WebKit/qt/ |
D | ChangeLog-2011-02-16 | 11815 findAll() returns a QWebElementCollection, not QList<QWebElement>. 11818 (findAll): 12132 (findAll): 13290 (QWebElement::findAll): 14924 (QWebElement::findAll): 15945 Clean up documentation of QWebElement's findFirst and findAll functions, 17632 (QWebElement::findAll): 17650 * Fix argument names of findAll/findFirst 17664 (QWebElement::findAll): 17781 (QWebElement::findAll): [all …]
|
/external/webkit/Tools/ |
D | ChangeLog-2011-02-16 | 5214 due to my misunderstanding of how BeautifulSoup.findAll worked.
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2011-02-16 | 26022 (String.prototype.findAll):
|