/frameworks/data-binding/integration-tests/IndependentLibrary/gradle/wrapper/ |
gradle-wrapper.properties | 21 distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
|
/frameworks/data-binding/integration-tests/MultiModuleTestApp/gradle/wrapper/ |
gradle-wrapper.properties | 22 distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
|
/external/dagger2/ |
deploy_website.sh | 34 curl -L "http://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=$GROUP_ID&a=$ARTIFACT_ID&v=LATEST&c=javadoc" > javadoc.zip 36 unzip javadoc.zip -d javadoc 37 rm javadoc.zip
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testConfigs/testingConfigTemplate/ |
testing.properties | 17 #name of zip file containing automated testing framework and JUnit test plug-ins 18 testFramework=VE-Automated-Tests-${buildId}.zip 21 runtime=VE-SDK-${buildId}.zip 42 vmDest=${testBase}/testVmWin.zip
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts/ |
testing.properties.template | 21 #name of zip file containing automated testing framework and JUnit test plug-ins 22 testFramework=eclipse-Automated-Tests-${buildId}.zip 25 runtime=eclipse-SDK-${buildId}-win32.zip 40 vmDest=jdk-1_4_2_14-fcs-bin-b03-windows-i586-22_jan_2007.zip 45 #path to tar.gz or zip of vm used to run tests
|
/external/okhttp/okio/ |
deploy_javadoc.sh | 27 curl -L "https://search.maven.org/remote_content?g=$GROUP_ID&a=$ARTIFACT_ID&v=LATEST&c=javadoc" > javadoc.zip 28 unzip javadoc.zip 29 rm javadoc.zip
|
/external/zlib/src/contrib/minizip/ |
make_vms.com | 17 $ cc/include=[--]/prefix=all zip.c 19 $ link minizip,zip,ioapi,[--]libz.olb/lib 21 $ mcr []miniunz -l test.zip 23 $ mcr []miniunz test.zip 24 $ delete test.zip;*
|
Makefile | 5 ZIP_OBJS = minizip.o zip.o ioapi.o ../../libz.a 20 ./miniunz -l test.zip 22 ./miniunz test.zip
|
/development/build/tools/ |
sdk_repo.mk | 10 # Define the name of a package zip file to generate 12 # $2=sdk zip (e.g. out/host/linux.../android-eng-sdk.zip) 15 define sdk-repo-pkg-zip 16 $(dir $(2))/sdk-repo-$(1)-$(3)-$(FILE_NAME_TAG).zip 26 # $3=sdk zip (e.g. out/host/linux.../android-eng-sdk.zip) 29 # The rule depends on the SDK zip file, which is defined by $2. 32 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)): $(3) 35 rm -f ../$(notdir $(call sdk-repo-pkg-zip,$(2),$(3),$(4))) && [all...] |
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/ |
AnalyzerTest.java | 33 import java.util.zip.GZIPOutputStream; 34 import java.util.zip.ZipEntry; 35 import java.util.zip.ZipOutputStream; 136 final ZipOutputStream zip = new ZipOutputStream(buffer); local 137 zip.putNextEntry(new ZipEntry( 139 zip.write(TargetLoader.getClassDataAsBytes(AnalyzerTest.class)); 140 zip.finish(); 150 final ZipOutputStream zip = new ZipOutputStream(buffer); local 151 zip.putNextEntry(new ZipEntry("empty.txt")); 152 zip.finish() 161 final ZipOutputStream zip = new ZipOutputStream(zipbuffer); local 211 ZipOutputStream zip = new ZipOutputStream(out); local 221 final ZipOutputStream zip = new ZipOutputStream(buffer); local [all...] |
/development/tools/mkstubs/src/com/android/mkstubs/ |
AsmAnalyzer.java | 29 import java.util.zip.ZipEntry; 30 import java.util.zip.ZipFile; 47 ZipFile zip = new ZipFile(inputJarPath); local 48 Enumeration<? extends ZipEntry> entries = zip.entries(); 53 ClassReader cr = new ClassReader(zip.getInputStream(entry));
|
/device/linaro/hikey/factory-images/ |
generate-factory-images-hikey.sh | 21 BUILDNAME=`ls ${ANDROID_BUILD_TOP}/${PRODUCT}-img-${BUILD}.zip 2> /dev/null` 25 BUILDNAME=`ls ${ANDROID_BUILD_TOP}/${PRODUCT}-img-*.zip 2> /dev/null` 43 cp ${SRCPREFIX}$PRODUCT-img-$BUILD.zip tmp/$PRODUCT-$VERSION/image-$PRODUCT-$VERSION.zip 103 fastboot update image-$PRODUCT-$VERSION.zip 109 (cd tmp ; zip -r ../$PRODUCT-$VERSION-factory.zip $PRODUCT-$VERSION) 110 mv $PRODUCT-$VERSION-factory.zip $PRODUCT-$VERSION-factory-$(sha256sum < $PRODUCT-$VERSION-factory.zip | cut -b -8).zip [all...] |
/libcore/ojluni/src/main/native/ |
java_util_zip_ZipFile.c | 27 * Native method support for java.util.zip.ZipFile 63 jclass cls = (*env)->FindClass(env, "java/util/zip/ZipFile"); 79 "java/util/zip/ZipException", 95 jzfile *zip = 0; local 102 zip = ZIP_Get_From_Cache(path, &msg, lastModified); 103 if (zip == 0 && msg == 0) { 118 zip = ZIP_Put_In_Cache0(path, zfd, &msg, lastModified, usemmap); 121 if (zip != 0) { 122 result = ptr_to_jlong(zip); 129 ThrowZipException(env, "error in opening zip file") 140 jzfile *zip = jlong_to_ptr(zfile); local 148 jzfile *zip = jlong_to_ptr(zfile); local 161 jzfile *zip = jlong_to_ptr(zfile); local 170 jzfile *zip = jlong_to_ptr(zfile); local 197 jzfile *zip = jlong_to_ptr(zfile); local 255 jzfile *zip = jlong_to_ptr(zfile); local 307 jzfile *zip = jlong_to_ptr(zfile); local 343 jzfile *zip = jlong_to_ptr(zfile); local 355 jzfile *zip; local [all...] |
/external/ltp/testcases/commands/unzip/ |
Makefile | 27 # Only build and install if we have the zip command. 28 HAVE_ZIPTOOLS := $(shell if which zip >/dev/null; then echo yes; else echo no; fi) 36 ZIPFILE := $(TESTCASES_DATA_DIR)/tst_unzip_file.zip 49 zip -r "$@" $(DIR)
|
/bootable/recovery/tests/component/ |
install_test.cpp | 45 // Doesn't contain compatibility zip entry. 46 ZipArchiveHandle zip; local 47 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip)); 48 ASSERT_TRUE(verify_package_compatibility(zip)); 49 CloseArchive(zip); 56 ASSERT_EQ(0, writer.StartEntry("compatibility.zip", 0)); 61 // Empty compatibility zip entry. 62 ZipArchiveHandle zip; local 63 ASSERT_EQ(0, OpenArchive(temp_file.path, &zip)); 64 ASSERT_FALSE(verify_package_compatibility(zip)); 92 ZipArchiveHandle zip; local 137 ZipArchiveHandle zip; local 176 ZipArchiveHandle zip; local 217 ZipArchiveHandle zip; local [all...] |
/external/protobuf/ |
autogen.sh | 34 curl $curlopts -O https://googlemock.googlecode.com/files/gmock-1.7.0.zip 35 unzip -q gmock-1.7.0.zip 36 rm gmock-1.7.0.zip
|
post_process_dist.sh | 13 # 4) Uses the result to create .tar.gz, .tar.bz2, and .zip versions and 14 # deposites them in the "dist" directory. In the .zip version, all 52 # Convert all text files to use DOS-style line endings, then build a .zip 57 # Build the dist again in .zip 59 make dist-zip 60 mv $BASENAME.zip ../protobuf-$LANG-$VERSION.zip
|
/external/protobuf/util/ |
autogen.sh | 34 curl $curlopts -O https://googlemock.googlecode.com/files/gmock-1.7.0.zip 35 unzip -q gmock-1.7.0.zip 36 rm gmock-1.7.0.zip
|
post_process_dist.sh | 13 # 4) Uses the result to create .tar.gz, .tar.bz2, and .zip versions and 14 # deposites them in the "dist" directory. In the .zip version, all 52 # Convert all text files to use DOS-style line endings, then build a .zip 57 # Build the dist again in .zip 59 make dist-zip 60 mv $BASENAME.zip ../protobuf-$LANG-$VERSION.zip
|
/art/test/091-override-package-private-method/ |
build | 31 zip $TEST_NAME.jar classes.dex 33 zip ${TEST_NAME}-ex.jar classes.dex 37 zip $TEST_NAME.jar classes.dex 39 zip ${TEST_NAME}-ex.jar classes.dex
|
/art/test/127-checker-secondarydex/ |
build | 31 zip $TEST_NAME.jar classes.dex 33 zip ${TEST_NAME}-ex.jar classes.dex 37 zip $TEST_NAME.jar classes.dex 39 zip ${TEST_NAME}-ex.jar classes.dex
|
/art/test/138-duplicate-classes-check2/ |
build | 30 zip ${TEST_NAME}.jar classes.dex 34 zip ${TEST_NAME}-ex.jar classes.dex 37 zip ${TEST_NAME}.jar classes.dex 39 zip ${TEST_NAME}-ex.jar classes.dex
|
/art/test/638-no-line-number/ |
build | 25 zip $TEST_NAME.jar classes.dex
|
/frameworks/base/core/java/android/app/ |
ApplicationLoaders.java | 32 ClassLoader getClassLoader(String zip, int targetSdkVersion, boolean isBundled, 35 // For normal usage the cache key used is the same as the zip path. 36 return getClassLoader(zip, targetSdkVersion, isBundled, librarySearchPath, 37 libraryPermittedPath, parent, zip); 40 private ClassLoader getClassLoader(String zip, int targetSdkVersion, boolean isBundled, 59 * new ClassLoader for the zip archive. 67 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, zip); 70 zip, 87 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, zip); 88 PathClassLoader pathClassloader = new PathClassLoader(zip, parent) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
ZipErrorTest.java | 17 package org.apache.harmony.tests.java.util.zip; 20 import java.util.zip.ZipError; 27 * {@link java.util.zip.ZipError#ZipError(String)} 35 * java.util.zip.ZipError#Serialization()
|