Home
last modified time | relevance | path

Searched refs:CHARSET_RE (Results 1 – 5 of 5) sorted by relevance

/external/chromium-trace/catapult/third_party/WebOb/webob/
Dresponse.py43 CHARSET_RE,
575 match = CHARSET_RE.search(header)
588 match = CHARSET_RE.search(header)
599 match = CHARSET_RE.search(header)
Ddescriptors.py29 CHARSET_RE = re.compile(r';\s*charset=([^;]*)', re.I) variable
Drequest.py47 CHARSET_RE,
213 new_content_type = CHARSET_RE.sub('; charset="UTF-8"',
1677 m = CHARSET_RE.search(ctype)
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
Delement.py67 CHARSET_RE = re.compile("((^|;)\s*charset=)([^;]*)", re.M) variable in ContentMetaAttributeValue
70 match = cls.CHARSET_RE.search(original_value)
82 return self.CHARSET_RE.sub(rewrite, self.original_value)
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py1574 CHARSET_RE = re.compile("((^|;)\s*charset=)([^;]*)", re.M) variable in BeautifulSoup
1595 match = self.CHARSET_RE.search(contentType)
1606 newAttr = self.CHARSET_RE.sub(rewrite, contentType)