Searched defs:archive (Results 1 - 25 of 57) sorted by last modified time

123

/external/webkit/Source/WebKit/android/jni/
H A DWebCoreFrameBridge.cpp1391 RefPtr<WebArchiveAndroid> archive = WebCore::WebArchiveAndroid::create(pFrame); local
1393 bool result = archive->saveWebArchive(writer);
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h361 @property(copy) NSString *archive; variable
707 @property(copy) NSString *archive; variable
/external/webkit/Source/WebCore/html/
H A DHTMLAppletElement.cpp125 const AtomicString& archive = getAttribute(archiveAttr); local
126 if (!archive.isNull())
127 args.set("archive", archive);
/external/webkit/Source/WebCore/loader/
H A DDocumentLoader.cpp454 void DocumentLoader::addAllArchiveResources(Archive* archive) argument
459 ASSERT(archive);
460 if (!archive)
463 m_archiveResourceCollection->addAllResources(archive);
627 // WebArchiveDebugMode means we fail loads instead of trying to fetch them from the network if they're not in the archive.
H A DFrameLoader.cpp973 RefPtr<Archive> archive = prpArchive; local
975 ArchiveResource* mainResource = archive->mainResource();
988 documentLoader->addAllArchiveResources(archive.get());
2307 // Give archive machinery a crack at this document. If the MIME type is not an archive type, it will return 0.
2308 RefPtr<Archive> archive = ArchiveFactory::create(loader->mainResourceData().get(), loader->responseMIMEType());
2309 if (!archive) {
2316 loader->addAllArchiveResources(archive.get());
2318 ArchiveResource* mainResource = archive->mainResource();
/external/webkit/Source/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/Source/WebCore/loader/archive/android/
H A DWebArchiveAndroid.cpp215 ALOGD("loadArchive: Malformed archive.");
276 /* When an archive cannot be loaded, we return an empty archive instead. */
305 RefPtr<WebArchiveAndroid> archive = loadArchive(root); local
306 if (!archive) {
307 ALOGD("create: Failed to load archive.");
313 return archive.release();
384 static bool saveArchive(xmlTextWriterPtr writer, PassRefPtr<Archive> archive) argument
398 if (!saveArchiveResource(writer, archive->mainResource()))
413 for (Vector<const RefPtr<ArchiveResource> >::iterator subresource = archive
[all...]
/external/webkit/Source/WebCore/loader/archive/cf/
H A DLegacyWebArchive.cpp130 RetainPtr<CFDictionaryRef> LegacyWebArchive::createPropertyListRepresentation(Archive* archive) argument
134 RetainPtr<CFDictionaryRef> mainResourceDict = createPropertyListRepresentation(archive->mainResource(), MainResource);
140 RetainPtr<CFMutableArrayRef> subresourcesArray(AdoptCF, CFArrayCreateMutable(0, archive->subresources().size(), &kCFTypeArrayCallBacks));
141 const Vector<RefPtr<ArchiveResource> >& subresources(archive->subresources());
152 RetainPtr<CFMutableArrayRef> subframesArray(AdoptCF, CFArrayCreateMutable(0, archive->subframeArchives().size(), &kCFTypeArrayCallBacks));
153 const Vector<RefPtr<Archive> >& subframeArchives(archive->subframeArchives());
159 LOG(Archives, "LegacyWebArchive - Failed to create property list for subframe archive");
173 // If the ResourceResponseVersion (passed in as responseDataType) exists at all, this is a "new" web archive that we
174 // can parse well in a cross platform manner If it doesn't exist, we will assume this is an "old" web archive with,
251 RefPtr<LegacyWebArchive> archive
267 RefPtr<LegacyWebArchive> archive = create(); local
570 RefPtr<LegacyWebArchive> archive = create(markupString, frame, nodeList); local
[all...]
/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/llvm/include/llvm/Support/
H A DFileSystem.h187 archive, ///< ar style archive file enumerator in enum:llvm::sys::fs::file_magic::_
/external/elfutils/libdwfl/
H A Dlinux-kernel-modules.c212 /* Look for a kernel debug archive. If we find one, report all its modules.
222 char *archive; local
224 ? asprintf (&archive, "%s/debug.a", *release)
225 : asprintf (&archive, MODULEDIRFMT "/debug.a", *release)) < 0)
228 int fd = try_kernel_name (dwfl, &archive, false);
233 /* We have the archive file open! */
234 Dwfl_Module *last = __libdwfl_report_offline (dwfl, NULL, archive, fd,
253 free (archive);
H A Doffline.c123 /* Report one module for an ELF file, or many for an archive.
250 /* Advance the archive-reading offset for the next iteration. */
254 /* Report each member of the archive as its own module. */
257 Elf *archive,
262 Elf *member = elf_begin (fd, ELF_C_READ_MMAP_PRIVATE, archive);
263 if (unlikely (member == NULL)) /* Empty archive. */
271 member = elf_begin (fd, ELF_C_READ_MMAP_PRIVATE, archive);
273 /* We can drop the archive Elf handle even if we're still using members
278 && elf_end (archive) == 0)
256 process_archive(Dwfl *dwfl, const char *name, const char *file_name, int fd, Elf *archive, int (*predicate) (const char *module, const char *file)) 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/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/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/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jar ... parserFactory private static final String PLUGIN_ID private static final String ARCHIVE private static final String CATEGORY private static final String CATEGORY_DEF ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit3.8.2/ junit/awtui/ junit/extensions/ junit/framework/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 359 milliseconds

123