Searched defs:manifest (Results 1 - 25 of 70) sorted by relevance

123

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
H A Dhelpbase-ant.jar ... META-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/help/ org/eclipse ...
/external/proguard/src/proguard/io/
H A DJarWriter.java32 * The manifest and comment properties can optionally be set.
39 private final Manifest manifest; field in class:JarWriter
52 * Creates a new JarWriter without manifest or comment.
64 Manifest manifest,
68 this.manifest = manifest;
200 // Create a new jar stream, with a manifest, if set.
201 currentJarOutputStream = manifest != null ?
202 new JarOutputStream(parentOutputStream, manifest) :
63 JarWriter(DataEntryWriter dataEntryWriter, Manifest manifest, String comment) argument
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DJarFinder.java50 /** Separator for the Class-Path manifest attribute value in jar files. */
162 * Returns the class path URIs specified by the {@code Class-Path} manifest attribute, according
165 * JAR File Specification</a>. If {@code manifest} is null, it means the jar file has no
166 * manifest, and an empty set will be returned.
169 File jarFile, @Nullable Manifest manifest) {
170 if (manifest == null) {
174 String classpathAttribute = manifest.getMainAttributes()
168 getClassPathFromManifest( File jarFile, @Nullable Manifest manifest) argument
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DClassCache.java29 Manifest manifest = cacheFile.getManifest();
30 if (manifest != null) {
31 Attributes attributes = manifest.getEntries().get("robolectric");
50 Manifest manifest = new Manifest();
53 manifest.getEntries().put("robolectric", attributes);
55 saveAllClassesToCache(cacheJarFile, manifest);
98 protected void saveAllClassesToCache(File file, Manifest manifest) { argument
110 jarOutputStream = new JarOutputStream(new FileOutputStream(file), manifest);
/external/emma/core/java12/com/vladium/util/
H A DIPathEnumerator.java48 * is opened and the manifest entry is read.
50 void handleArchiveStart (File parentDir, File archive, Manifest manifest); argument
216 // I try to read the manifest again via a JarFile if the stream
223 Manifest manifest = in.getManifest (); // can be null
224 if (manifest == null) manifest = readManifestViaJarFile (fullArchive); // can be null
226 handler.handleArchiveStart (m_currentPathDir, new File (archive), manifest);
228 // note: this loop does not skip over the manifest-related
243 // note: JarInputStream only reads the manifest if it the
245 if (manifest
[all...]
/external/libxml2/python/
H A Dsetup.py206 manifest = open("MANIFEST", "w") variable
207 manifest.write("setup.py\n")
209 manifest.write(file + "\n")
212 manifest.write(file + "\n")
213 manifest.close()
H A Dsetup.py.in206 manifest = open("MANIFEST", "w") variable
207 manifest.write("setup.py\n")
209 manifest.write(file + "\n")
212 manifest.write(file + "\n")
213 manifest.close()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DFlatManifestWriterImpl.java60 * @param manifest the original manifest
61 * @return your customized version of the manifest
63 protected Document customizeManifest(Document manifest) { argument
64 return manifest;
/external/vogar/src/vogar/android/
H A DAndroidSdk.java283 public void packageApk(File apk, File manifest) { argument
287 "-M", manifest.getPath(),
/external/emma/core/java12/com/vladium/emma/rt/
H A DClassPathProcessorST.java81 public void handleArchiveStart (final File parentDir, final File archive, final Manifest manifest) argument
/external/guava/guava/src/com/google/common/reflect/
H A DClassPath.java68 /** Separator for the Class-Path manifest attribute value in jar files. */
394 * Returns the class path URIs specified by the {@code Class-Path} manifest attribute, according
396 * JAR File Specification</a>. If {@code manifest} is null, it means the jar file has no
397 * manifest, and an empty set will be returned.
400 File jarFile, @Nullable Manifest manifest) {
401 if (manifest == null) {
405 String classpathAttribute = manifest.getMainAttributes()
399 getClassPathFromManifest( File jarFile, @Nullable Manifest manifest) argument
/external/guava/guava-tests/test/com/google/common/reflect/
H A DClassPathTest.java281 assertThat(ClassPath.Scanner.getClassPathFromManifest(jarFile, manifest("")))
293 Manifest manifest = manifestClasspath("an_invalid^path");
294 assertThat(ClassPath.Scanner.getClassPathFromManifest(jarFile, manifest))
301 Manifest manifest = manifestClasspath("with/relative/dir");
302 assertThat(ClassPath.Scanner.getClassPathFromManifest(jarFile, manifest))
309 Manifest manifest = manifestClasspath("with/relative.jar");
310 assertThat(ClassPath.Scanner.getClassPathFromManifest(jarFile, manifest))
317 Manifest manifest = manifestClasspath("current.jar");
318 assertThat(ClassPath.Scanner.getClassPathFromManifest(jarFile, manifest))
324 Manifest manifest
453 private static Manifest manifest(String content) throws IOException { method in class:ClassPathTest
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-arabic-fallback.hh239 const Manifest &manifest = reinterpret_cast<const Manifest&> (arabic_win1256_gsub_lookups.manifest); local
245 unsigned int count = manifest.len;
248 fallback_plan->mask_array[j] = plan->map.get_1_mask (manifest[i].tag);
251 fallback_plan->lookup_array[j] = const_cast<OT::SubstLookup*> (&(&manifest+manifest[i].lookupOffset));
/external/robolectric/v3/
H A Drobolectric-annotations-3.1-SNAPSHOT.jar ... META-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/annotation/ org/robolectric ...
H A Drobolectric-resources-3.1-SNAPSHOT.jar ... META-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/shadows/ org/robolectric ...
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrProcessorST.java69 public final void handleArchiveStart (final File parentDir, final File archive, final Manifest manifest) argument
74 // TODO: pass manifest into this callback, if any
75 // TODO: detect if manifest corresonds to a previously intrumented archive already ?
87 final Manifest outManifest = manifest != null
88 ? new Manifest (manifest) // shallow copy
94 if (manifest == null) mainAttrs.put (Attributes.Name.MANIFEST_VERSION, "1.0");
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/34/1/.cp/ant_tasks/
H A Dpde-ant.jar ... META-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.frameworkadmin_2.0.0.v20100503.jar ... META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META- ...
H A Dorg.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jar ... META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META- ...
H A Dorg.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar ... META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META- ...
H A Dorg.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar ... META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META- ...
H A Dorg.eclipse.equinox.p2.extensionlocation_1.2.0.v20100518.jar ... META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META- ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-weblogic.jar ... META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache ...
/external/guice/lib/build/
H A Dbnd-0.0.384.jar ... META-INF/MANIFEST.MF LICENSE OSGI-OPT/ OSGI-OPT/bnd ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jar ... META-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse ...

Completed in 2574 milliseconds

123