Searched defs:archive (Results 1 - 12 of 12) sorted by relevance

/external/quake/quake/src/QW/client/
H A Dcvar.h60 qboolean archive; // set to true to cause it to be saved to vars.rc member in struct:cvar_s
73 // archive elements set.
98 // with the archive flag set to true.
/external/quake/quake/src/WinQuake/
H A Dcvar.h60 qboolean archive; // set to true to cause it to be saved to vars.rc member in struct:cvar_s
73 // archive elements set.
98 // with the archive flag set to true.
/external/webkit/WebCore/loader/archive/
H A DArchiveResourceCollection.cpp38 void ArchiveResourceCollection::addAllResources(Archive* archive) argument
40 ASSERT(archive);
41 if (!archive)
44 const Vector<RefPtr<ArchiveResource> >& subresources = archive->subresources();
51 const Vector<RefPtr<Archive> >& subframes = archive->subframeArchives();
/external/webkit/WebCore/html/
H A DHTMLAppletElement.cpp124 const AtomicString& archive = getAttribute(archiveAttr); local
125 if (!archive.isNull())
126 args.set("archive", archive);
/external/emma/core/java12/com/vladium/util/
H A DIPathEnumerator.java47 * Called just after the enumerator's zip input stream for this archive
50 void handleArchiveStart (File parentDir, File archive, Manifest manifest); argument
55 * Called after the enumerator's zip input stream for this archive
58 void handleArchiveEnd (File parentDir, File archive); argument
106 if (m_verbose) m_log.verbose ("processing archive path entry [" + f.getAbsolutePath () + "] ...");
109 final File archive = new File (name);
112 // move to enumeratePathArchive(): handler.handleArchiveStart (parent, archive);
114 handler.handleArchiveEnd (parent, archive); // note: it is important that this is called after the zip stream has been closed
118 throw new IllegalArgumentException ("path entry is not a directory or an archive: [" + f + "]");
199 private void enumeratePathArchive (final String archive) argument
291 readManifestViaJarFile(final File archive) argument
[all...]
/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
83 m_archiveFile = Files.newFile (parentDir, archive.getPath ());
173 public void handleArchiveEnd (final File parentDir, final File archive) argument
/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
72 if (log.atTRACE2 ()) log.trace2 ("handleArchiveStart", "[" + parentDir + "] [" + archive + "]");
75 // TODO: detect if manifest corresonds to a previously intrumented archive already ?
79 final File fullArchiveFile = Files.newFile (parentDir, archive);
99 mainAttrs.put (Attributes.Name.IMPLEMENTATION_TITLE, "instrumented version of [" + archive.getAbsolutePath () + "]");
107 // closed in the archive end event handler]:
111 final OutputStream out = new FileOutputStream (getFullOutFile (parentDir, archive, IN_LIB));
124 // in the archive end event handler]:
126 m_origArchiveFile = Files.newFile (parentDir, archive);
129 final String archiveName = Files.getFileName (archive)
342 handleArchiveEnd(final File parentDir, final File archive) argument
[all...]
/external/webkit/WebCore/loader/archive/cf/
H A DLegacyWebArchive.cpp129 RetainPtr<CFDictionaryRef> LegacyWebArchive::createPropertyListRepresentation(Archive* archive) argument
133 RetainPtr<CFDictionaryRef> mainResourceDict = createPropertyListRepresentation(archive->mainResource(), MainResource);
139 RetainPtr<CFMutableArrayRef> subresourcesArray(AdoptCF, CFArrayCreateMutable(0, archive->subresources().size(), &kCFTypeArrayCallBacks));
140 const Vector<RefPtr<ArchiveResource> >& subresources(archive->subresources());
151 RetainPtr<CFMutableArrayRef> subframesArray(AdoptCF, CFArrayCreateMutable(0, archive->subframeArchives().size(), &kCFTypeArrayCallBacks));
152 const Vector<RefPtr<Archive> >& subframeArchives(archive->subframeArchives());
158 LOG(Archives, "LegacyWebArchive - Failed to create property list for subframe archive");
172 // If the ResourceResponseVersion (passed in as responseDataType) exists at all, this is a "new" web archive that we
173 // can parse well in a cross platform manner If it doesn't exist, we will assume this is an "old" web archive with,
250 RefPtr<LegacyWebArchive> archive
266 RefPtr<LegacyWebArchive> archive = create(); local
569 RefPtr<LegacyWebArchive> archive = create(markupString, frame, nodeList); local
[all...]
/external/webkit/WebCore/loader/
H A DDocumentLoader.cpp410 void DocumentLoader::addAllArchiveResources(Archive* archive) argument
415 ASSERT(archive);
416 if (!archive)
419 m_archiveResourceCollection->addAllResources(archive);
583 // WebArchiveDebugMode means we fail loads instead of trying to fetch them from the network if they're not in the archive.
H A DFrameLoader.cpp1258 RefPtr<Archive> archive = prpArchive; local
1260 ArchiveResource* mainResource = archive->mainResource();
1273 documentLoader->addAllArchiveResources(archive.get());
2862 // so we still need to call it. Other platforms should only call finishLoading for non-archive loads
2875 RefPtr<Archive> archive(ArchiveFactory::create(loader->mainResourceData().get(), responseMIMEType));
2876 if (!archive)
2879 loader->addAllArchiveResources(archive.get());
2881 ArchiveResource* mainResource = archive->mainResource();
/external/webkit/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h355 @property(copy) NSString *archive; variable
701 @property(copy) NSString *archive; variable
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 243 milliseconds