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

1 2 3 4

  /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.
InitManifest.java 18 package java.util.jar;
25 * Reads a JAR file manifest. The specification is here:
26 * http://java.sun.com/javase/6/docs/technotes/guides/jar/jar.html
81 throw new IOException("A jar verifier does not support more than one entry with the same name");
JarEntry.java 18 package java.util.jar;
33 * Represents a single file in a JAR archive together with the manifest
131 * JAR file. If there is no such code signer, it returns {@code null}. Make
135 * @return the code signers for the JAR entry.
JarInputStream.java 18 package java.util.jar;
29 * The input stream from which the JAR file to be read may be fetched. It is
54 * the input stream containing the JAR file.
101 * the input stream containing the JAR file.
114 * @return the MANIFEST specifying the contents of the JAR file.
124 * @return the next JAR entry.
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...]
  /build/core/tasks/
sdk-addon.mk 30 define stub-addon-jar-file
31 $(subst .jar,_stub-addon.jar,$(1))
34 define stub-addon-jar
35 $(call stub-addon-jar-file,$(1)): $(1) | mkstubs
36 $(info Stubbing addon jar using $(PRODUCT_SDK_ADDON_STUB_DEFS))
37 $(hide) java -jar $(call module-installed-files,mkstubs) $(if $(hide),,--v) \
45 $(eval $(call stub-addon-jar,$(_src))) \
46 $(eval _src := $(call stub-addon-jar-file,$(_src))) \
  /build/core/
dex_preopt.mk 28 # $(1): the .jar or .apk to remove classes.dex
33 # $(1): the input .jar or .apk file
43 # $(1): boot jar module name
44 define _dexpreopt-boot-jar
45 $(eval _dbj_jar := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(1).jar)
47 $(eval _dbj_jar_no_dex := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(1)_nodex.jar)
48 $(eval _dbj_src_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,$(1),,COMMON)/javalib.jar)
51 @echo "Dexpreopt Boot Jar: $$@"
67 $(foreach b,$(DEXPREOPT_BOOT_JARS_MODULES),$(eval $(call _dexpreopt-boot-jar,$(b))))
70 define _build-dexpreopt-boot-jar-dependency-pai
    [all...]
java_library.mk 26 LOCAL_BUILT_MODULE_STEM := javalib.jar
31 common_javalib.jar := $(intermediates.COMMON)/$(LOCAL_BUILT_MODULE_STEM)
32 LOCAL_INTERMEDIATE_TARGETS += $(common_javalib.jar)
53 $(common_javalib.jar) : $(full_classes_jar) $(java_resource_sources)
54 @echo "target Static Jar: $(PRIVATE_MODULE) ($@)"
60 $(LOCAL_BUILT_MODULE): $(common_javalib.jar)
65 $(common_javalib.jar): PRIVATE_DEX_FILE := $(built_dex)
66 $(common_javalib.jar) : $(built_dex) $(java_resource_sources) | $(AAPT)
67 @echo "target Jar: $(PRIVATE_MODULE) ($@)"
77 # boot jar's rules are defined in dex_preopt.m
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
AttributesNameTest.java 18 package org.apache.harmony.archive.tests.java.util.jar;
20 import java.util.jar.Attributes;
27 * @tests java.util.jar.Attributes.Name#Name(java.lang.String)
JarExceptionTest.java 18 package org.apache.harmony.archive.tests.java.util.jar;
22 import java.util.jar.JarException;
23 import java.util.jar.Manifest;
28 * @tests java.util.jar.JarException#JarException(java.lang.String)
41 * @tests java.util.jar.JarException#JarException(java.lang.String)
44 assertEquals("Jar Exception", new JarException("Jar Exception").getMessage());
48 * @tests java.util.jar.JarException#JarException()
  /external/webkit/Source/WebCore/platform/network/soup/
CookieJarSoup.cpp 47 void setDefaultCookieJar(SoupCookieJar* jar)
54 cookieJar = jar;
62 SoupCookieJar* jar = defaultCookieJar(); local
63 if (!jar)
70 soup_cookie_jar_set_cookie_with_first_party(jar,
78 SoupCookieJar* jar = defaultCookieJar(); local
79 if (!jar)
83 char* cookies = soup_cookie_jar_get_cookies(jar, uri, FALSE);
94 SoupCookieJar* jar = defaultCookieJar(); local
95 if (!jar)
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
CookieJarQt.cpp 56 QNetworkCookieJar* jar = manager->cookieJar(); local
57 return jar;
64 QNetworkCookieJar* jar = cookieJar(document); local
65 if (!jar)
76 jar->setCookiesFromUrl(cookies, u);
82 QNetworkCookieJar* jar = cookieJar(document); local
83 if (!jar)
86 QList<QNetworkCookie> cookies = jar->cookiesForUrl(u);
103 QNetworkCookieJar* jar = cookieJar(document); local
104 if (!jar)
120 QNetworkCookieJar* jar = cookieJar(document); local
    [all...]
  /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");
  /packages/inputmethods/LatinIME/tools/maketext/src/com/android/inputmethod/latin/maketext/
LabelText.java 22 import java.util.jar.JarFile;
61 final JarFile jar = JarUtils.getJarFile(LabelText.class.getClassLoader()); 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
90 * Returns the Jar file referred by this {@code URLConnection}.
92 * @return the JAR file referenced by this connection
105 * Returns the Jar file referred by this {@code URLConnection}
111 JarFile jar = null; local
117 jar = openJarFile();
121 jarCache.put(jarFileURL, jar);
    [all...]
  /external/android-mock/src/com/google/android/testing/mocking/
AndroidFrameworkMockGenerator.java 30 import java.util.jar.JarEntry;
31 import java.util.jar.JarFile;
99 * @return A list of all class files inside the provided jar file.
101 List<Class<?>> getClassList(JarFile jar) throws ClassNotFoundException {
102 return getClassList(Collections.list(jar.entries()));
123 * @return the Android framework jar file for the specified {@link SdkVersion}.
133 .append(".jar").toString();
137 SdkVersion version, JarFile jar)
140 List<Class<?>> classList = mockGenerator.getClassList(jar);
150 System.out.println("Using Jar File: " + jarFile.getAbsolutePath())
160 JarFile jar = getJarFile(version); local
    [all...]

Completed in 3107 milliseconds

1 2 3 4