/external/llvm/lib/Linker/ |
LinkArchives.cpp | 18 #include "llvm/Bitcode/Archive.h" 43 // archive, such f2c'd programs. 85 /// LinkInArchive - opens an archive library and link in all objects which 89 /// Filename - The pathname of the archive. 96 // Make sure this is an archive file we're dealing with 98 return error("File '" + Filename.str() + "' is not an archive."); 100 // Open the archive file 101 verbose("Linking archive file '" + Filename.str() + "'"); 105 // no reason to link in any archive files. 115 std::auto_ptr<Archive> AutoArch [all...] |
/external/elfutils/po/ |
ChangeLog | 7 * Moved to CVS archive.
|
/external/llvm/docs/CommandGuide/ |
llvm-ar.pod | 9 B<llvm-ar> [-]{dmpqrtx}[Rabfikouz] [relpos] [count] <archive> [files...] 16 to produce archive libraries by LLVM bitcode that can be linked into an 17 LLVM program. However, the archive can contain any kind of file. By default, 20 of the archive. 22 The B<llvm-ar> command can be used to I<read> both SVR4 and BSD style archive 26 archive appropriate for LLVM. The first departure is that B<llvm-ar> only 33 file names will make the archive readable by other C<ar> implementations 35 SVR4 or BSD style archive is used with the C<r> (replace) or C<q> (quick 36 update) operations, the archive will be reconstructed in LLVM format. This 47 Since B<llvm-ar> is intended to archive bitcode files, the symbol tabl [all...] |
llvm-ranlib.pod | 5 llvm-ranlib - Generate index for LLVM archive 9 B<llvm-ranlib> [--version] [-help] <archive-file> 14 adds or updates the symbol table in an LLVM archive file. Note that using the 25 =item F<archive-file> 27 Specifies the archive-file to which the symbol table is added or updated.
|
/external/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...] |
/prebuilt/common/groovy/ |
PREBUILT | 2 using the source archive
|
/prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/share/man/man1/ |
arm-linux-androideabi-ar.1 | 150 the original individual files (called \fImembers\fR of the archive). 153 group are preserved in the archive, and can be restored on 159 with archive formats maintained with other tools. If it exists, the 168 object modules in the archive when you specify the modifier \fBs\fR. 169 Once created, this index is updated in the archive whenever \fBar\fR 171 An archive with such an index speeds up linking to the library, and 173 their placement in the archive. 176 table. If an archive lacks the table, another form of \fBar\fR called 179 \&\s-1GNU\s0 \fBar\fR can optionally create a \fIthin\fR archive, 181 of the member files of the archives. Such an archive is usefu [all...] |
/prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/share/man/man1/ |
arm-linux-androideabi-ar.1 | 150 the original individual files (called \fImembers\fR of the archive). 153 group are preserved in the archive, and can be restored on 159 with archive formats maintained with other tools. If it exists, the 168 object modules in the archive when you specify the modifier \fBs\fR. 169 Once created, this index is updated in the archive whenever \fBar\fR 171 An archive with such an index speeds up linking to the library, and 173 their placement in the archive. 176 table. If an archive lacks the table, another form of \fBar\fR called 179 \&\s-1GNU\s0 \fBar\fR can optionally create a \fIthin\fR archive, 181 of the member files of the archives. Such an archive is usefu [all...] |
/development/scripts/ |
divide_and_compress.py | 27 child directory's contents. In this way the files within an archive are ordered 57 help=('Where to put the archive files, this should not be' 60 help=('Maximum size of archive files. A number followed by ' 67 help=('Whether the archive files should be compressed, or ' 128 archive file. 147 output directory that maps from file to archive. 156 """Removes the last item in the archive. 158 This removes the last item in the archive by reading the items out of the 159 archive, adding them to a new archive, deleting the old archive, an [all...] |
/external/chromium/sdch/open-vcdiff/packages/ |
deb.sh | 33 # Find the tar archive built by "make dist" 34 archive="${PACKAGE}-${VERSION}" 36 if [ -z "${archive}" ]; then 52 ln -s "${topdir}/${archive}.tar.gz" "${LIB}${archive}.orig.tar.gz" 54 ln -s "${topdir}/${archive}.tar.gz" "${LIB}${archive_with_underscore}.orig.tar.gz" 55 tar zfx "${LIB}${archive}.orig.tar.gz" 56 [ -n "${LIB}" ] && mv "${archive}" "${LIB}${archive}" 57 cd "${LIB}${archive}" [all...] |
/external/elfutils/tests/ |
arextract.c | 40 /* Open the archive. */ 60 /* If it is no archive punt. */ 63 printf ("`%s' is no archive\n", argv[1]); 67 /* Get the elements of the archive one after the other. */ 83 /* Get the offset of the file in the archive. */ 88 Failed to get base address for the archive element: %s\n", 123 puts ("Reading archive member failed."); 141 /* Get next archive element. */ 152 archive. */ 153 printf ("File `%s' not found in archive\n", argv[2]) [all...] |
/external/webkit/Source/WebCore/loader/archive/ |
ArchiveResourceCollection.cpp | 38 void ArchiveResourceCollection::addAllResources(Archive* archive) 40 ASSERT(archive); 41 if (!archive) 44 const Vector<RefPtr<ArchiveResource> >& subresources = archive->subresources(); 51 const Vector<RefPtr<Archive> >& subframes = archive->subframeArchives(); 52 Vector<RefPtr<Archive> >::const_iterator iFrame = subframes.begin(); 53 Vector<RefPtr<Archive> >::const_iterator endFrame = subframes.end(); 84 PassRefPtr<Archive> ArchiveResourceCollection::popSubframeArchive(const String& frameName [all...] |
/external/webkit/Source/WebKit/mac/WebView/ |
WebArchive.h | 56 @param mainResource The main resource of the archive. 57 @param subresources The subresources of the archive (can be nil). 58 @param subframeArchives The archives representing the subframes of the archive (can be nil). 66 @param data The data representing the archive. This can be obtained using WebArchive's data method. 73 @result The main resource of the archive. 79 @result The subresource of the archive (can be nil). 85 @result The archives representing the subframes of the archive (can be nil). 91 @result The data representation of the archive. 92 @discussion The data returned by this method can be used to save a web archive to a file or to place a web archive on the pasteboar [all...] |
/sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/testdata/ |
repository_sample_1.xml | 48 <sdk:archive os="any">
52 </sdk:archive>
63 <sdk:archive os="any">
67 </sdk:archive>
80 <sdk:archive os="any">
84 </sdk:archive>
106 <sdk:archive os="windows">
111 </sdk:archive>
112 <sdk:archive os="macosx" arch="any">
116 </sdk:archive>
[all...] |
/prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/man/man1/ |
arm-eabi-ar.1 | 142 the original individual files (called \fImembers\fR of the archive). 145 group are preserved in the archive, and can be restored on 151 with archive formats maintained with other tools. If it exists, the 160 object modules in the archive when you specify the modifier \fBs\fR. 161 Once created, this index is updated in the archive whenever \fBar\fR 163 An archive with such an index speeds up linking to the library, and 165 their placement in the archive. 168 table. If an archive lacks the table, another form of \fBar\fR called 171 \&\s-1GNU\s0 \fBar\fR can optionally create a \fIthin\fR archive, 173 of the member files of the archives. Such an archive is usefu [all...] |
/prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/man/man1/ |
arm-eabi-ar.1 | 142 the original individual files (called \fImembers\fR of the archive). 145 group are preserved in the archive, and can be restored on 151 with archive formats maintained with other tools. If it exists, the 160 object modules in the archive when you specify the modifier \fBs\fR. 161 Once created, this index is updated in the archive whenever \fBar\fR 163 An archive with such an index speeds up linking to the library, and 165 their placement in the archive. 168 table. If an archive lacks the table, another form of \fBar\fR called 171 \&\s-1GNU\s0 \fBar\fR can optionally create a \fIthin\fR archive, 173 of the member files of the archives. Such an archive is usefu [all...] |
/prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/man/man1/ |
arm-eabi-ar.1 | 142 the original individual files (called \fImembers\fR of the archive). 145 group are preserved in the archive, and can be restored on 151 with archive formats maintained with other tools. If it exists, the 160 object modules in the archive when you specify the modifier \fBs\fR. 161 Once created, this index is updated in the archive whenever \fBar\fR 163 An archive with such an index speeds up linking to the library, and 165 their placement in the archive. 168 table. If an archive lacks the table, another form of \fBar\fR called 171 \&\s-1GNU\s0 \fBar\fR can optionally create a \fIthin\fR archive, 173 of the member files of the archives. Such an archive is usefu [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/man/man1/ |
arm-eabi-ar.1 | 142 the original individual files (called \fImembers\fR of the archive). 145 group are preserved in the archive, and can be restored on 151 with archive formats maintained with other tools. If it exists, the 160 object modules in the archive when you specify the modifier \fBs\fR. 161 Once created, this index is updated in the archive whenever \fBar\fR 163 An archive with such an index speeds up linking to the library, and 165 their placement in the archive. 168 table. If an archive lacks the table, another form of \fBar\fR called 171 \&\s-1GNU\s0 \fBar\fR can optionally create a \fIthin\fR archive, 173 of the member files of the archives. Such an archive is usefu [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/man/man1/ |
arm-eabi-ar.1 | 142 the original individual files (called \fImembers\fR of the archive). 145 group are preserved in the archive, and can be restored on 151 with archive formats maintained with other tools. If it exists, the 160 object modules in the archive when you specify the modifier \fBs\fR. 161 Once created, this index is updated in the archive whenever \fBar\fR 163 An archive with such an index speeds up linking to the library, and 165 their placement in the archive. 168 table. If an archive lacks the table, another form of \fBar\fR called 171 \&\s-1GNU\s0 \fBar\fR can optionally create a \fIthin\fR archive, 173 of the member files of the archives. Such an archive is usefu [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/man/man1/ |
arm-eabi-ar.1 | 142 the original individual files (called \fImembers\fR of the archive). 145 group are preserved in the archive, and can be restored on 151 with archive formats maintained with other tools. If it exists, the 160 object modules in the archive when you specify the modifier \fBs\fR. 161 Once created, this index is updated in the archive whenever \fBar\fR 163 An archive with such an index speeds up linking to the library, and 165 their placement in the archive. 168 table. If an archive lacks the table, another form of \fBar\fR called 171 \&\s-1GNU\s0 \fBar\fR can optionally create a \fIthin\fR archive, 173 of the member files of the archives. Such an archive is usefu [all...] |
/build/tools/zipalign/ |
README.txt | 1 zipalign -- zip archive alignment tool 10 infile.zip is an existing Zip archive 27 Alterations to the archive, such as renaming or deleting entries, will 29 entries. Files added to an "aligned" archive will not be aligned. 34 You can use the "-c" flag to test whether a zip archive is properly aligned.
|
/sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/ |
MockPlatformToolPackage.java | 19 import com.android.sdklib.internal.repository.Archive.Arch;
20 import com.android.sdklib.internal.repository.Archive.Os;
25 * By design, this package contains one and only one archive.
33 * By design, this creates a package with one and only one archive.
43 * By design, this creates a package with one and only one archive.
|
MockToolPackage.java | 19 import com.android.sdklib.internal.repository.Archive.Arch;
20 import com.android.sdklib.internal.repository.Archive.Os;
27 * By design, this package contains one and only one archive.
35 * By design, this creates a package with one and only one archive.
45 * By design, this creates a package with one and only one archive.
|
/dalvik/vm/ |
JarFile.cpp | 21 * just wants a zip archive with "classes.dex" inside. In Android the 88 ZipArchive archive; local 106 /* Try to find the dex file inside of the archive. 108 if (dexZipOpenArchive(fileName, &archive) != 0) { 111 entry = dexZipFindEntry(&archive, kDexInJarName); 125 dexGetZipEntryModTime(&archive, entry), 126 dexGetZipEntryCrc32(&archive, entry), 172 dexZipCloseArchive(&archive); 181 * Open a Jar file. It's okay if it's just a Zip archive without all of 196 ZipArchive archive; local [all...] |
/external/collada/include/dae/ |
daeZAEUncompressHandler.h | 20 * The whole ZAE archive gets extracted because it is not specified 21 * how an URL pointing inside a ZAE archive should look like. 22 * By extracting the whole archive we can use the 'file' scheme. 36 // path to root file in archive this object handles. 39 // tmp dir where this archive is extracted. 53 // Buffer size for extracting files from zip archive. 99 * Iterates over zip archive and extracts each file. 104 * Extracts the current file inside zip archive. 114 * Checks if an extracted file is a zip archive itself and extracts it.
|