Home
last modified time | relevance | path

Searched refs:getreader (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_codecs.py119 r = codecs.getreader(self.encoding)(q)
157 def getreader(input): function
159 return codecs.getreader(self.encoding)(stream)
162 reader = getreader(input)
194 reader = getreader(s)
204 reader = getreader(s)
221 def getreader(): function
223 return codecs.getreader(self.encoding)(stream)
226 f = getreader()
232 f = getreader()
[all …]
Dmultibytecodec_support.py174 UTF8Reader = codecs.getreader('utf-8')
251 UTF8Reader = codecs.getreader('utf-8')
/external/jsoncpp/.travis_scripts/
Drun-clang-format.py158 proc_stdout = codecs.getreader(encoding)(proc_stdout)
159 proc_stderr = codecs.getreader(encoding)(proc_stderr)
/external/python/cpython3/Lib/
Dcodecs.py1021 def getreader(encoding): function
/external/python/pyserial/serial/tools/
Dminiterm.py201 self.enc_stdin = codecs.getreader(sys.stdin.encoding)(sys.stdin)
/external/compiler-rt/lib/sanitizer_common/scripts/
Dcpplint.py3888 codecs.getreader('utf8'),
4011 codecs.getreader('utf8'),
/external/libvpx/tools/
Dcpplint.py6065 codecs.getreader('utf8'),
6229 codecs.getreader('utf8'),
/external/google-styleguide/cpplint/
Dcpplint.py6068 codecs.getreader('utf8'),
6232 codecs.getreader('utf8'),
/external/libaom/tools/
Dcpplint.py6065 codecs.getreader('utf8'),
6229 codecs.getreader('utf8'),
/external/python/cpython3/Doc/howto/
Dunicode.rst707 codecs.getreader('latin-1'), codecs.getwriter('latin-1') )
/external/python/cpython3/Doc/library/
Dcodecs.rst141 .. function:: getreader(encoding)
/external/python/cpython3/Misc/
DHISTORY24154 built-in codecs: getencoder(), getdecoder(), getreader(),