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

1 2 3 4 5 6

  /external/deqp/framework/common/
tcuImageIO.hpp 31 class Archive;
39 void loadImage (TextureLevel& dst, const tcu::Archive& archive, const char* fileName);
41 void loadPNG (TextureLevel& dst, const tcu::Archive& archive, const char* fileName);
44 void loadPKM (CompressedTexture& dst, const tcu::Archive& archive, const char* fileName);
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...]
tcuTestContext.hpp 35 class Archive;
44 * This includes test log and resource archive.
51 TestContext (Platform& platform, Archive& rootArchive, TestLog& log, const CommandLine& cmdLine, qpWatchDog* watchDog);
56 Archive& getArchive (void) { return *m_curArchive; } //!< \note Do not access in TestNode constructors.
67 Archive& getRootArchive (void) const { return m_rootArchive; }
68 void setCurrentArchive (Archive& archive) { m_curArchive = &archive; }
78 Archive& m_rootArchive; //!< Root archive
    [all...]
tcuApp.hpp 37 class Archive;
71 App (Platform& platform, Archive& archive, TestLog& log, const CommandLine& cmdLine);
  /external/elfutils/tests/
run-readelf-test4.sh 24 Index of archive 'testfile19.index' has 4 entries:
25 Archive member 'u1.o' contains:
27 Archive member 'u2.o' contains:
29 Archive member 'u3.o' contains:
run-test-archive64.sh 20 # The test archive was produced on an s390x machine using the
31 Index of archive 'testarchive64.a' has 7 entries:
32 Archive member 'aaa.o' contains:
34 Archive member 'bbb.o' contains:
37 Archive member 'ccc.o' contains:
  /external/lzma/CPP/7zip/
7zip.mak 66 $(AR_OBJS): ../../Archive/$(*B).cpp
71 $(AR_COMMON_OBJS): ../../Archive/Common/$(*B).cpp
76 $(7Z_OBJS): ../../Archive/7z/$(*B).cpp
81 $(CAB_OBJS): ../../Archive/Cab/$(*B).cpp
86 $(CHM_OBJS): ../../Archive/Chm/$(*B).cpp
91 $(COM_OBJS): ../../Archive/Com/$(*B).cpp
96 $(ISO_OBJS): ../../Archive/Iso/$(*B).cpp
101 $(NSIS_OBJS): ../../Archive/Nsis/$(*B).cpp
106 $(RAR_OBJS): ../../Archive/Rar/$(*B).cpp
111 $(TAR_OBJS): ../../Archive/Tar/$(*B).cpp
    [all...]
  /external/swiftshader/third_party/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 {
27 const Archive *Parent;
31 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {}
43 ///! Return the size of the archive member without the header or padding.
72 Archive(MemoryBuffer *source, error_code &ec);
78 static inline bool classof(Archive const *v) { return true; }
  /external/swiftshader/third_party/LLVM/lib/Object/
Archive.cpp 1 //===- Archive.cpp - ar File Format implementation --------------*- C++ -*-===//
14 #include "llvm/Object/Archive.h"
56 Archive::Child Archive::Child::getNext() const {
65 // Check to see if this is past the end of the archive.
75 error_code Archive::Child::getName(StringRef &Result) const {
113 uint64_t Archive::Child::getSize() const {
117 MemoryBuffer *Archive::Child::getBuffer() const {
126 error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
135 Archive::Archive(MemoryBuffer *source, error_code &ec
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-ranlib/
llvm-ranlib.cpp 1 //===-- llvm-ranlib.cpp - LLVM archive index generator --------------------===//
10 // Adds or updates an index (symbol table) for an LLVM archive file.
16 #include "llvm/Bitcode/Archive.h"
29 ArchiveName(cl::Positional, cl::Optional, cl::desc("<archive-file>"));
35 // printSymbolTable - print out the archive's symbol table.
36 void printSymbolTable(Archive* TheArchive) {
38 const Archive::SymTabType& symtab = TheArchive->getSymbolTable();
39 for (Archive::SymTabType::const_iterator I=symtab.begin(), E=symtab.end();
57 "LLVM Archive Index Generator (llvm-ranlib)\n\n"
59 " to an LLVM archive file."
    [all...]
  /external/swiftshader/third_party/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"
28 void Archive::anchor() { }
90 Archive::Child::Child(const Archive *Parent, StringRef Data,
94 Archive::Child::Child(const Archive *Parent, const char *Start,
122 ErrorOr<uint64_t> Archive::Child::getSize() const {
132 ErrorOr<uint64_t> Archive::Child::getRawSize() const {
139 bool Archive::Child::isThinMember() const
    [all...]
  /external/deqp/external/openglcts/modules/common/
glcConfigPackage.hpp 42 tcu::Archive* getArchive(void)
glcNoDefaultContextPackage.hpp 39 tcu::Archive* getArchive(void)
  /external/deqp/modules/gles2/
tes2TestPackage.hpp 47 tcu::Archive* getArchive (void) { return &m_archive; }
  /external/deqp/modules/gles3/
tes3TestPackage.hpp 47 tcu::Archive* getArchive (void) { return &m_archive; }
  /external/deqp/modules/gles31/
tes31TestPackage.hpp 47 tcu::Archive* getArchive (void) { return &m_archive; }
  /external/swiftshader/third_party/LLVM/lib/
Makefile 13 PARALLEL_DIRS := VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
Archive.h 1 //===- Archive.h - ar archive file format -----------------------*- C++ -*-===//
10 // This file declares the ar archive file format class.
35 class Archive;
39 friend class Archive;
41 ArchiveMemberHeader(Archive const *Parent, const char *RawHeaderPtr,
80 Archive const *Parent;
84 class Archive : public Binary {
89 friend Archive;
92 const Archive *Parent
    [all...]
ArchiveWriter.h 1 //===- ArchiveWriter.h - ar archive file format writer ----------*- C++ -*-===//
10 // Declares the writeArchive function for writing an archive file.
18 #include "llvm/Object/Archive.h"
35 getOldMember(const object::Archive::Child &OldMember, bool Deterministic);
42 bool WriteSymtab, object::Archive::Kind Kind,
  /external/llvm/test/Object/
simple-archive.test 6 CHECKIDX: Archive map
  /external/swiftshader/third_party/llvm-7.0/llvm/test/Object/
simple-archive.test 6 CHECKIDX: Archive map
  /external/deqp/external/openglcts/modules/runner/
glcTestRunner.hpp 36 class Archive;
100 TestRunner(tcu::Platform& platform, tcu::Archive& archive, const char* logDirPath, glu::ApiType type,
130 tcu::Archive& m_archive;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
Archive.cpp 1 //===- Archive.cpp - ar File Format implementation ------------------------===//
14 #include "llvm/Object/Archive.h"
45 void Archive::anchor() {}
49 std::string StringMsg = "truncated or malformed archive (" + Msg.str() + ")";
54 ArchiveMemberHeader::ArchiveMemberHeader(const Archive *Parent,
65 std::string Msg("remaining size of archive too small for next archive "
84 std::string Msg("terminator characters in archive member \"" + Buf +
85 "\" not the correct \"`\\n\" values for the archive "
100 // valid for the kind of archive. If it is not valid it returns an Error
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 1 //===-- llvm-ar.cpp - LLVM archive librarian utility ----------------------===//
10 // Builds up (relatively) standard unix archive files (.a) containing LLVM
20 #include "llvm/Object/Archive.h"
83 cl::desc("[relpos] [count] <archive-file> [members]..."));
93 FormatOpt("format", cl::desc("Archive format to create"),
105 " d[NsS] - delete file(s) from the archive\n"
106 " m[abiSs] - move file(s) in the archive\n"
107 " p[kN] - print file(s) found in the archive\n"
108 " q[ufsS] - quick append file(s) to the archive\n"
109 " r[abfiuRsS] - replace or insert file(s) into the archive\n
    [all...]

Completed in 926 milliseconds

1 2 3 4 5 6