Searched defs:codecs (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium/webkit/glue/
H A Dsimple_webmimeregistry_impl.cc53 const WebString& mime_type, const WebString& codecs) {
58 // Check list of strict codecs to see if it is supported.
60 // We support the container, but no codecs were specified.
61 if (codecs.isNull())
64 // Check if the codecs are a perfect match.
66 net::ParseCodecString(ToASCIIOrEmpty(codecs).c_str(),
79 net::ParseCodecString(ToASCIIOrEmpty(codecs).c_str(), &parsed_codecs, true);
52 supportsMediaMIMEType( const WebString& mime_type, const WebString& codecs) argument
/external/webkit/Tools/Scripts/
H A Dcheck-webkit-style45 import codecs namespace
65 stderr = codecs.StreamReaderWriter(sys.stderr,
66 codecs.getreader('utf8'),
67 codecs.getwriter('utf8'),
H A Dprint-vse-failure-logs35 import codecs namespace
108 with codecs.open(build_log_path, "r", "utf-16") as build_log:
H A Dcheck-inspector-strings31 import codecs namespace
79 localized_strings_file = codecs.open(file_path, encoding="utf-16", mode="r")
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dchangelog_unittest.py31 import codecs namespace
121 with codecs.open(file_path, "r", encoding) as file:
H A Ddeps.py31 import codecs namespace
H A Dapi_unittest.py31 import codecs namespace
47 with codecs.open(file_path, "w", encoding) as file:
H A Dchangelog.py31 import codecs namespace
104 unicode strings. Use codecs.open or StringIO(unicode())
126 changelog_file = codecs.open(self.path, "r", "utf-8")
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Ddeprecated_logging.py33 import codecs namespace
80 return codecs.open(log_path, "a+", "utf-8")
H A Dautoinstall.py36 import codecs namespace
129 with codecs.open(path, "w", encoding) as file:
220 with codecs.open(version_path, "r", "utf-8") as file:
H A Dfilesystem.py33 import codecs namespace
204 return codecs.open(path, mode, 'utf8')
207 return codecs.open(path, 'rb')
218 with codecs.open(path, 'r', 'utf8') as f:
263 with codecs.open(path, 'r', 'utf8') as f:
279 with codecs.open(path, 'w', 'utf8') as f:
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_results_uploader.py32 import codecs namespace
98 with codecs.open(path, "rb") as file:
/external/webkit/Tools/Scripts/webkitpy/style/
H A Dfilereader.py33 import codecs namespace
77 file = codecs.StreamReaderWriter(sys.stdin,
78 codecs.getreader('utf8'),
79 codecs.getwriter('utf8'),
83 # (codecs does not support it anyway), so the resulting
86 file = codecs.open(file_path, 'r', 'utf8', 'replace')
H A Dfilereader_unittest.py27 import codecs namespace
77 with codecs.open(file_path, "w", encoding) as file:
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
H A D__init__.py29 import codecs namespace
95 with codecs.open(readme_path, "w", "ascii") as file:
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dpreparechangelogforrevert_unittest.py31 import codecs namespace
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dhttp_server.py34 import codecs namespace
127 with codecs.open(base_conf_file, "r", "utf-8") as file:
134 f = codecs.open(out_conf_file, "w", "utf-8")
H A Dapache_http_server.py35 import codecs namespace
161 with codecs.open(httpd_config, "r", "utf-8") as httpd_config_file:
175 with codecs.open(httpd_config_copy, "w", "utf-8") as file:
H A Dwebsocket_server.py35 import codecs namespace
158 self._wsout = codecs.open(output_log, "w", "utf-8")
215 with codecs.open(output_log, "r", "utf-8") as fp:
227 with codecs.open(self._pidfile, "w", "ascii") as file:
238 with codecs.open(self._pidfile, "r", "ascii") as file:
/external/markdown/
H A Dtest-markdown.py3 import os, difflib, time, gc, codecs, platform, sys namespace
198 self.html_diff_file = codecs.open(html_diff_file_path, "w", encoding=encoding)
238 expected_output = codecs.open(output_file, encoding=self.encoding).read()
239 input = codecs.open(input_file, encoding=self.encoding).read()
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dflakytestreporter.py29 import codecs namespace
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dfilemediaengine.cc216 bool FileVoiceChannel::SetSendCodecs(const std::vector<AudioCodec>& codecs) { argument
239 bool FileVideoChannel::SetSendCodecs(const std::vector<VideoCodec>& codecs) { argument
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Decho_client.py65 import codecs namespace
913 sys.stdout = codecs.getwriter('utf-8')(sys.stdout)
/external/markdown/markdown/
H A D__init__.py46 import codecs namespace
400 output, length = codecs.utf_8_decode(self.serializer(root, encoding="utf-8"))
443 input_file = codecs.open(input, mode="r", encoding=encoding)
453 output_file = codecs.open(output, "w", encoding=encoding)
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Drebaselineserver.py34 import codecs namespace
202 with codecs.open(file_path, "rb") as static_file:

Completed in 1290 milliseconds

12