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

1 2

  /external/webkit/Source/WebCore/platform/network/soup/
CookieJarSoup.h 31 #include <libsoup/soup.h>
GOwnPtrSoup.cpp 23 #include <libsoup/soup-uri.h>
SoupURIUtils.cpp 23 #include <libsoup/soup.h>
ResourceResponse.h 31 #include <libsoup/soup.h>
ResourceRequest.h 32 #include <libsoup/soup.h>
ResourceRequestSoup.cpp 31 #include <libsoup/soup.h>
116 // Soup has its own queue control; it wants to have all requests
  /external/webkit/Source/WebKit/gtk/webkit/
webkitglobals.h 28 #include <libsoup/soup.h>
webkitnetworkrequest.h 24 #include <libsoup/soup.h>
webkitnetworkresponse.h 24 #include <libsoup/soup.h>
  /system/media/camera/docs/
metadata_validate.py 178 def validate_clones(soup):
183 soup - an instance of BeautifulSoup
190 for clone in soup.find_all("clone"):
199 matching_entry = soup.find(find_entry)
212 def validate_entries(soup):
220 soup - an instance of BeautifulSoup
226 for entry in soup.find_all("entry"):
281 soup = BeautifulSoup(xml, features='xml')
283 succ = validate_clones(soup)
284 succ = validate_entries(soup) and suc
    [all...]
metadata_parser_xml.py 61 soup: an instance of BeautifulSoup corresponding to the XML contents
85 def soup(self): member in class:MetadataParserXml
105 tags = self.soup.tags
113 for entry in self.soup.find_all(entry_filter):
  /external/webkit/Source/WebKit/gtk/tests/
testglobals.c 21 #include <libsoup/soup.h>
testmimehandling.c 25 #include <libsoup/soup.h>
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bugzilla.py 130 soup = BeautifulSoup(self._load_query(query))
134 for bug_link_cell in soup('td', "first-child")]
147 soup = BeautifulSoup(page, convertEntities=BeautifulSoup.HTML_ENTITIES)
148 quips = soup.find(text=re.compile(r"Existing quips:")).findNext("ul").findAll("li")
274 def _string_contents(self, soup):
280 return unicode(soup.string)
295 def _date_contents(self, soup):
296 return self._parse_date(self._string_contents(soup))
317 soup = BeautifulSoup(page)
320 return [Bug(self._parse_bug_dictionary_from_xml(unicode(bug_xml)), self) for bug_xml in soup('bug')
    [all...]
bugzilla_unittest.py 271 soup = BeautifulSoup(self._example_attachment)
272 attachment_element = soup.find("attachment")
  /external/webkit/Tools/Scripts/
print-vse-failure-logs 92 soup = BeautifulSoup.BeautifulSoup(log)
94 output_window_table = soup.find(text=re.compile("Output Window")).findParent("table")
validate-committer-lists 61 soup = BeautifulSoup(page)
65 for email_item in soup('li'):
  /external/webkit/Source/WebCore/platform/network/
ResourceHandleInternal.h 48 #if USE(SOUP)
51 #include <libsoup/soup-request.h>
52 #include <libsoup/soup.h>
114 #if USE(SOUP)
187 #if USE(SOUP)
  /external/webkit/Source/WebKit/gtk/docs/
GNUmakefile.am 81 -I$(top_srcdir)/Source/WebCore/platform/network/soup/cache \
  /external/webkit/Source/WebKit/efl/ewk/
ewk_main.cpp 52 #if USE(SOUP)
55 #include <libsoup/soup.h>
205 #if USE(SOUP)
ewk_cookies.cpp 24 #if USE(SOUP)
32 #if USE(SOUP)
34 #include <libsoup/soup.h>
50 #if USE(SOUP)
81 #if USE(SOUP)
102 #if USE(SOUP)
136 #if USE(SOUP)
165 #if USE(SOUP)
183 #if USE(SOUP)
213 #if USE(SOUP)
    [all...]
ewk_settings.cpp 46 #if USE(SOUP)
48 #include <libsoup/soup.h>
286 #if USE(SOUP)
290 ERR("no proxy uri. remove proxy feature in soup.");
312 #if USE(SOUP)
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 1 """Beautiful Soup
6 Beautiful Soup parses a (possibly invalid) XML or HTML document into a
16 Beautiful Soup works with Python 2.2 and up. It has no external
26 Beautiful Soup defines classes for two main parsing strategies:
35 Beautiful Soup also defines a class (UnicodeDammit) for autodetecting
39 For more than you ever wanted to know about Beautiful Soup, see the
61 * Neither the name of the the Beautiful Soup Consortium and All
100 #These hacks make Beautiful Soup able to parse XML with namespaces
383 return str.replace("%SOUP-ENCODING%", encoding)
444 if u'%SOUP-ENCODING%' in output
1999 soup = BeautifulSoup(sys.stdin) variable
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/
buildbot.py 410 soup = BeautifulSoup(page)
412 file_rows = soup.find('table').findAll('tr', {'class': re.compile(r'\b(?:directory|file)\b')})
424 soup = BeautifulSoup(self._fetch_one_box_per_builder())
425 return [self._parse_builder_status_from_row(status_row) for status_row in soup.find('table').findAll('tr')]
buildbot_unittest.py 188 soup = BeautifulSoup(self._example_one_box_status)
189 status_table = soup.find("table")

Completed in 329 milliseconds

1 2