Searched defs:Archive (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/loader/archive/
H A DArchive.h41 class Archive : public RefCounted<Archive> { class in namespace:WebCore
45 const Vector<RefPtr<Archive> >& subframeArchives() const { return m_subframeArchives; }
52 void addSubframeArchive(PassRefPtr<Archive> subframeArchive) { m_subframeArchives.append(subframeArchive); }
57 Vector<RefPtr<Archive> > m_subframeArchives;
62 #endif // Archive
/external/llvm/lib/Archive/
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...]
/external/llvm/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; }
/external/llvm/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...]
/external/llvm/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...]

Completed in 164 milliseconds