/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
H A D | test_zipfile.py | 50 def make_test_archive(self, f, compression): 52 with zipfile.ZipFile(f, "w", compression) as zipfp: 57 def zip_test(self, f, compression): 58 self.make_test_archive(f, compression) 61 with zipfile.ZipFile(f, "r", compression) as zipfp: 119 def zip_open_test(self, f, compression): 120 self.make_test_archive(f, compression) 123 with zipfile.ZipFile(f, "r", compression) as zipfp: 165 def zip_random_open_test(self, f, compression): 166 self.make_test_archive(f, compression) [all...] |
H A D | test_zipfile64.py | 46 def zipTest(self, f, compression): 48 zipfp = zipfile.ZipFile(f, "w", compression, allowZip64=True) 67 zipfp = zipfile.ZipFile(f, "r", compression)
|
H A D | test_zipimport.py | 60 compression = ZIP_STORED variable in class:UncompressedZipImportTestCase 74 zinfo.compress_type = self.compression 133 if self.compression != ZIP_DEFLATED: 136 if self.compression != ZIP_STORED: 212 zinfo.compress_type = self.compression 256 zinfo.compress_type = self.compression 287 z.compression = self.compression 387 compression = ZIP_DEFLATED variable in class:CompressedZipImportTestCase
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
H A D | test_zipfile.py | 50 def make_test_archive(self, f, compression): 52 with zipfile.ZipFile(f, "w", compression) as zipfp: 57 def zip_test(self, f, compression): 58 self.make_test_archive(f, compression) 61 with zipfile.ZipFile(f, "r", compression) as zipfp: 119 def zip_open_test(self, f, compression): 120 self.make_test_archive(f, compression) 123 with zipfile.ZipFile(f, "r", compression) as zipfp: 165 def zip_random_open_test(self, f, compression): 166 self.make_test_archive(f, compression) [all...] |
H A D | test_zipfile64.py | 46 def zipTest(self, f, compression): 48 zipfp = zipfile.ZipFile(f, "w", compression, allowZip64=True) 67 zipfp = zipfile.ZipFile(f, "r", compression)
|
H A D | test_zipimport.py | 60 compression = ZIP_STORED variable in class:UncompressedZipImportTestCase 74 zinfo.compress_type = self.compression 133 if self.compression != ZIP_DEFLATED: 136 if self.compression != ZIP_STORED: 212 zinfo.compress_type = self.compression 256 zinfo.compress_type = self.compression 287 z.compression = self.compression 387 compression = ZIP_DEFLATED variable in class:CompressedZipImportTestCase
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
H A D | audiofile.h | 163 /* supported compression schemes */ 170 /* Apple proprietary AIFF-C compression schemes (not supported) */ 213 AF_QUERY_NATIVE_SAMPFMT = 609, /* for compression */ 299 AF_BAD_COMP_PARAM = 55, /* unrecognized compression parameter */ 372 AF_ERR_BAD_COMP_PARAM = 55+AF_ERR_BASE, /* unrecognized compression parameter */ 456 /* conversion/compression params set via DMparams */ 458 /* conversion/compression params retrieved via DMparams */ 496 /* track data: compression */ 497 void afInitCompression (AFfilesetup, int track, int compression); 499 void afInitCompressionParams (AFfilesetup, int track, int compression [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
H A D | audiofile.h | 163 /* supported compression schemes */ 170 /* Apple proprietary AIFF-C compression schemes (not supported) */ 213 AF_QUERY_NATIVE_SAMPFMT = 609, /* for compression */ 299 AF_BAD_COMP_PARAM = 55, /* unrecognized compression parameter */ 372 AF_ERR_BAD_COMP_PARAM = 55+AF_ERR_BASE, /* unrecognized compression parameter */ 456 /* conversion/compression params set via DMparams */ 458 /* conversion/compression params retrieved via DMparams */ 496 /* track data: compression */ 497 void afInitCompression (AFfilesetup, int track, int compression); 499 void afInitCompressionParams (AFfilesetup, int track, int compression [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
H A D | audiofile.h | 163 /* supported compression schemes */ 170 /* Apple proprietary AIFF-C compression schemes (not supported) */ 213 AF_QUERY_NATIVE_SAMPFMT = 609, /* for compression */ 299 AF_BAD_COMP_PARAM = 55, /* unrecognized compression parameter */ 372 AF_ERR_BAD_COMP_PARAM = 55+AF_ERR_BASE, /* unrecognized compression parameter */ 456 /* conversion/compression params set via DMparams */ 458 /* conversion/compression params retrieved via DMparams */ 496 /* track data: compression */ 497 void afInitCompression (AFfilesetup, int track, int compression); 499 void afInitCompressionParams (AFfilesetup, int track, int compression [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
H A D | archive_util.py | 64 the appropriate compression extension (".gz", ".bz2" or ".Z"). 71 # flags for compression program, each element of list will be an argument 107 # compression using `compress` 163 compression=zipfile.ZIP_DEFLATED)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
H A D | archive_util.py | 64 the appropriate compression extension (".gz", ".bz2" or ".Z"). 71 # flags for compression program, each element of list will be an argument 107 # compression using `compress` 163 compression=zipfile.ZIP_DEFLATED)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
H A D | zipfile.py | 11 import zlib # We may need its compression method namespace 36 # constants for Zip file compression methods 39 # Other ZIP compression methods not supported 308 self.compress_type = ZIP_STORED # Type of compression for the file 530 raise NotImplementedError("compression type %d (%s)" % (self._compress_type, descr)) 532 raise NotImplementedError("compression type %d" % (self._compress_type,)) 708 z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=False) 713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib). 722 def __init__(self, file, mode="r", compression [all...] |
H A D | shutil.py | 349 the appropriate compression extension (".gz", or ".bz2"). 356 # flags for compression program, each element of list will be an argument 450 compression=zipfile.ZIP_DEFLATED)
|
H A D | tarfile.py | 336 """Exception for unavailable compression methods.""" 391 blockwise. Use of gzip or bzip2 compression is possible. 407 # Enable transparent compression detection for the 449 """Initialize for writing with gzip compression. 520 raise CompressionError("unsupported compression method") 617 """Small proxy class that enables transparent compression 1619 # adequate "sub"-constructor for a particular compression using the mapping 1632 'r' or 'r:*' open for reading with transparent compression 1634 'r:gz' open for reading with gzip compression 1635 'r:bz2' open for reading with bzip2 compression [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
H A D | zipfile.py | 11 import zlib # We may need its compression method namespace 36 # constants for Zip file compression methods 39 # Other ZIP compression methods not supported 308 self.compress_type = ZIP_STORED # Type of compression for the file 530 raise NotImplementedError("compression type %d (%s)" % (self._compress_type, descr)) 532 raise NotImplementedError("compression type %d" % (self._compress_type,)) 708 z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=False) 713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib). 722 def __init__(self, file, mode="r", compression [all...] |
H A D | shutil.py | 349 the appropriate compression extension (".gz", or ".bz2"). 356 # flags for compression program, each element of list will be an argument 450 compression=zipfile.ZIP_DEFLATED)
|
H A D | tarfile.py | 336 """Exception for unavailable compression methods.""" 391 blockwise. Use of gzip or bzip2 compression is possible. 407 # Enable transparent compression detection for the 449 """Initialize for writing with gzip compression. 520 raise CompressionError("unsupported compression method") 617 """Small proxy class that enables transparent compression 1619 # adequate "sub"-constructor for a particular compression using the mapping 1632 'r' or 'r:*' open for reading with transparent compression 1634 'r:gz' open for reading with gzip compression 1635 'r:bz2' open for reading with bzip2 compression [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
H A D | lbxstr.h | 399 CARD8 compression; member in struct:__anon3680
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
H A D | lbxstr.h | 399 CARD8 compression; member in struct:__anon5270
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
H A D | lbxstr.h | 399 CARD8 compression; member in struct:__anon6785
|
/prebuilts/devtools/tools/lib/ |
H A D | jfreechart-1.0.9.jar | META-INF/ META-INF/MANIFEST.MF org/ org/jfree/ org/jfree/chart/ org/jfree/chart/annotations/ ... |
/prebuilts/tools/common/jfreechart/ |
H A D | jfreechart-1.0.9.jar | META-INF/ META-INF/MANIFEST.MF org/ org/jfree/ org/jfree/chart/ org/jfree/chart/annotations/ ... |
/prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/ |
H A D | jfreechart-1.0.9.jar | META-INF/ META-INF/MANIFEST.MF org/ org/jfree/ org/jfree/chart/ org/jfree/chart/annotations/ ... |
/prebuilts/tools/common/ant/ |
H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
/prebuilts/tools/common/m2/internal/com/android/external/eclipse/swt/3.5.0/ |
H A D | swt-3.5.0.jar | META-INF/ META-INF/MANIFEST.MF libswt-agl-carbon-3550.jnilib libswt ... |