HomeSort by relevance Sort by last modified time
    Searched refs:findAll (Results 1 - 25 of 40) sorted by null

1 2

  /external/webkit/Source/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 121 QWebElementCollection list = body.findAll("p");
199 QWebElement p = m_mainFrame->documentElement().findAll("p").at(0);
269 QWebElement svg = body.findAll("*#foobar").at(0);
283 QWebElementCollection paras = body.findAll("p");
317 QWebElementCollection paras = body.findAll("p");
333 const QWebElementCollection paras = body.findAll("p");
349 foreach(QWebElement p, body.findAll("p")) {
353 QCOMPARE(body.findAll("div").count(), 4);
369 QWebElementCollection collection = body.findAll("p");
372 collection.append(body.findAll("div"))
    [all...]
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/
main.cpp 92 static void findAll()
94 //! [FindAll]
108 //! [FindAll intro]
109 QWebElementCollection allSpans = document.findAll("span");
110 QWebElementCollection introSpans = document.findAll("p.intro span");
111 //! [FindAll intro] //! [FindAll]
120 findAll();
  /external/webkit/Tools/Scripts/webkitpy/common/net/
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")
  /frameworks/base/core/java/android/webkit/
FindActionModeCallback.java 120 findAll();
135 public void findAll() {
138 "No WebView for FindActionModeCallback::findAll");
145 mWebView.findAll(null);
266 findAll();
WebViewProvider.java 200 public int findAll(String find);
WebView.java     [all...]
WebViewClassic.java     [all...]
  /external/webkit/Tools/Scripts/
print-vse-failure-logs 97 result.extend([text.replace(" ", "") for text in table.findAll(text=True)])
  /external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/
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 return [self._parse_builder_status_from_row(status_row) for status_row in soup.find('table').findAll('tr')]
buildbot_unittest.py 190 input_rows = status_table.findAll('tr')
  /cts/tests/src/android/webkit/cts/
WebViewOnUiThread.java 612 public int findAll(final String find) {
616 return mWebView.findAll(find);
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
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 bug["attachments"] = [self._parse_attachment_element(element, bug["id"]) for element in soup.findAll('attachment')]
552 match.group('error_message')).findAll(text=True)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 585 findAll() method. Eg. tag('a') returns a list of all the A tags
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,
789 findChildren = findAll
793 fetch = findAll
796 return self.findAll(text=text, recursive=recursive, limit=limit)
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebelement.h 70 QWebElementCollection findAll(const QString &selectorQuery) const;
qwebelement.cpp 82 Specific elements can be accessed using findAll() and findFirst(). These
84 demonstrates the use of findAll().
86 \snippet webkitsnippets/webelement/main.cpp FindAll
92 Using findFirst() is more efficient than calling findAll(), and extracting
238 QWebElementCollection QWebElement::findAll(const QString &selectorQuery) const
251 \sa findAll()
    [all...]
qwebframe.cpp     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
utilities.js 368 String.prototype.findAll = function(string)
382 this._lineEndings = this.findAll("\n");
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 658 findAll: function(iterator, context) {
805 select: Enumerable.findAll,
806 filter: Enumerable.findAll,
897 return this.uniq().findAll(function(item) {
    [all...]
concat-jquery-mootools-prototype.js     [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java 791 assertEquals(2, mWebView.findAll("find"));
807 mOnUiThread.findAll("all");
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 679 milliseconds

1 2