Home
last modified time | relevance | path

Searched refs:parseOnlyThese (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/thirdparty/
DBeautifulSoup.py1164 def __init__(self, markup="", parseOnlyThese=None, fromEncoding=None, argument
1193 self.parseOnlyThese = parseOnlyThese
1317 if self.parseOnlyThese and len(self.tagStack) <= 1 and \
1318 (not self.parseOnlyThese.text or \
1319 not self.parseOnlyThese.search(currentData)):
1410 if self.parseOnlyThese and len(self.tagStack) <= 1 \
1411 and (self.parseOnlyThese.text or not self.parseOnlyThese.searchTag(name, attrs)):
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
Dbugzilla.py141 for tag in BeautifulSoup(page, parseOnlyThese=attachment_links)]