HomeSort by relevance Sort by last modified time
    Searched defs:jar (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/not_source_folder/jar/example/
Class2.java 17 package jar.example;
Class1.java 17 package jar.example;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/testdata/
jar_example.jar 
  /libcore/luni/src/main/java/java/util/jar/
JarException.java 18 package java.util.jar;
23 * This runtime exception is thrown when a problem occurs while reading a JAR
JarOutputStream.java 18 package java.util.jar;
35 * content of the {@code Manifest} must match the JAR entry information
41 * the {@code Manifest} to output for this JAR file.
JarEntry.java 18 package java.util.jar;
33 * Represents a single file in a JAR archive together with the manifest
162 * JAR file. If there is no such code signer, it returns {@code null}. Make
172 * @return an array of CodeSigner for this JAR entry.
JarInputStream.java 18 package java.util.jar;
31 * The input stream from which the JAR file to be read may be fetched. It is
36 // TODO: The semantics provided by this class are really weird. The jar file
37 // spec does not impose any ordering constraints on the entries of a jar file.
39 // class will silently skip certificate checks for jar files where the manifest
61 * the input stream containing the JAR file.
114 * the input stream containing the JAR file.
127 * @return the MANIFEST specifying the contents of the JAR file.
137 * @return the next JAR entry.
ManifestReader.java 18 package java.util.jar;
27 * Reads a JAR file manifest. The specification is here:
28 * http://java.sun.com/javase/6/docs/technotes/guides/jar/jar.html
82 throw new IOException("A jar verifier does not support more than one entry with the same name");
Pack200.java 17 package java.util.jar;
31 private static final String SYSTEM_PROPERTY_PACKER = "java.util.jar.Pack200.Packer";
33 private static final String SYSTEM_PROPERTY_UNPACKER = "java.util.jar.Pack200.Unpacker";
46 * {@code 'java.util.jar.Pack200.Packer'}. If this system property is
67 * property {@code 'java.util.jar.Pack200.Unpacker'}. If this system
83 * The interface defining the API for converting a JAR file to an output
192 * Pack the specified JAR file to the specified output stream.
195 * JAR file to be compressed.
204 * Pack the data from the specified jar input stream to the specified
208 * stream of uncompressed JAR data
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/
StubGenerator.java 32 import java.util.jar.JarEntry;
33 import java.util.jar.JarOutputStream;
37 * stubs the remaining classes and then generates a Jar out of them.
74 * Utility method that converts a fully qualified java name into a JAR entry path
82 * Writes the JAR file.
84 * @param outStream The file output stream were to write the JAR.
89 JarOutputStream jar = new JarOutputStream(outStream); local
93 jar.putNextEntry(jar_entry);
94 jar.write(entry.getValue());
95 jar.closeEntry()
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
AttributesNameTest.java 18 package org.apache.harmony.tests.java.util.jar;
20 import java.util.jar.Attributes;
27 * java.util.jar.Attributes.Name#Name(java.lang.String)
JarExceptionTest.java 18 package org.apache.harmony.tests.java.util.jar;
22 import java.util.jar.JarException;
23 import java.util.jar.Manifest;
28 * java.util.jar.JarException#JarException(java.lang.String)
41 * java.util.jar.JarException#JarException(java.lang.String)
44 assertEquals("Jar Exception", new JarException("Jar Exception").getMessage());
48 * java.util.jar.JarException#JarException()
JarOutputStreamTest.java 17 package org.apache.harmony.tests.java.util.jar;
22 import java.util.jar.Attributes;
23 import java.util.jar.JarOutputStream;
24 import java.util.jar.Manifest;
30 * java.util.jar.JarOutputStream#putNextEntry(java.util.zip.ZipEntry)
38 File fooJar = File.createTempFile("hyts_", ".jar");
68 File fooJar = File.createTempFile("hyts_", ".jar");
  /build/core/
dex_preopt_libdvm.mk 27 # $(1): the input .jar or .apk file
45 # $(1): boot jar module name
47 _dbj_jar := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(1).jar
49 _dbj_src_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,$(1),,COMMON)/javalib.jar
52 @echo "Dexpreopt Boot Jar: $$@"
64 define _build-dexpreopt-boot-jar-dependency-pair
69 $(eval $(call _build-dexpreopt-boot-jar-dependency-pair,$(wordlist 2,999,$(1)))))
72 define _build-dexpreopt-boot-jar-dependency
73 $(call _build-dexpreopt-boot-jar-dependency-pair,$(DEXPREOPT_BOOT_JARS_MODULES))
76 $(eval $(call _build-dexpreopt-boot-jar-dependency)
    [all...]
java_library.mk 25 LOCAL_BUILT_MODULE_STEM := javalib.jar
30 common_javalib.jar := $(intermediates.COMMON)/$(LOCAL_BUILT_MODULE_STEM)
31 LOCAL_INTERMEDIATE_TARGETS += $(common_javalib.jar)
53 $(common_javalib.jar) : $(java_resource_sources)
55 $(common_javalib.jar) : $(full_classes_proguard_jar)
57 $(common_javalib.jar) : $(full_classes_jar)
59 @echo "target Static Jar: $(PRIVATE_MODULE) ($@)"
65 $(LOCAL_BUILT_MODULE): $(common_javalib.jar)
70 $(common_javalib.jar): PRIVATE_DEX_FILE := $(built_dex)
71 $(common_javalib.jar) : $(built_dex) $(java_resource_sources
    [all...]
dex_preopt.mk 11 PRODUCT_BOOTCLASSPATH := $(subst $(space),:,$(foreach m,$(DEXPREOPT_BOOT_JARS_MODULES),/system/framework/$(m).jar))
13 PRODUCT_SYSTEM_SERVER_CLASSPATH := $(subst $(space),:,$(foreach m,$(PRODUCT_SYSTEM_SERVER_JARS),/system/framework/$(m).jar))
21 # $(1): the .jar or .apk to remove classes.dex
32 # $(1): boot jar module name
33 define _dexpreopt-boot-jar-remove-classes.dex
34 _dbj_jar_no_dex := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(1)_nodex.jar
35 _dbj_src_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,$(1),,COMMON)/javalib.jar
47 $(foreach b,$(DEXPREOPT_BOOT_JARS_MODULES),$(eval $(call _dexpreopt-boot-jar-remove-classes.dex,$(b))))
58 # $(1): the input .jar or .apk file
  /build/core/tasks/
sdk-addon.mk 31 define stub-addon-jar-file
32 $(subst .jar,_stub-addon.jar,$(1))
35 define stub-addon-jar
36 $(call stub-addon-jar-file,$(1)): $(1) | mkstubs
37 $(info Stubbing addon jar using $(PRODUCT_SDK_ADDON_STUB_DEFS))
38 $(hide) java -jar $(call module-installed-files,mkstubs) $(if $(hide),,--v) \
46 $(eval $(call stub-addon-jar,$(_src))) \
47 $(eval _src := $(call stub-addon-jar-file,$(_src))) \
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldJarOutputStreamTest.java 18 package libcore.java.util.jar;
24 import java.util.jar.JarEntry;
25 import java.util.jar.JarOutputStream;
26 import java.util.jar.Manifest;
33 File outputJar = File.createTempFile("hyts_", ".jar");
OldAttributesNameTest.java 18 package libcore.java.util.jar;
20 import java.util.jar.Attributes;
26 * java.util.jar.Attributes.Name#Name(java.lang.String)
OldJarExceptionTest.java 18 package libcore.java.util.jar;
20 import java.util.jar.JarException;
25 * java.util.jar.JarException#JarException(java.lang.String)
OldJarInputStreamTest.java 18 package libcore.java.util.jar;
25 import java.util.jar.JarInputStream;
58 Support_Resources.copyFile(resources, null, "Broken_entry.jar");
59 InputStream is = Support_Resources.getStream("Broken_entry.jar");
66 Support_Resources.copyFile(resources, null, "Broken_entry_data.jar");
67 InputStream is = Support_Resources.getStream("Broken_entry_data.jar");
OldAttributesTest.java 18 package libcore.java.util.jar;
20 import java.util.jar.Attributes;
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
MakeKeyboardText.java 22 import java.util.jar.JarFile;
61 final JarFile jar = JarUtils.getJarFile(MakeKeyboardText.class); local
62 final MoreKeysResources resources = new MoreKeysResources(jar);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
SecureClassLoader2Test.java 29 import java.util.jar.JarFile;
63 File file = Support_GetLocal.getLocalFile("hyts_security.jar");
64 JarFile jar = new JarFile(file); local
65 InputStream in = jar.getInputStream(jar.getEntry("packA/SecurityTest.class"));
  /libcore/luni/src/main/java/libcore/net/url/
JarURLConnectionImpl.java 36 import java.util.jar.JarEntry;
37 import java.util.jar.JarFile;
45 * This class is responsible for connecting and retrieving resources from a Jar
64 * the URL of the JAR
89 * Returns the Jar file referred by this {@code URLConnection}.
102 * Returns the Jar file referred by this {@code URLConnection}
113 JarFile jar = openJarFile(); local
117 jarCache.put(jarFileURL, jar);
118 jarFile = jar;
120 jar.close()
    [all...]

Completed in 1877 milliseconds

1 2 3 4 5 6 7