HomeSort by relevance Sort by last modified time
    Searched defs:Archive (Results 1 - 9 of 9) 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/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/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...]
  /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...]
  /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...]
  /prebuilt/common/ecj/
ecj.jar 

Completed in 104 milliseconds