Searched refs:Archive (Results 1 - 25 of 43) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/loader/archive/
H A DArchive.cpp30 #include "Archive.h"
34 Archive::~Archive()
38 void Archive::clearAllSubframeArchives()
40 Vector<RefPtr<Archive>> clearedArchives;
44 void Archive::clearAllSubframeArchivesImpl(Vector<RefPtr<Archive>>* clearedArchives)
46 for (Vector<RefPtr<Archive>>::iterator it = m_subframeArchives.begin(); it != m_subframeArchives.end(); ++it) {
H A DArchive.h41 class Archive : public RefCounted<Archive> { class in namespace:WebCore
47 virtual ~Archive();
51 const Vector<RefPtr<Archive>>& subframeArchives() const { return m_subframeArchives; }
58 void addSubframeArchive(PassRefPtr<Archive> subframeArchive) { m_subframeArchives.append(subframeArchive); }
63 void clearAllSubframeArchivesImpl(Vector<RefPtr<Archive>>* clearedArchives);
67 Vector<RefPtr<Archive>> m_subframeArchives;
72 #endif // Archive
H A DArchiveResourceCollection.h32 #include "Archive.h"
48 void addAllResources(Archive*);
51 PassRefPtr<Archive> popSubframeArchive(const String& frameName, const URL&);
55 HashMap<String, RefPtr<Archive>> m_subframes;
H A DArchiveResourceCollection.cpp38 void ArchiveResourceCollection::addAllResources(Archive* archive)
48 const Vector<RefPtr<Archive>>& subframes = archive->subframeArchives();
49 for (Vector<RefPtr<Archive>>::const_iterator iterator = subframes.begin(); iterator != subframes.end(); ++iterator) {
50 RefPtr<Archive> archive = *iterator;
84 PassRefPtr<Archive> ArchiveResourceCollection::popSubframeArchive(const String& frameName, const URL& url)
86 RefPtr<Archive> archive = m_subframes.take(frameName);
H A DArchiveFactory.cpp49 typedef PassRefPtr<Archive> RawDataCreationFunction(const URL&, SharedBuffer*);
53 // of Archive. This adaptor makes the functions have a uniform return type.
54 template <typename ArchiveClass> static PassRefPtr<Archive> archiveFactoryCreate(const URL& url, SharedBuffer* buffer)
86 PassRefPtr<Archive> ArchiveFactory::create(const URL& url, SharedBuffer* data, const String& mimeType)
89 return function ? function(url, data) : PassRefPtr<Archive>(0);
H A DArchiveFactory.h32 #include "Archive.h"
44 static PassRefPtr<Archive> create(const URL&, SharedBuffer* data, const String& mimeType);
/macosx-10.10/CPAN-56/Modules/Archive-Zip-1.30/
H A DMakefile1 NAME = Archive-Zip
/macosx-10.10/CPAN-56/Modules/Archive-Zip-1.37/
H A DMakefile1 NAME = Archive-Zip
/macosx-10.10/llvmCore-3425.0.34/lib/Object/
H A DArchive.cpp1 //===- Archive.cpp - ar File Format implementation --------------*- C++ -*-===//
14 #include "llvm/Object/Archive.h"
77 void Archive::anchor() { }
79 Archive::Child Archive::Child::getNext() const {
98 error_code Archive::Child::getName(StringRef &Result) const {
141 uint64_t Archive::Child::getSize() const {
153 MemoryBuffer *Archive::Child::getBuffer() const {
167 error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
176 Archive function in class:Archive
[all...]
H A DBinary.cpp20 #include "llvm/Object/Archive.h"
55 OwningPtr<Binary> ret(new Archive(scopedSource.take(), ec));
/macosx-10.10/llvmCore-3425.0.34/tools/llvm-ranlib/
H A Dllvm-ranlib.cpp16 #include "llvm/Bitcode/Archive.h"
36 void printSymbolTable(Archive* TheArchive) {
38 const Archive::SymTabType& symtab = TheArchive->getSymbolTable();
39 for (Archive::SymTabType::const_iterator I=symtab.begin(), E=symtab.end();
57 "LLVM Archive Index Generator (llvm-ranlib)\n\n"
70 throw std::string("Archive name invalid: ") + ArchiveName;
75 throw std::string("Archive file does not exist");
78 std::auto_ptr<Archive>
79 AutoArchive(Archive::OpenAndLoad(ArchivePath, Context, &err_msg));
80 Archive* TheArchiv
[all...]
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Bitcode/
H A DArchive.h1 //===-- llvm/Bitcode/Archive.h - LLVM Bitcode Archive -----------*- C++ -*-===//
10 // This header file declares the Archive and ArchiveMember classes that provide
11 // manipulation of LLVM Archive files. The implementation is provided by the
12 // lib/Bitcode/Archive library. This library is used to read and write
31 class Archive; // Declared below
35 /// This class is the main class manipulated by users of the Archive class. It
36 /// holds information about one member of the Archive. It is also the element
37 /// stored by the Archive's ilist, the Archive'
199 class Archive { class in namespace:llvm
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/
H A DMakefile13 PARALLEL_DIRS := VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Object/
H A DArchive.h1 //===- Archive.h - ar archive file format -----------------------*- C++ -*-===//
24 class Archive : public Binary { class in namespace:llvm::object
28 const Archive *Parent;
32 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {}
83 const Archive *Parent;
92 Symbol(const Archive *p, uint32_t symi, uint32_t stri)
123 Archive(MemoryBuffer *source, error_code &ec);
132 static inline bool classof(Archive const *v) { return true; }
/macosx-10.10/python_modules-40/
H A Dtar-remove.pl13 use Archive::Tar;
15 our @ISA = qw(Archive::Tar);
/macosx-10.10/llvmCore-3425.0.34/lib/Archive/
H A DArchiveReader.cpp38 // Completely parse the Archive's symbol table and populate symTab member var.
40 Archive::parseSymbolTable(const void* data, unsigned size, std::string* error) {
73 Archive::parseMemberHeader(const char*& At, const char* End, std::string* error)
236 Archive::checkSignature(std::string* error) {
250 Archive::loadArchive(std::string* error) {
327 Archive*
328 Archive::OpenAndLoad(const sys::Path& file, LLVMContext& C,
330 std::auto_ptr<Archive> result ( new Archive(file, C));
340 Archive
[all...]
H A DArchive.cpp1 //===-- Archive.cpp - Generic LLVM archive functions ------------*- C++ -*-===//
10 // This file contains the implementation of the Archive and ArchiveMember
56 // This is the constructor that the Archive class uses when it is building or
58 // set for the iplist. The Archive class fills in the ArchiveMember's data.
60 // things in the Archive.
61 ArchiveMember::ArchiveMember(Archive* PAR)
142 // Archive constructor - this is the only constructor that gets used for the
143 // Archive class. Everything else (default,copy) is deprecated. This just
145 Archive::Archive(cons function in class:Archive
[all...]
H A DArchiveWriter.cpp69 Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) {
70 Archive* result = new Archive(FilePath, C);
81 Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr,
158 Archive::addFileBefore(const sys::Path& filePath, iterator where,
202 Archive::writeMember(
293 Archive::writeSymbolTable(std::ofstream& ARFile) {
321 for ( Archive::SymTabType::iterator I = symTab.begin(), E = symTab.end();
351 Archive
[all...]
/macosx-10.10/WebCore-7600.1.25/loader/archive/mhtml/
H A DMHTMLArchive.h36 #include "Archive.h"
44 class MHTMLArchive : public Archive {
/macosx-10.10/WebCore-7600.1.25/loader/archive/cf/
H A DLegacyWebArchive.h32 #include "Archive.h"
41 class LegacyWebArchive : public Archive {
66 static RetainPtr<CFDictionaryRef> createPropertyListRepresentation(Archive*);
74 #endif // Archive
/macosx-10.10/llvmCore-3425.0.34/tools/llvm-ar/
H A Dllvm-ar.cpp17 #include "llvm/Bitcode/Archive.h"
126 // The Archive object to which all the editing operations will be sent.
127 Archive* TheArchive = 0;
335 const Archive::SymTabType& symtab = TheArchive->getSymbolTable();
336 for (Archive::SymTabType::const_iterator I=symtab.begin(), E=symtab.end();
351 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
402 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
438 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
484 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
488 Archive
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Linker/
H A DLinkArchives.cpp18 #include "llvm/Bitcode/Archive.h"
114 std::auto_ptr<Archive> AutoArch (
115 Archive::OpenAndLoadSymbols(Filename, Context, &ErrMsg));
117 Archive* arch = AutoArch.get();
/macosx-10.10/llvmCore-3425.0.34/bindings/ocaml/
H A DMakefile.ocaml63 Archive.CMA := $(strip $(OCAMLC) -a -custom $(OCAMLAFLAGS) $(OCAMLDEBUGFLAG) \
67 Archive.CMXA := $(strip $(OCAMLOPT) -a $(OCAMLAFLAGS) $(OCAMLDEBUGFLAG) -o)
70 Archive.EXE := $(strip $(OCAMLOPT) -cc $(CXX) $(OCAMLCFLAGS) $(UsedOcamLibs:%=%.cmxa) $(OCAMLDEBUGFLAG) -o)
72 Archive.EXE := $(strip $(OCAMLC) -cc $(CXX) $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG:%=%.cma) -o)
172 $(Verb) $(Archive) $@ $(ObjectsO)
279 $(Verb) $(Archive.CMA) $@ $(ObjectsCMO)
319 $(Verb) $(Archive.CMXA) $@ $(ObjectsCMX)
360 $(Verb) $(Archive.EXE) $@ $(ObjectsCMO)
364 $(Verb) $(Archive.EXE) $@ $(ObjectsCMX)
388 $(Echo) "Archive
[all...]
/macosx-10.10/WebCore-7600.1.25/loader/
H A DDocumentLoader.h61 class Archive;
152 void setArchive(PassRefPtr<Archive>);
153 void addAllArchiveResources(Archive*);
155 PassRefPtr<Archive> popArchiveForSubframe(const String& frameName, const URL&);
161 // Return the ArchiveResource for the URL only when loading an Archive
394 RefPtr<Archive> m_archive;
/macosx-10.10/llvmCore-3425.0.34/tools/llvm-size/
H A Dllvm-size.cpp17 #include "llvm/Object/Archive.h"
253 if (Archive *a = dyn_cast<Archive>(binary.get())) {
255 for (object::Archive::child_iterator i = a->begin_children(),

Completed in 229 milliseconds

12