HomeSort by relevance Sort by last modified time
    Searched refs:Archive (Results 51 - 75 of 109) sorted by null

1 23 4 5

  /external/llvm/lib/Object/
MachOUniversal.cpp 17 #include "llvm/Object/Archive.h"
84 std::unique_ptr<Archive> &Result) const {
91 ErrorOr<Archive *> Obj = Archive::create(std::move(ObjBuffer));
Binary.cpp 21 #include "llvm/Object/Archive.h"
46 case sys::fs::file_magic::archive:
47 return Archive::create(std::move(Buffer));
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 24 #include "llvm/Object/Archive.h"
94 SmallVector<object::Archive *, 2>::iterator ArIt, ArEnd;
96 object::Archive *A = *ArIt;
126 void MCJIT::addArchive(object::Archive *A) {
302 SmallVector<object::Archive*, 2>::iterator I, E;
304 object::Archive *A = *I;
305 // Look for our symbols in each Archive
306 object::Archive::child_iterator ChildIt = A->findSym(Name);
MCJIT.h 219 SmallVector<object::Archive*, 2> Archives;
243 void addArchive(object::Archive *O) override;
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 23 #include "llvm/Object/Archive.h"
131 cl::opt<bool> ArchiveMap("print-armap", cl::desc("Print the archive map"));
821 if (Archive *A = dyn_cast<Archive>(Bin.get())) {
823 Archive::symbol_iterator I = A->symbol_begin();
824 Archive::symbol_iterator E = A->symbol_end();
826 outs() << "Archive map\n";
828 ErrorOr<Archive::child_iterator> C = I->getMember();
841 for (Archive::child_iterator I = A->child_begin(), E = A->child_end();
874 std::unique_ptr<Archive> A
    [all...]
  /external/lzma/CPP/7zip/Bundles/Alone7z/
makefile 201 $(AR_OBJS): ../../Archive/$(*B).cpp
203 $(AR_COMMON_OBJS): ../../Archive/Common/$(*B).cpp
206 $(7Z_OBJS): ../../Archive/7z/$(*B).cpp
  /external/llvm/tools/llvm-size/
llvm-size.cpp 17 #include "llvm/Object/Archive.h"
442 /// @brief Print the section sizes for @p file. If @p file is an archive, print
443 /// the section sizes for each archive member.
463 if (Archive *a = dyn_cast<Archive>(binary.get())) {
464 // This is an archive. Iterate over each member and display its sizes.
465 for (object::Archive::child_iterator i = a->child_begin(),
504 std::unique_ptr<Archive> UA;
524 // This is an archive. Iterate over each member and display its
526 for (object::Archive::child_iterator i = UA->child_begin()
    [all...]
  /frameworks/compile/mclinker/lib/Core/
GeneralOptions.cpp 156 assert(pInput.type() == Input::Archive);
162 // Specifying "--exclude-libs ALL" excludes symbols in all archive libraries
  /external/lzma/CPP/7zip/UI/Common/
UpdateCallback.cpp 143 if (up.ExistInArchive() && Archive)
150 return Archive->GetProperty(indexInArchive, propID, value);
ArchiveExtractCallback.cpp 126 RINOK(_arc->Archive->GetProperty(index, propID, &prop));
140 RINOK(_arc->Archive->GetProperty(_index, kpidSize, &prop));
162 IInArchive *archive = _arc->Archive; local
164 RINOK(IsArchiveItemFolder(archive, index, _fi.IsDir));
170 RINOK(archive->GetProperty(index, kpidPosition, &prop));
180 RINOK(GetArchiveItemBoolProp(archive, index, kpidEncrypted, _encrypted));
201 RINOK(archive->GetProperty(index, kpidAttrib, &prop));
  /frameworks/compile/mclinker/lib/LD/
Android.mk 8 Archive.cpp \
  /frameworks/compile/mclinker/lib/MC/
CommandAction.cpp 49 // In the system with shared object support, we can find both archive
53 // with --static, we must search an archive.
54 path = m_SearchDirs.find(namespec(), Input::Archive);
57 // otherwise, with --Bdynamic, we can find either an archive or a
63 // In the system without shared object support, we only look for an archive
64 path = m_SearchDirs.find(namespec(), Input::Archive);
  /frameworks/compile/mclinker/lib/Script/
GroupCmd.cpp 125 // In the system with shared object support, we can find both archive
128 // with --static, we must search an archive.
129 path = script.directories().find(token->name(), Input::Archive);
131 // otherwise, with --Bdynamic, we can find either an archive or a
136 // In the system without shared object support, only look for an archive
137 path = script.directories().find(token->name(), Input::Archive);
  /frameworks/compile/mclinker/unittests/
FactoriesTest.cpp 188 MCLDFile::Archive);
205 MCLDFile::Archive);
  /ndk/build/tools/
builder-funcs.sh 328 builder_log "${_BUILD_PREFIX}Archive: $libname"
331 fail_panic "Could not archive ${_BUILD_PREFIX}$libname objects!"
350 builder_log "${_BUILD_PREFIX}Archive: $libname"
353 fail_panic "Could not archive ${_BUILD_PREFIX}$libname objects!"
  /external/deqp/framework/common/
tcuApp.cpp 58 App::App (Platform& platform, Archive& archive, TestLog& log, const CommandLine& cmdLine)
86 m_testCtx = new TestContext(m_platform, archive, log, cmdLine, m_watchDog);
  /external/lzma/CPP/7zip/UI/Console/
List.cpp 15 #include "../../Archive/IArchive.h"
95 static const char *kListing = "Listing archive: ";
178 HRESULT Init(IInArchive *archive);
218 HRESULT CFieldPrinter::Init(IInArchive *archive)
222 RINOK(archive->GetNumberOfProperties(&numProps));
228 RINOK(archive->GetPropertyInfo(i, &name, &propID, &vt));
310 RINOK(arc.Archive->GetProperty(index, fieldInfo.PropID, &prop));
321 RINOK(IsArchiveItemFolder(arc.Archive, index, isFolder));
400 bool GetUInt64Value(IInArchive *archive, UInt32 index, PROPID propID, UInt64 &value)
403 if (archive->GetProperty(index, propID, &prop) != S_OK)
512 IInArchive *archive = arc.Archive; local
565 IInArchive *archive = arc.Archive; local
    [all...]
makefile 117 $(AR_COMMON_OBJS): ../../Archive/Common/$(*B).cpp
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 52 class Archive;
227 /// addArchive - Add an Archive to the execution engine.
229 /// This method is only supported by MCJIT. MCJIT will use the archive to
231 /// in the Archive the contained object file will be extracted (in memory)
234 /// MCJIT will take ownership of the Archive.
235 virtual void addArchive(object::Archive *A) {
  /external/chromium_org/native_client_sdk/src/build_tools/
build_sdk.py 736 archive = manifest_util.Archive(manifest_util.GetHostOS())
737 archive.url = archive_url
738 archive.size = archive_size
739 archive.checksum = archive_sha1
750 bundle.archives = [archive]
756 buildbot_common.BuildStep('Archive %s' % name)
761 buildbot_common.Archive(tarname, bucket_path, tarfile_dir)
763 # generate "manifest snippet" for this archive.
773 buildbot_common.Archive(tarname + '.json', bucket_path, OUT_DIR
    [all...]
manifest_util.py 21 # Valid values for the archive.host_os field
62 '''Download the archive data from from-stream and generate sha1 and
75 A tuple (sha1, size) where sha1 is a sha1-hash for the archive data and
76 size is the size of the archive data in bytes.'''
105 class Archive(dict):
106 """A placeholder for sdk archive information. We derive Archive from
110 """ Create a new archive for the given host-os name. """
111 super(Archive, self).__init__()
115 """Update the content of the archive by copying values from the give
    [all...]
buildbot_common.py 194 def Archive(filename, bucket_path, cwd=None, step_link=True):
  /external/deqp/framework/opengl/
gluTexture.cpp 214 Texture2D* Texture2D::create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const char* const* levelFileNames)
227 tcu::ImageIO::loadPNG(level, archive, levelFileNames[0]);
244 tcu::ImageIO::loadPNG(level, archive, levelFileNames[levelNdx]);
267 tcu::ImageIO::loadPKM(levels[ndx], archive, levelFileNames[ndx]);
275 Texture2D* Texture2D::create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const std::vector<std::string>& filenames)
283 return Texture2D::create(context, contextInfo, archive, numLevels, &charPtrs[0]);
421 TextureCube* TextureCube::create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const char* const* filenames
    [all...]
  /external/deqp/modules/internal/
ditImageCompareTests.cpp 43 static void loadImageRGBA8 (tcu::TextureLevel& dst, const tcu::Archive& archive, const char* path)
46 tcu::ImageIO::loadImage(tmp, archive, path);
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 40 #include "llvm/Object/Archive.h"
850 static void DumpArchive(const Archive *a) {
851 for (Archive::child_iterator i = a->child_begin(), e = a->child_end(); i != e;
890 if (Archive *a = dyn_cast<Archive>(binary.get()))

Completed in 890 milliseconds

1 23 4 5