HomeSort by relevance Sort by last modified time
    Searched full:archive (Results 1 - 25 of 3263) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/archive-patcher/
README.version 1 URL: https://github.com/andrewhayden/archive-patcher/archive/8ffe39d965862e3659c68208efa9147adcaea3bb.zip
  /development/sdk/
usbdriver_source.properties 2 Archive.HostOs=WINDOWS
  /external/llvm/bindings/ocaml/llvm/
META.llvm.in 4 archive(byte) = "llvm.cma"
5 archive(native) = "llvm.cmxa"
12 archive(byte) = "llvm_analysis.cma"
13 archive(native) = "llvm_analysis.cmxa"
20 archive(byte) = "llvm_bitreader.cma"
21 archive(native) = "llvm_bitreader.cmxa"
28 archive(byte) = "llvm_bitwriter.cma"
29 archive(native) = "llvm_bitwriter.cmxa"
36 archive(byte) = "llvm_executionengine.cma"
37 archive(native) = "llvm_executionengine.cmxa
    [all...]
  /external/llvm/test/tools/llvm-readobj/
macho-universal-x86_64.i386.test 7 RUN: llvm-readobj -h %p/Inputs/macho-universal-archive.x86_64.i386 \
8 RUN: | FileCheck %s -check-prefix MULTIHEADER-ARCHIVE
10 RUN: llvm-readobj -sections %p/Inputs/macho-universal-archive.x86_64.i386 \
11 RUN: | FileCheck %s -check-prefix MULTISECTIONS-ARCHIVE
149 MULTIHEADER-ARCHIVE: File: hello.o
150 MULTIHEADER-ARCHIVE: Format: Mach-O 64-bit x86-64
151 MULTIHEADER-ARCHIVE: Arch: x86_64
152 MULTIHEADER-ARCHIVE: AddressSize: 64bit
153 MULTIHEADER-ARCHIVE: MachHeader {
154 MULTIHEADER-ARCHIVE: Magic: Magic64 (0xFEEDFACF
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
2 <http://archive.eclipse.org/eclipse/downloads/drops/R-3.5-200906111540/index.php#SWT>
  /prebuilts/tools/darwin-x86/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
2 <http://archive.eclipse.org/eclipse/downloads/drops/R-3.5-200906111540/index.php#SWT>
  /prebuilts/tools/darwin-x86_64/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
2 <http://archive.eclipse.org/eclipse/downloads/drops/R-3.5-200906111540/index.php#SWT>
  /prebuilts/tools/linux-x86/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
2 <http://archive.eclipse.org/eclipse/downloads/drops/R-3.5-200906111540/index.php#SWT>
  /prebuilts/tools/linux-x86_64/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
2 <http://archive.eclipse.org/eclipse/downloads/drops/R-3.5-200906111540/index.php#SWT>
  /prebuilts/tools/windows/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
2 <http://archive.eclipse.org/eclipse/downloads/drops/R-3.5-200906111540/index.php#SWT>
  /prebuilts/tools/windows-x86_64/swt/
PREBUILT 1 The original archive containing the objects in this prebuilt directory can be downloaded from
2 <http://archive.eclipse.org/eclipse/downloads/drops/R-3.5-200906111540/index.php#SWT>
  /toolchain/binutils/binutils-2.25/binutils/
bfdtest1.c 34 bfd *archive; local
38 die ("usage: bfdtest1 <archive>");
40 archive = bfd_openr (argv[1], NULL);
41 if (archive == NULL)
42 die ("no such archive");
44 if (!bfd_check_format (archive, bfd_archive))
46 bfd_close (archive);
50 for (last = bfd_openr_next_archived_file (archive, NULL);
54 next = bfd_openr_next_archived_file (archive, last);
58 for (last = bfd_openr_next_archived_file (archive, NULL)
    [all...]
  /external/llvm/test/tools/llvm-objdump/X86/
macho-archive-headers.test 1 RUN: llvm-objdump %p/Inputs/macho-universal-archive.x86_64.i386 -macho -archive-headers -arch all \
3 RUN: llvm-objdump %p/Inputs/macho-universal-archive.x86_64.i386 -macho -archive-headers -arch all -archive-member-offsets \
5 RUN: llvm-objdump %p/Inputs/macho-universal-archive.x86_64.i386 -macho -archive-headers -arch all -non-verbose \
9 CHECK: Archive : {{.*}}/macho-universal-archive.x86_64.i386 (architecture x86_64)
12 CHECK: Archive : {{.*}}/macho-universal-archive.x86_64.i386 (architecture i386
    [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...]
GNUArchiveReader.cpp 44 if (pInput.memArea()->size() < Archive::MAGIC_LEN)
48 pInput.memArea()->request(pInput.fileOffset(), Archive::MAGIC_LEN);
62 return (memcmp(pStr, Archive::MAGIC, Archive::MAGIC_LEN) == 0);
67 return (memcmp(pStr, Archive::THIN_MAGIC, Archive::MAGIC_LEN) == 0);
74 pInput.memArea()->request(pInput.fileOffset(), Archive::MAGIC_LEN);
86 Archive& pArchive) {
87 // bypass the empty archive
88 if (Archive::MAGIC_LEN == pArchive.getARFile().memArea()->size()
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
GNUArchiveReader.h 12 #include "mcld/LD/Archive.h"
17 class Archive;
24 * \brief GNUArchiveReader reads GNU archive files.
32 /// readArchive - read an archive, include the needed members, and build up
34 bool readArchive(const LinkerConfig& pConfig, Archive& pArchive);
49 /// readMemberHeader - read the header of a member in a archive file and then
50 /// return the corresponding archive member (it may be an input object or
51 /// another archive)
52 /// @param pArchiveRoot - the archive root that holds the strtab (extended
54 /// @param pArchiveFile - the archive that contains the needed objec
    [all...]
  /development/libraries/stereocamera/
source.properties 1 ### Android Tool: Source of this archive.
5 Archive.Os=ANY
7 Archive.Arch=ANY
  /prebuilts/go/darwin-x86/src/cmd/pack/
doc.go 13 Pack applies the operation to the archive, using the names as arguments to the operation.
17 c append files (from the file system) to a new archive
18 p print files from the archive
19 r append files (from the file system) to the archive
20 t list files from the archive
21 x extract files from the archive
23 The archive argument to the c command must be non-existent or a
24 valid archive file, which will be cleared before adding new entries. It
25 is an error if the file exists but is not an archive.
28 causes the operation to apply to all files in the archive
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pack/
doc.go 13 Pack applies the operation to the archive, using the names as arguments to the operation.
17 c append files (from the file system) to a new archive
18 p print files from the archive
19 r append files (from the file system) to the archive
20 t list files from the archive
21 x extract files from the archive
23 The archive argument to the c command must be non-existent or a
24 valid archive file, which will be cleared before adding new entries. It
25 is an error if the file exists but is not an archive.
28 causes the operation to apply to all files in the archive
    [all...]
  /external/fio/
README.version 1 URL: https://github.com/axboe/fio/archive/fio-2.1.9.tar.gz
  /external/guava/
README.version 1 URL: https://github.com/google/guava/archive/v14.0.1.tar.gz
  /external/javassist/
README.version 1 URL: https://github.com/jboss-javassist/javassist/archive/rel_3_14_0_ga.tar.gz
  /external/junit/
README.version 1 URL: https://github.com/junit-team/junit/archive/r4.10.tar.gz
  /external/libphonenumber/
README.version 1 URL: https://github.com/googlei18n/libphonenumber/archive/libphonenumber-7.0.2.tar.gz
  /external/lzma/CPP/7zip/UI/GUI/
Extract.rc 9 IDS_UPDATE_NOT_SUPPORTED "Update operations are not supported for this archive."
10 IDS_CANT_OPEN_ARCHIVE "Can not open file '{0}' as archive"
11 IDS_CANT_OPEN_ENCRYPTED_ARCHIVE "Can not open encrypted archive '{0}'. Wrong password?"
12 IDS_UNSUPPORTED_ARCHIVE_TYPE "Unsupported archive type"
44 IDS_EXTRACT_MSG_IS_NOT_ARC "Is not archive"
47 IDS_OPEN_MSG_UNAVAILABLE_START "Unavailable start of archive"
48 IDS_OPEN_MSG_UNCONFIRMED_START "Unconfirmed start of archive"
49 // IDS_OPEN_MSG_ERROR_FLAGS + 5 "Unexpected end of archive"
50 // IDS_OPEN_MSG_ERROR_FLAGS + 6 "There are data after the end of archive"

Completed in 2206 milliseconds

1 2 3 4 5 6 7 8 91011>>