Searched refs:Manifest (Results 1 - 25 of 27) sorted by relevance

12

/external/harfbuzz_ng/test/shaping/
H A Dhb-manifest-read5 UtilMains.process_multiple_args (FilterHelpers.filter_printer_function (Manifest.read), mnemonic="DIR")
H A Dhb-manifest-update5 UtilMains.process_multiple_args (Manifest.update_recursive, mnemonic="DIR")
H A Dhb_test_tools.py467 class Manifest: class in inherits:
486 for p in Manifest.read (os.path.join (s, f)):
516 Manifest.update_recursive (os.path.join (dirpath, f))
/external/webkit/Source/WebCore/loader/appcache/
H A DManifestParser.h37 struct Manifest { struct in namespace:WebCore
44 bool parseManifest(const KURL& manifestURL, const char* data, int length, Manifest&);
H A DApplicationCacheResource.cpp76 if (type & Manifest)
H A DApplicationCacheResource.h39 Manifest = 1 << 1, enumerator in enum:WebCore::ApplicationCacheResource::Type
H A DApplicationCache.cpp70 ASSERT(manifest->type() & ApplicationCacheResource::Manifest);
H A DManifestParser.cpp41 bool parseManifest(const KURL& manifestURL, const char* data, int length, Manifest& manifest)
H A DApplicationCacheHost.cpp286 bool isManifest = type & ApplicationCacheResource::Manifest;
H A DApplicationCacheGroup.cpp671 m_manifestResource = ApplicationCacheResource::create(m_manifestHandle->firstRequest().url(), response, ApplicationCacheResource::Manifest);
708 Manifest manifest;
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarExceptionTest.java23 import java.util.jar.Manifest;
32 new Manifest(new ByteArrayInputStream(
H A DManifestTest.java28 import java.util.jar.Manifest;
46 private static final String MANIFEST_CONTENTS = "Manifest-Version: 1.0\nBundle-Name: ClientSupport\nBundle-Description: Provides SessionService, AuthenticationService. Extends RegistryService.\nBundle-Activator: com.ibm.ive.eccomm.client.support.ClientSupportActivator\nImport-Package: com.ibm.ive.eccomm.client.services.log,\n com.ibm.ive.eccomm.client.services.registry,\n com.ibm.ive.eccomm.service.registry; specification-version=1.0.0,\n com.ibm.ive.eccomm.service.session; specification-version=1.0.0,\n com.ibm.ive.eccomm.service.framework; specification-version=1.2.0,\n org.osgi.framework; specification-version=1.0.0,\n org.osgi.service.log; specification-version=1.0.0,\n com.ibm.ive.eccomm.flash; specification-version=1.2.0,\n com.ibm.ive.eccomm.client.xml,\n com.ibm.ive.eccomm.client.http.common,\n com.ibm.ive.eccomm.client.http.client\nImport-Service: org.osgi.service.log.LogReaderService\n org.osgi.service.log.LogService,\n com.ibm.ive.eccomm.service.registry.RegistryService\nExport-Package: com.ibm.ive.eccomm.client.services.authentication; specification-version=1.0.0,\n com.ibm.ive.eccomm.service.authentication; specification-version=1.0.0,\n com.ibm.ive.eccomm.common; specification-version=1.0.0,\n com.ibm.ive.eccomm.client.services.registry.store; specification-version=1.0.0\nExport-Service: com.ibm.ive.eccomm.service.authentication.AuthenticationService,\n com.ibm.ive.eccomm.service.session.SessionService\nBundle-Vendor: IBM\nBundle-Version: 1.2.0\n";
48 private static final String MANIFEST_CONTENTS_1 = "Manifest-Version: 2.0\nBundle-Name: ClientSupport\nBundle-Description: Provides SessionService, AuthenticationService. Extends RegistryService.\nBundle-Activator: com.ibm.ive.eccomm.client.support.ClientSupportActivator\nImport-Package: com.ibm.ive.eccomm.client.services.log,\n com.ibm.ive.eccomm.client.services.registry,\n com.ibm.ive.eccomm.service.registry; specification-version=2.0.0,\n com.ibm.ive.eccomm.service.session; specification-version=2.0.0,\n com.ibm.ive.eccomm.service.framework; specification-version=2.1.0,\n org.osgi.framework; specification-version=2.0.0,\n org.osgi.service.log; specification-version=2.0.0,\n com.ibm.ive.eccomm.flash; specification-version=2.2.0,\n com.ibm.ive.eccomm.client.xml,\n com.ibm.ive.eccomm.client.http.common,\n com.ibm.ive.eccomm.client.http.client\nImport-Service: org.osgi.service.log.LogReaderService\n org.osgi.service.log.LogService,\n com.ibm.ive.eccomm.service.registry.RegistryService\nExport-Package: com.ibm.ive.eccomm.client.services.authentication; specification-version=1.0.0,\n com.ibm.ive.eccomm.service.authentication; specification-version=1.0.0,\n com.ibm.ive.eccomm.common; specification-version=1.0.0,\n com.ibm.ive.eccomm.client.services.registry.store; specification-version=1.0.0\nExport-Service: com.ibm.ive.eccomm.service.authentication.AuthenticationService,\n com.ibm.ive.eccomm.service.session.SessionService\nBundle-Vendor: IBM\nBundle-Version: 1.2.0\n";
50 private static final String MANIFEST_CONTENTS_2 = "Manifest-Version: 1.0\nName: value\n \n"; // Note penultimate line is single space
59 private Manifest getManifest(String fileName) {
63 Manifest m = jarFile.getManifest();
73 * @tests java.util.jar.Manifest#Manifest()
76 // Test for method java.util.jar.Manifest()
77 Manifest emptyManifes
[all...]
H A DZipExecTest.java26 import java.util.jar.Manifest;
41 Manifest man = new Manifest();
82 Manifest man = new Manifest();
146 Manifest man = new Manifest();
180 Manifest man = new Manifest();
220 Manifest ma
[all...]
H A DJarOutputStreamTest.java27 import java.util.jar.Manifest;
57 Manifest newman = new Manifest();
110 Manifest man = new Manifest();
H A DJarExecTest.java26 import java.util.jar.Manifest;
44 Manifest man = new Manifest();
84 Manifest man = new Manifest();
145 Manifest man = new Manifest();
214 Manifest man = new Manifest();
H A DJarFileTest.java32 import java.util.jar.Manifest;
286 // Test for method java.util.jar.Manifest
292 assertNotNull("Error--Manifest not returned", jarFile.getManifest());
308 Manifest manifest = new Manifest();
310 attributes.put(new Attributes.Name("Manifest-Version"), "1.0");
430 * algorithm-Digest-Manifest-Main-Attributes entry in .SF file.
482 * If another entry is inserted into Manifest, no security exception will be
502 * If another entry is inserted into Manifest, no security exception will be
H A DJarInputStreamTest.java28 import java.util.jar.Manifest;
133 // Test for method java.util.jar.Manifest
135 Manifest m;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DClassCache.java15 import java.util.jar.Manifest;
29 Manifest manifest = cacheFile.getManifest();
50 Manifest manifest = new Manifest();
98 protected void saveAllClassesToCache(File file, Manifest manifest) {
/external/emma/core/java12/com/vladium/util/
H A DIPathEnumerator.java23 import java.util.jar.Manifest;
50 void handleArchiveStart (File parentDir, File archive, Manifest manifest);
223 Manifest manifest = in.getManifest (); // can be null
291 private static Manifest readManifestViaJarFile (final File archive)
293 Manifest result = null;
/external/proguard/src/proguard/io/
H A DJarWriter.java40 private final Manifest manifest;
65 Manifest manifest,
/external/emma/core/java12/com/vladium/emma/
H A DrunCommand.java15 import java.util.jar.Manifest;
302 final Manifest manifest = jarfile.getManifest ();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DJarURLConnectionTest.java32 import java.util.jar.Manifest;
237 Manifest mf = juc.getManifest();
303 u = new URL("jar:"+BASE+"!/Manifest.mf");
H A DURLClassLoaderTest.java36 import java.util.jar.Manifest;
505 Manifest mf = jarFile.getManifest();
/external/emma/core/java12/com/vladium/emma/rt/
H A DClassPathProcessorST.java18 import java.util.jar.Manifest;
81 public void handleArchiveStart (final File parentDir, final File archive, final Manifest manifest)
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrProcessorST.java24 import java.util.jar.Manifest;
69 public final void handleArchiveStart (final File parentDir, final File archive, final Manifest manifest)
87 final Manifest outManifest = manifest != null
88 ? new Manifest (manifest) // shallow copy
89 : new Manifest ();
97 // note: Manifest makes these 72-char-safe

Completed in 327 milliseconds

12