HomeSort by relevance Sort by last modified time
    Searched defs:Archive (Results 1 - 12 of 12) sorted by null

  /external/llvm/lib/Archive/
Archive.cpp 1 //===-- 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
57 // reading an archive. It just defaults a few things and ensures the parent is
58 // set for the iplist. The Archive class fills in the ArchiveMember's data.
60 // things in the Archive.
61 ArchiveMember::ArchiveMember(Archive* PAR)
73 *ErrMsg = "Can not replace an archive member with a non-existent file";
142 // Archive constructor - this is the only constructor that gets used for th
    [all...]
  /external/webkit/Source/WebCore/loader/archive/
Archive.h 41 class Archive : public RefCounted<Archive> {
45 const Vector<RefPtr<Archive> >& subframeArchives() const { return m_subframeArchives; }
48 // These methods are meant for subclasses for different archive types to add resources in to the archive,
52 void addSubframeArchive(PassRefPtr<Archive> subframeArchive) { m_subframeArchives.append(subframeArchive); }
57 Vector<RefPtr<Archive> > m_subframeArchives;
62 #endif // Archive
  /frameworks/compile/mclinker/lib/LD/
Archive.cpp 1 //===- Archive.cpp --------------------------------------------------------===//
9 #include <mcld/LD/Archive.h>
16 // Archive
17 const char Archive::MAGIC[] = "!<arch>\n";
18 const char Archive::THIN_MAGIC[] = "!<thin>\n";
19 const size_t Archive::MAGIC_LEN = sizeof(Archive::MAGIC) - 1;
20 const char Archive::SVR4_SYMTAB_NAME[] = "/ ";
21 const char Archive::STRTAB_NAME[] = "// ";
22 const char Archive::PAD[] = "\n"
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDInput.h 42 Archive = MCLDFile::Archive,
MCLDFile.h 53 Archive,
  /external/llvm/include/llvm/Object/
Archive.h 1 //===- Archive.h - ar archive file format -----------------------*- C++ -*-===//
10 // This file declares the ar archive file format class.
24 class Archive : public Binary {
28 const Archive *Parent;
32 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {}
48 ///! Return the size of the archive member without the header or padding.
83 const Archive *Parent;
92 Symbol(const Archive *p, uint32_t symi, uint32_t stri)
123 Archive(MemoryBuffer *source, error_code &ec)
    [all...]
  /external/llvm/include/llvm/Bitcode/
Archive.h 1 //===-- 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
13 // archive (*.a) files that contain LLVM bitcode files (or others).
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's main abstraction. Because o
    [all...]
  /external/llvm/lib/Object/
Archive.cpp 1 //===- Archive.cpp - ar File Format implementation --------------*- C++ -*-===//
14 #include "llvm/Object/Archive.h"
77 void Archive::anchor() { }
79 Archive::Child Archive::Child::getNext() const {
88 // Check to see if this is past the end of the archive.
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
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 1 //===- Archive.h ----------------------------------------------------------===//
29 /** \class Archive
30 * \brief This class define the interfacee to Archive files
32 class Archive
36 static const char THIN_MAGIC[]; ///< magic of thin archive
129 Archive(Input& pInputFile, InputFactory& pInputFactory);
131 ~Archive();
133 /// getARFile - get the Input& of the archive file
136 /// getARFile - get the Input& of the archive file
139 /// inputs - get the input tree built from this archive
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/archives/
Archive.java 34 * A {@link Archive} is the base class for "something" that can be downloaded from
41 * The {@link ArchiveInstaller} takes care of downloading, unpacking and installing an archive.
43 public class Archive implements IDescription, Comparable<Archive> {
45 private static final String PROP_OS = "Archive.Os"; //$NON-NLS-1$
46 private static final String PROP_ARCH = "Archive.Arch"; //$NON-NLS-1$
75 /** The OS that this archive can be downloaded on. */
127 /** The Architecture that this archive can be downloaded on. */
194 * Creates a new remote archive.
196 public Archive(Package pkg, Os os, Arch arch, String url, long size, String checksum)
    [all...]
  /tools/build/builder/prebuilts/
sdklib.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 

Completed in 191 milliseconds