/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/chromium-trace/catapult/third_party/Paste/tests/ |
test_gzipper.py | 18 actual = gzip.GzipFile(fileobj=six.BytesIO(res.body)).read()
|
/external/chromium-trace/catapult/tracing/tracing_build/ |
trace2html.py | 64 with gzip.GzipFile(fileobj=compressed_trace, mode='w') as f:
|
/external/jsoncpp/scons-tools/ |
targz.py | 44 fileobj = gzip.GzipFile( target_path, 'wb', compression )
|
/external/autotest/client/site_tests/platform_DebugDaemonGetPerfData/ |
platform_DebugDaemonGetPerfData.py | 54 gzip_file = gzip.GzipFile(fileobj=string_file, mode='wb')
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
gzipper.py | 75 output = gzip.GzipFile(mode='wb', compresslevel=self.compress_level,
|
/prebuilts/gdb/darwin-x86/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...] |
/prebuilts/gdb/linux-x86/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...] |
/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...] |
/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...] |
/external/mesa3d/src/gallium/tools/trace/ |
parse.py | 370 from gzip import GzipFile 371 stream = GzipFile(arg, 'rt')
|
/external/webrtc/third_party/gtest-parallel/ |
gtest-parallel | 200 with gzip.GzipFile(save_file, "rb") as f: 232 with gzip.GzipFile("", "wb", 9, f) as gzf:
|
/external/chromium-trace/catapult/telemetry/telemetry/core/ |
memory_cache_http_server.py | 191 gzf = gzip.GzipFile(fileobj=sio, compresslevel=9, mode='wb')
|
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
response.py | 978 from gzip import GzipFile 980 gzip_f = GzipFile(filename='', mode='r', fileobj=BytesIO(self.body)) [all...] |