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

1 2 3 4 5 6 7

  /external/deqp/framework/common/
tcuResource.hpp 30 // \todo [2010-07-31 pyry] Move Archive and File* to separate files
42 * Resource objects are requested from Archive object provided by Platform.
65 * \brief Abstract resource archive
67 class Archive
70 virtual ~Archive (void) {}
85 Archive () {}
89 * \brief Directory-based archive implementation
91 class DirArchive : public Archive
100 DirArchive (const DirArchive& other) : Archive(), m_path(other.m_path) {}
126 class ResourcePrefix : public Archive
    [all...]
  /frameworks/compile/mclinker/lib/LD/
Archive.cpp 1 //===- Archive.cpp --------------------------------------------------------===//
9 #include "mcld/LD/Archive.h"
19 // Archive
20 const char Archive::MAGIC[] = "!<arch>\n";
21 const char Archive::THIN_MAGIC[] = "!<thin>\n";
22 const size_t Archive::MAGIC_LEN = sizeof(Archive::MAGIC) - 1;
23 const char Archive::SVR4_SYMTAB_NAME[] = "/ ";
24 const char Archive::IRIX6_SYMTAB_NAME[] = "/SYM64/ ";
25 const char Archive::STRTAB_NAME[] = "// "
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
UpdateCallback.h 99 CMyComPtr<IInArchive> Archive;
OpenArchive.h 146 // if FormatIndex == ErrorFormatIndex, the archive is open with offset
151 - other variables show message and warnings of archive that is open */
217 HRESULT PrepareToOpen(const COpenOptions &op, unsigned formatIndex, CMyComPtr<IInArchive> &archive);
222 CMyComPtr<IInArchive> Archive;
226 // 2) we reopen sfx archive with CTailInStream
242 Int64 Offset; // it's offset of start of archive inside stream that is open by Archive Handler
251 UInt64 ArcStreamOffset; // offset of stream that is open by Archive Handler
252 Int64 GetGlobalOffset() const { return ArcStreamOffset + Offset; } // it's global offset of archive
279 HRESULT ReadBasicProps(IInArchive *archive, UInt64 startPos, HRESULT openRes);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pack/
pack.go 22 The archive format is:
53 // need "pack op archive" at least.
60 var ar *Archive
63 ar = archive(os.Args[2], os.O_RDONLY, os.Args[3:])
66 ar = archive(os.Args[2], os.O_RDWR, os.Args[3:])
70 ar = archive(os.Args[2], os.O_RDWR|os.O_TRUNC, os.Args[3:])
74 ar = archive(os.Args[2], os.O_RDONLY, os.Args[3:])
77 ar = archive(os.Args[2], os.O_RDONLY, os.Args[3:])
85 log.Fatalf("file %q not in archive", ar.files[0])
101 // formerly canonical way to build a new archive
146 func archive(name string, mode int, files []string) *Archive { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pack/
pack.go 22 The archive format is:
53 // need "pack op archive" at least.
60 var ar *Archive
63 ar = archive(os.Args[2], os.O_RDONLY, os.Args[3:])
66 ar = archive(os.Args[2], os.O_RDWR, os.Args[3:])
70 ar = archive(os.Args[2], os.O_RDWR|os.O_TRUNC, os.Args[3:])
74 ar = archive(os.Args[2], os.O_RDONLY, os.Args[3:])
77 ar = archive(os.Args[2], os.O_RDONLY, os.Args[3:])
85 log.Fatalf("file %q not in archive", ar.files[0])
101 // formerly canonical way to build a new archive
146 func archive(name string, mode int, files []string) *Archive { func
    [all...]
  /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.
51 class Archive : public Binary {
55 friend Archive;
56 const Archive *Parent;
69 Child(const Archive *Parent, const char *Start, std::error_code *EC);
70 Child(const Archive *Parent, StringRef Data, uint16_t StartOfFile);
77 const Archive *getParent() const { return Parent; }
93 /// \return the size of the archive member without the header or padding
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 1 //===- Archive.h ----------------------------------------------------------===//
27 /** \class Archive
28 * \brief This class define the interfacee to Archive files
30 class Archive {
33 static const char THIN_MAGIC[]; ///< magic of thin archive
111 Archive(Input& pInputFile, InputBuilder& pBuilder);
113 ~Archive();
115 /// getARFile - get the Input& of the archive file
118 /// getARFile - get the Input& of the archive file
121 /// inputs - get the input tree built from this archive
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
Input.h 41 Archive,
  /external/llvm/lib/Object/
Archive.cpp 1 //===- Archive.cpp - ar File Format implementation --------------*- C++ -*-===//
14 #include "llvm/Object/Archive.h"
29 void Archive::anchor() { }
85 Archive::Child::Child(const Archive *Parent, StringRef Data,
89 Archive::Child::Child(const Archive *Parent, const char *Start,
117 ErrorOr<uint64_t> Archive::Child::getSize() const {
127 ErrorOr<uint64_t> Archive::Child::getRawSize() const {
134 bool Archive::Child::isThinMember() const
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
archive.h 0 // archive.h -- archive support for gold -*- C++ -*-
47 // An entry in the archive map of offsets to members.
64 // This class serves as a base class for Archive and Lib_group objects.
82 // The modification time of the archive file.
87 // When we see a symbol in an archive we might decide to include the member,
139 // The task reading this archive.
147 // Return the modification time of the archive file.
155 // The incremental link information for this archive.
159 // This class represents an archive--generally a libNAME.a file
    [all...]
archive.cc 0 // archive.cc -- archive support for gold
40 #include "archive.h"
49 // Determine whether a definition of SYM_NAME should cause an archive
61 // In an object file, and therefore in an archive map, an
104 // PR 12001: Do not include an archive when the undefined
151 // The header of an entry in the archive. This is all readable text,
152 // padded with spaces where necessary. If the contents of an archive
153 // are all text file, the entire archive is readable.
155 struct Archive::Archive_heade
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0/
repository-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-alpha1/
repository-25.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-alpha3/
repository-25.0.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-alpha5/
repository-25.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-alpha7/
repository-25.0.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-alpha9/
repository-25.0.0-alpha9.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-beta2/
repository-25.0.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-beta5/
repository-25.0.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-beta6/
repository-25.0.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-beta7/
repository-25.0.0-beta7.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-rc3/
repository-25.0.0-rc3.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.1.0/
repository-25.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.1.0-alpha3/
repository-25.1.0-alpha3.jar 

Completed in 781 milliseconds

1 2 3 4 5 6 7