/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_gzip.py | 36 with gzip.GzipFile(self.filename, 'wb') as f: 52 with gzip.GzipFile(self.filename, 'r') as f: 59 with gzip.GzipFile(self.filename, 'rU') as f: 64 # Test that I/O operations on closed GzipFile objects raise a 69 f = gzip.GzipFile(self.filename, 'r') 78 f = gzip.GzipFile(self.filename, 'w') 88 with gzip.GzipFile(self.filename, 'ab') as f: 91 with gzip.GzipFile(self.filename, 'rb') as f: 115 # Issue #7471: a GzipFile can be wrapped in a BufferedReader for 119 with gzip.GzipFile(self.filename, 'rb') as f [all...] |
test_tarfile.py | 18 gzip.GzipFile 187 _open = gzip.GzipFile 241 _open = gzip.GzipFile [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_gzip.py | 36 with gzip.GzipFile(self.filename, 'wb') as f: 52 with gzip.GzipFile(self.filename, 'r') as f: 59 with gzip.GzipFile(self.filename, 'rU') as f: 64 # Test that I/O operations on closed GzipFile objects raise a 69 f = gzip.GzipFile(self.filename, 'r') 78 f = gzip.GzipFile(self.filename, 'w') 88 with gzip.GzipFile(self.filename, 'ab') as f: 91 with gzip.GzipFile(self.filename, 'rb') as f: 115 # Issue #7471: a GzipFile can be wrapped in a BufferedReader for 119 with gzip.GzipFile(self.filename, 'rb') as f [all...] |
test_tarfile.py | 18 gzip.GzipFile 187 _open = gzip.GzipFile 241 _open = gzip.GzipFile [all...] |
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
ruby.php | 116 'Zlib::Error', 'Zlib::GzipFile', 'Zlib::GzipFile::CRCError', 117 'Zlib::GzipFile::Error', 'Zlib::GzipFile::LengthError', 118 'Zlib::GzipFile::NoFooter', 'Zlib::GzipReader',
|
rails.php | 109 'Zlib::Error', 'Zlib::GzipFile', 'Zlib::GzipFile::CRCError', 110 'Zlib::GzipFile::Error', 'Zlib::GzipFile::LengthError', 111 'Zlib::GzipFile::NoFooter', 'Zlib::GzipReader',
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
gzip.py | 13 __all__ = ["GzipFile","open"] 28 """Shorthand for GzipFile(filename, mode, compresslevel). 34 return GzipFile(filename, mode, compresslevel) 36 class GzipFile(io.BufferedIOBase): 37 """The GzipFile class simulates most of the methods of a file object with 47 """Constructor for the GzipFile class. 224 raise IOError(errno.EBADF, "write() on read-only GzipFile object") 227 raise ValueError, "write() on closed GzipFile object" 245 raise IOError(errno.EBADF, "read() on write-only GzipFile object") 492 f = GzipFile(filename="", mode="rb", fileobj=sys.stdin [all...] |
xmlrpclib.py | [all...] |
tarfile.py | 516 # taken from gzip.GzipFile with some alterations 644 class which (unlike gzip.GzipFile) has no support for [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
gzip.py | 13 __all__ = ["GzipFile","open"] 28 """Shorthand for GzipFile(filename, mode, compresslevel). 34 return GzipFile(filename, mode, compresslevel) 36 class GzipFile(io.BufferedIOBase): 37 """The GzipFile class simulates most of the methods of a file object with 47 """Constructor for the GzipFile class. 224 raise IOError(errno.EBADF, "write() on read-only GzipFile object") 227 raise ValueError, "write() on closed GzipFile object" 245 raise IOError(errno.EBADF, "read() on write-only GzipFile object") 492 f = GzipFile(filename="", mode="rb", fileobj=sys.stdin [all...] |
xmlrpclib.py | [all...] |
tarfile.py | 516 # taken from gzip.GzipFile with some alterations 644 class which (unlike gzip.GzipFile) has no support for [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/ |
parse.py | 370 from gzip import GzipFile 371 stream = GzipFile(arg, 'rt')
|
/external/mesa3d/src/gallium/tools/trace/ |
parse.py | 370 from gzip import GzipFile 371 stream = GzipFile(arg, 'rt')
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
memory_cache_http_server.py | 165 gzf = gzip.GzipFile(fileobj=sio, compresslevel=9, mode='wb')
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
__init__.py | 349 content = gzip.GzipFile(fileobj=StringIO.StringIO(new_content)).read() [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
__init__.py | 349 content = gzip.GzipFile(fileobj=StringIO.StringIO(new_content)).read() [all...] |