HomeSort by relevance Sort by last modified time
    Searched defs:codecs (Results 1 - 25 of 37) sorted by null

1 2

  /cts/tests/tests/net/src/android/net/rtp/cts/
AudioCodecTest.java 63 AudioCodec[] codecs = AudioCodec.getCodecs(); local
64 assertTrue(codecs.length >= 5);
66 // The types of the codecs should be different.
68 for (AudioCodec codec : codecs) {
  /external/webkit/Tools/Scripts/
check-webkit-style 45 import codecs namespace
65 stderr = codecs.StreamReaderWriter(sys.stderr,
66 codecs.getreader('utf8'),
67 codecs.getwriter('utf8'),
print-vse-failure-logs 35 import codecs namespace
108 with codecs.open(build_log_path, "r", "utf-16") as build_log:
check-inspector-strings 31 import codecs namespace
79 localized_strings_file = codecs.open(file_path, encoding="utf-16", mode="r")
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
changelog_unittest.py 31 import codecs namespace
121 with codecs.open(file_path, "r", encoding) as file:
deps.py 31 import codecs namespace
api_unittest.py 31 import codecs namespace
47 with codecs.open(file_path, "w", encoding) as file:
changelog.py 31 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/
deprecated_logging.py 33 import codecs namespace
80 return codecs.open(log_path, "a+", "utf-8")
autoinstall.py 36 import codecs namespace
129 with codecs.open(path, "w", encoding) as file:
220 with codecs.open(version_path, "r", "utf-8") as file:
filesystem.py 33 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/
test_results_uploader.py 32 import codecs namespace
98 with codecs.open(path, "rb") as file:
  /external/webkit/Tools/Scripts/webkitpy/style/
filereader.py 33 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')
filereader_unittest.py 27 import codecs namespace
77 with codecs.open(file_path, "w", encoding) as file:
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
__init__.py 29 import codecs namespace
95 with codecs.open(readme_path, "w", "ascii") as file:
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
preparechangelogforrevert_unittest.py 31 import codecs namespace
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
http_server.py 34 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")
apache_http_server.py 35 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:
websocket_server.py 35 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/
test-markdown.py 3 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/
flakytestreporter.py 29 import codecs namespace
  /external/markdown/markdown/
__init__.py 46 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/
rebaselineserver.py 34 import codecs namespace
202 with codecs.open(file_path, "rb") as static_file:
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
streams.py 33 import codecs namespace
544 fp = codecs.open(fileName, 'rb', encoding)
581 reader = codecs.lookup(encoding)[2]
    [all...]
  /external/chromium/net/base/
mime_util.cc 43 bool AreSupportedMediaCodecs(const std::vector<std::string>& codecs) const;
45 void ParseCodecString(const std::string& codecs,
51 const std::vector<std::string>& codecs) const;
232 // List of supported codecs when passed in with <source type="...">.
351 MimeMappings codecs; local
353 codecs.insert(mime_type_codecs[j]);
354 strict_format_map_[format_codec_mappings[i].mime_type] = codecs;
423 const std::vector<std::string>& codecs) const {
424 for (size_t i = 0; i < codecs.size(); ++i) {
425 if (codecs_map_.find(codecs[i]) == codecs_map_.end())
    [all...]

Completed in 1612 milliseconds

1 2