OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:soup
(Results
1 - 9
of
9
) sorted by null
/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
110
types = self.
soup
.types
122
for entry in self.
soup
.find_all(entry_filter):
/external/chromium_org/ppapi/c/documentation/
doxy_cleanup.py
32
self.
soup
= BeautifulSoup(html)
58
for tag in self.
soup
.findAll('tr'):
76
new_table = Tag(self.
soup
, name='table', attrs=table.attrs)
90
header_tags = self.
soup
.findAll(
100
return str(self.
soup
)
/external/chromium_org/ppapi/cpp/documentation/
doxy_cleanup.py
31
self.
soup
= BeautifulSoup(html)
57
for tag in self.
soup
.findAll('tr'):
75
new_table = Tag(self.
soup
, name='table', attrs=table.attrs)
89
header_tags = self.
soup
.findAll(
99
return str(self.
soup
)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/
buildbot.py
323
soup
= BeautifulSoup(page)
325
file_rows =
soup
.find('table').findAll('tr', {'class': re.compile(r'\b(?:directory|file)\b')})
337
soup
= BeautifulSoup(self._fetch_one_box_per_builder())
338
return [self._parse_builder_status_from_row(status_row) for status_row in
soup
.find('table').findAll('tr')]
364
soup
= BeautifulSoup(self._fetch_builder_page(builder))
366
for status_row in
soup
.find('table').findAll('tr'):
buildbot_unittest.py
161
soup
= BeautifulSoup(self._example_one_box_status)
162
status_table =
soup
.find("table")
/external/chromium_org/third_party/WebKit/Tools/Scripts/
validate-committer-lists
66
soup
= BeautifulSoup(page)
70
for email_item in
soup
('li'):
/external/chromium_org/third_party/WebKit/Tools/qunit/test/
test.js
169
recipe:"
soup
",
174
deepEqual(this.options, {recipe:"
soup
",ingredients:["hamster","onions"]}) ;
181
deepEqual(this.options, {recipe:"
soup
",ingredients:["hamster","onions","carrots"]}, "Is this a bug or a feature? Could do a deep copy") ;
/external/chromium_org/third_party/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
101
#These hacks make Beautiful
Soup
able to parse XML with namespaces
404
return str.replace("%
SOUP
-ENCODING%", encoding)
467
if "%
SOUP
-ENCODING%" in output
2013
soup
= BeautifulSoup(sys.stdin)
variable
[
all
...]
Completed in 337 milliseconds