HomeSort by relevance Sort by last modified time
    Searched defs:Archive (Results 1 - 11 of 11) 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
15 #include "llvm/Bitcode/Archive.h"
57 // This is the constructor that the Archive class uses when it is building or
58 // reading an archive. It just defaults a few things and ensures the parent is
59 // set for the iplist. The Archive class fills in the ArchiveMember's data.
61 // things in the Archive.
62 ArchiveMember::ArchiveMember(Archive* PAR)
74 *ErrMsg = "Can not replace an archive member with a non-existent file"
    [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>
21 // Archive
22 const char Archive::MAGIC[] = "!<arch>\n";
23 const char Archive::THIN_MAGIC[] = "!<thin>\n";
24 const size_t Archive::MAGIC_LEN = sizeof(Archive::MAGIC) - 1;
25 const char Archive::SVR4_SYMTAB_NAME[] = "/ ";
26 const char Archive::STRTAB_NAME[] = "// ";
27 const char Archive::PAD[] = "\n"
    [all...]
  /external/llvm/lib/Object/
Archive.cpp 1 //===- Archive.cpp - ar File Format implementation --------------*- C++ -*-===//
14 #include "llvm/Object/Archive.h"
39 void Archive::anchor() { }
41 error_code Archive::Child::getName(StringRef &Result) const {
93 error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
104 Archive::Archive(MemoryBuffer *source, error_code &ec)
108 < (8 + sizeof(ArchiveMemberHeader) + 2) // Smallest archive.
122 // Below is the pattern that is used to figure out the archive format
123 // GNU archive forma
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDInput.h 43 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.
64 class Archive : public Binary {
68 const Archive *Parent;
75 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {
106 // Check to see if this is past the end of the archive.
121 /// \return the size of the archive member without the header or padding.
171 const Archive *Parent;
180 Symbol(const Archive *p, uint32_t symi, uint32_t stri
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 1 //===- Archive.h ----------------------------------------------------------===//
33 /** \class Archive
34 * \brief This class define the interfacee to Archive files
36 class Archive
40 static const char THIN_MAGIC[]; ///< magic of thin archive
132 Archive(Input& pInputFile, InputBuilder& pBuilder);
134 ~Archive();
136 /// getARFile - get the Input& of the archive file
139 /// getARFile - get the Input& of the archive file
142 /// inputs - get the input tree built from this archive
    [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...]
  /frameworks/base/services/java/com/android/server/
NotificationManagerService.java 272 private static class Archive {
276 public Archive() {
282 sb.append("Archive (");
294 // We don't want to store the heavy bits of the notification in the archive,
350 if (count == 0) count = Archive.BUFFER_SIZE;
362 if (count == 0) count = Archive.BUFFER_SIZE;
375 Archive mArchive = new Archive();
    [all...]
  /prebuilts/devtools/tools/lib/
sdklib.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 

Completed in 610 milliseconds