Searched refs:manifest (Results 1 - 6 of 6) sorted by relevance

/libcore/support/src/test/java/tests/util/
H A DClassLoaderBuilder.java128 URL manifest = classLoader.getResource(manifestFile);
129 if (manifest != null) {
130 String manifestString = manifest.toString();
/libcore/luni/src/test/java/libcore/java/util/jar/
H A DOldManifestTest.java50 private void checkManifest(Manifest manifest) { argument
51 Attributes main = manifest.getMainAttributes();
87 Manifest manifest = new Manifest(new URL(Support_Resources
88 .getURL("manifest/hyts_MANIFEST.MF")).openStream());
89 Manifest manifestClone = (Manifest) manifest.clone();
96 "manifest/hyts_MANIFEST.MF")).openStream());
98 "manifest/hyts_MANIFEST.MF")).openStream());
113 .getURL("manifest/hyts_MANIFEST.MF")).openStream());
147 // If you write a manifest with no MANIFEST_VERSION, your attributes don't get written out.
/libcore/luni/src/test/java/libcore/java/net/
H A DOldURLClassLoaderTest.java138 Manifest manifest = new Manifest();
151 Package pack = tucl.definePackage(packageName + i, manifest, urls[i]);
162 tucl.definePackage(packageName + "0", manifest, null);
H A DOldJarURLConnectionTest.java103 Manifest manifest = juc.getManifest();
104 Map<String, Attributes> attr = manifest.getEntries();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
H A DManifestTest.java44 private final String MANIFEST_NAME = "manifest/hyts_MANIFEST.MF";
98 private void checkManifest(Manifest manifest) { argument
99 Attributes main = manifest.getMainAttributes();
136 Manifest manifest = new Manifest(new ByteArrayInputStream(
138 checkManifest(manifest);
H A DJarFileTest.java485 assertNotNull("Should find manifest without verifying", jarFile
494 Manifest manifest = new Manifest();
495 Attributes attributes = manifest.getMainAttributes();
498 manifest.write(manOut);
516 assertNotNull("Should find manifest without verifying", jar

Completed in 838 milliseconds