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

1 2

  /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
Pack200.java 17 package java.util.jar;
33 private static final String SYSTEM_PROPERTY_PACKER = "java.util.jar.Pack200.Packer";
35 private static final String SYSTEM_PROPERTY_UNPACKER = "java.util.jar.Pack200.Unpacker";
48 * {@code 'java.util.jar.Pack200.Packer'}. If this system property is
78 * property {@code 'java.util.jar.Pack200.Unpacker'}. If this system
102 * The interface defining the API for converting a JAR file to an output
211 * Pack the specified JAR file to the specified output stream.
214 * JAR file to be compressed.
223 * Pack the data from the specified jar input stream to the specified
227 * stream of uncompressed JAR data
    [all...]
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;
26 * Reads a JAR file manifest. The specification is here:
27 * 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");
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.
105 * the input stream containing the JAR file.
118 * @return the MANIFEST specifying the contents of the JAR file.
128 * @return the next JAR entry.
Attributes.java 18 package java.util.jar;
36 * {@link Attributes.Name}) of a JAR file manifest to arbitrary values. The
44 * defined by the specification of the JAR manifest. May be composed of the
74 * Defines the signature version of the JAR file.
JarFile.java 18 package java.util.jar;
33 * {@code JarFile} is used to read jar entries and their associated data from
34 * jar files.
49 // The manifest after it has been read from the JAR.
159 * the JAR file as {@link File}.
171 * the JAR file as {@link File}.
173 * if this JAR file is signed whether it must be verified.
189 * the JAR file as {@link File}.
191 * if this JAR filed is signed whether it must be verified.
211 * the file name referring to the JAR file
    [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/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
AllTests.java 18 package org.apache.harmony.archive.tests.java.util.jar;
24 * Test suite for java.util.jar package.
29 "Suite 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;
26 * @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.Manifest;
24 import java.util.jar.JarException;
28 * @tests java.util.jar.JarException#JarException(java.lang.String)
JarFileTest.java 17 package org.apache.harmony.archive.tests.java.util.jar;
35 import java.util.jar.Attributes;
36 import java.util.jar.JarEntry;
37 import java.util.jar.JarFile;
38 import java.util.jar.JarOutputStream;
39 import java.util.jar.Manifest;
62 private final String jarName = "hyts_patch.jar"; // a 'normal' jar file
64 private final String jarName2 = "hyts_patch2.jar";
66 private final String jarName3 = "hyts_manifest1.jar";
486 JarFile jar = new JarFile(file.getAbsolutePath(), false); local
533 JarFile jar = new JarFile(signedFile); local
542 JarFile jar = new JarFile(signedFile); local
554 JarFile jar = new JarFile(signedFile); local
576 JarFile jar = new JarFile(signedFile); local
    [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: $$@"
66 $(foreach b,$(DEXPREOPT_BOOT_JARS_MODULES),$(eval $(call _dexpreopt-boot-jar,$(b))))
69 define _build-dexpreopt-boot-jar-dependency-pai
    [all...]
java_library.mk 24 LOCAL_BUILT_MODULE_STEM := javalib.jar
29 common_javalib.jar := $(intermediates.COMMON)/$(LOCAL_BUILT_MODULE_STEM)
30 LOCAL_INTERMEDIATE_TARGETS += $(common_javalib.jar)
46 $(common_javalib.jar) : $(full_classes_jar)
47 @echo "target Static Jar: $(PRIVATE_MODULE) ($@)"
50 $(LOCAL_BUILT_MODULE): $(common_javalib.jar)
55 $(common_javalib.jar): PRIVATE_DEX_FILE := $(built_dex)
56 $(common_javalib.jar) : $(built_dex) $(java_resource_sources) | $(AAPT)
57 @echo "target Jar: $(PRIVATE_MODULE) ($@)"
67 # boot jar's rules are defined in dex_preopt.m
    [all...]
  /external/webkit/WebCore/platform/network/soup/
CookieJarSoup.cpp 45 void setDefaultCookieJar(SoupCookieJar* jar)
52 cookieJar = jar;
60 SoupCookieJar* jar = defaultCookieJar(); local
61 if (!jar)
69 soup_cookie_jar_set_cookie_with_first_party(jar,
74 soup_cookie_jar_set_cookie(jar,
82 SoupCookieJar* jar = defaultCookieJar(); local
83 if (!jar)
87 char* cookies = soup_cookie_jar_get_cookies(jar, uri, FALSE);
98 SoupCookieJar* jar = defaultCookieJar() local
    [all...]
  /external/webkit/WebCore/platform/qt/
CookieJarQt.cpp 57 QNetworkCookieJar* jar = manager->cookieJar(); local
58 return jar;
65 QNetworkCookieJar* jar = cookieJar(document); local
66 if (!jar)
79 jar->setCookiesFromUrl(cookies, u);
85 QNetworkCookieJar* jar = cookieJar(document); local
86 if (!jar)
89 QList<QNetworkCookie> cookies = jar->cookiesForUrl(u);
109 QNetworkCookieJar* jar = cookieJar(document); local
110 if (!jar)
128 QNetworkCookieJar* jar = cookieJar(document); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/jar/
JarURLConnectionImpl.java 18 package org.apache.harmony.luni.internal.net.www.protocol.jar;
38 import java.util.jar.JarEntry;
39 import java.util.jar.JarFile;
47 * This class is responsible for connecting and retrieving resources from a Jar
66 * the URL of the JAR
92 * Returns the Jar file referred by this {@code URLConnection}.
94 * @return the JAR file referenced by this connection
107 * Returns the Jar file referred by this {@code URLConnection}
113 JarFile jar = null; local
119 jar = openJarFile()
141 JarFile jar = null; local
    [all...]
Handler.java 18 package org.apache.harmony.luni.internal.net.www.protocol.jar;
29 * Returns a connection to the jar file pointed by this <code>URL</code>
88 setURL(url, "jar", "", -1, null, null, file, null, null);
101 sb.append("jar:");
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/
LayoutAnalyzer.java 72 URL jar = getClass().getProtectionDomain().getCodeSource().getLocation(); local
75 zip = new ZipFile(new File(jar.toURI()));
  /frameworks/base/tools/aapt/
Package.cpp 120 fprintf(stderr, "ERROR: unable to process jar files while packaging '%s'\n",
127 printf("Included %d file%s from jar/zip files.\n", count, (count==1) ? "" : "s");
417 ssize_t processJarFile(ZipFile* jar, ZipFile* out)
420 size_t N = jar->getNumEntries();
423 ZipEntry* entry = jar->getEntryByIndex(i);
428 const void* data = jar->uncompress(entry);
450 ZipFile jar; local
451 err = jar.open(jars[i], ZipFile::kOpenReadOnly);
457 err += processJarFile(&jar, zip);

Completed in 474 milliseconds

1 2