Home
last modified time | relevance | path

Searched refs:findAll (Results 1 – 20 of 20) sorted by relevance

/external/webkit/Source/WebKit/qt/tests/qwebelement/
Dtst_qwebelement.cpp121 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/
Dmain.cpp92 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/
Dlayouttestresults.py71 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/
Dbuildbot.py333 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')]
Dbuildbot_unittest.py190 input_rows = status_table.findAll('tr')
/external/webkit/Tools/Scripts/
Dprint-vse-failure-logs97 result.extend([text.replace(" ", "") for text in table.findAll(text=True)])
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
Dbugzilla.py148 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/
DBeautifulSoup.py587 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/
Dqwebelement.h70 QWebElementCollection findAll(const QString &selectorQuery) const;
Dqwebelement.cpp238 QWebElementCollection QWebElement::findAll(const QString &selectorQuery) const in findAll() function in QWebElement
Dqwebframe.cpp1384 return documentElement().findAll(selectorQuery); in findAllElements()
/external/webkit/Source/WebCore/inspector/front-end/
Dutilities.js368 String.prototype.findAll = function(string) method in String
382 this._lineEndings = this.findAll("\n");
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
Dprototype-1.6.0.3.js658 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) {
Dconcat-jquery-mootools-prototype.js9037 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/
Dtst_qwebframe.cpp2522 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/
DQtWebKitu.def173 …?findAll@QWebElement@@QBE?AVQWebElementCollection@@ABVQString@@@Z @ 172 NONAME ; class QWebElement…
/external/webkit/Source/WebKit/qt/tests/qwebpage/
Dtst_qwebpage.cpp1558 QWebElementCollection inputs = page->mainFrame()->documentElement().findAll("input"); in inputMethods()
/external/webkit/Source/WebKit/qt/
DChangeLog-2011-02-1611815 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/
DChangeLog-2011-02-165214 due to my misunderstanding of how BeautifulSoup.findAll worked.
/external/webkit/Source/WebCore/
DChangeLog-2011-02-1626022 (String.prototype.findAll):