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

1 2 3

  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/
ArchiveTest.java 19 import com.android.sdklib.internal.repository.Archive.Arch;
20 import com.android.sdklib.internal.repository.Archive.Os;
32 Archive a = new Archive(
39 assertEquals("Archive for Windows", a.getShortDescription());
41 a = new Archive(
48 assertEquals("Archive for Linux", a.getShortDescription());
50 a = new Archive(
57 assertEquals("Archive for MacOS X", a.getShortDescription());
59 a = new Archive(
    [all...]
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.
MockEmptyPackage.java 20 import com.android.sdklib.internal.repository.Archive;
23 import com.android.sdklib.internal.repository.Archive.Arch;
24 import com.android.sdklib.internal.repository.Archive.Os;
37 * Creates a new {@link MockEmptyPackage} with a local archive.
57 * Creates a new {@link MockEmptyPackage} with a local archive.
78 * Creates a new {@link MockEmptyPackage} with a local archive.
100 protected Archive[] initializeArchives(
105 return new Archive[] {
106 new Archive(this, props, archiveOs, archiveArch, archiveOsPath) {
114 public Archive getLocalArchive()
    [all...]
ArchiveInstallerTest.java 19 import com.android.sdklib.internal.repository.Archive.Arch;
20 import com.android.sdklib.internal.repository.Archive.Os;
47 private Map<Archive, File> mDownloadMap = new HashMap<Archive, File>();
53 public void setDownloadResponse(Archive archive, File response) {
54 mDownloadMap.put(archive, response);
59 Archive archive,
63 File file = mDownloadMap.get(archive);
    [all...]
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.
  /external/webkit/Source/WebCore/loader/archive/
ArchiveResourceCollection.h 32 #include "Archive.h"
48 void addAllResources(Archive*);
51 PassRefPtr<Archive> popSubframeArchive(const String& frameName);
55 HashMap<String, RefPtr<Archive> > m_subframes;
Archive.h 41 class Archive : public RefCounted<Archive> {
45 const Vector<RefPtr<Archive> >& subframeArchives() const { return m_subframeArchives; }
48 // These methods are meant for subclasses for different archive types to add resources in to the archive,
52 void addSubframeArchive(PassRefPtr<Archive> subframeArchive) { m_subframeArchives.append(subframeArchive); }
57 Vector<RefPtr<Archive> > m_subframeArchives;
62 #endif // 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...]
ArchiveFactory.h 32 #include "Archive.h"
44 static PassRefPtr<Archive> create(SharedBuffer* data, const String& mimeType);
ArchiveFactory.cpp 47 typedef PassRefPtr<Archive> RawDataCreationFunction(SharedBuffer*);
50 // The create functions in the archive classes return PassRefPtr to concrete subclasses
51 // of Archive. This adaptor makes the functions have a uniform return type.
52 template <typename ArchiveClass> static PassRefPtr<Archive> archiveFactoryCreate(SharedBuffer* buffer)
80 PassRefPtr<Archive> ArchiveFactory::create(SharedBuffer* data, const String& mimeType)
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
ArchiveReplacement.java 19 import com.android.sdklib.internal.repository.Archive;
24 * Represents an archive that we want to install and the archive that it is
29 private final Archive mNewArchive;
30 private final Archive mReplaced;
34 * currently installed {@code replaced} archive.
39 * @param newArchive A "new archive" to be installed. This is always an archive
41 * @param replaced An optional local archive that the new one will replace.
42 * Can be null if this archive does not replace anything.
    [all...]
BrokenPackage.java 20 import com.android.sdklib.internal.repository.Archive.Arch;
21 import com.android.sdklib.internal.repository.Archive.Os;
53 * By design, this creates a package with one and only one archive.
178 public boolean preInstallHook(Archive archive,
183 return super.preInstallHook(archive, monitor, osSdkRoot, installFolder);
192 public void postInstallHook(Archive archive, ITaskMonitor monitor, File installFolder) {
194 super.postInstallHook(archive, monitor, installFolder);
Package.java 23 import com.android.sdklib.internal.repository.Archive.Arch;
24 import com.android.sdklib.internal.repository.Archive.Os;
57 private final Archive[] mArchives;
103 * Manually create a new package with one archive and the given attributes.
105 * one archive which URL is the actual target location.
109 * By design, this creates a package with one and only one archive.
170 protected Archive[] initializeArchives(
175 return new Archive[] {
176 new Archive(this,
256 private Archive[] parseArchives(Node archivesNode) {
    [all...]
  /external/webkit/Source/WebCore/loader/archive/android/
WebArchiveAndroid.h 29 #include "Archive.h"
36 class WebArchiveAndroid : public Archive {
40 Vector<PassRefPtr<Archive> >& subframeArchives);
50 Vector<PassRefPtr<Archive> >& subframeArchives);
  /development/libraries/stereocamera/
source.properties 1 ### Android Tool: Source of this archive.
5 Archive.Os=ANY
7 Archive.Arch=ANY
  /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.
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/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/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/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/
Makefile 13 PARALLEL_DIRS := VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
  /sdk/sdkmanager/libs/sdkuilib/tests/com/android/sdkuilib/internal/repository/
UpdaterDataTest.java 19 import com.android.sdklib.internal.repository.Archive;
60 Archive a1 = new MockEmptyPackage("a1").getLocalArchive();
63 Archive a2 = new MockEmptyPackage("a2").getLocalArchive();
83 Archive a1 = new MockEmptyPackage("a1").getLocalArchive();
86 Archive a2 = new MockEmptyPackage("a2").getLocalArchive();
UpdaterLogicTest.java 22 import com.android.sdklib.internal.repository.Archive;
111 ArrayList<Archive> selected = new ArrayList<Archive>();
120 // a2 now depends on a "fake" archive info with no newArchive that wraps the missing
129 Archive p2_archive = p2.getArchives()[0];
153 ArrayList<Archive> selected = new ArrayList<Archive>();
168 // a2 now depends on a "fake" archive info with no newArchive that wraps the missing
177 Archive p2_archive = p2.getArchives()[0];
202 ArrayList<Archive> selected = new ArrayList<Archive>();
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
SdkUpdaterLogic.java 21 import com.android.sdklib.internal.repository.Archive;
73 Collection<Archive> selectedArchives,
100 for (Archive a : selectedArchives) {
232 for (Archive a : p.getArchives()) {
248 for (Archive a : suggestedDoc.getArchives()) {
266 * The local {@link ArchiveInfo} are guaranteed to have one non-null archive
274 // Only accept packages that have one compatible archive.
275 // Local package should have 1 and only 1 compatible archive anyway.
276 for (Archive a : p.getArchives()) {
278 // We create an "installed" archive info to wrap the local package.
    [all...]
ArchiveInfo.java 19 import com.android.sdklib.internal.repository.Archive;
26 * Represents an archive that we want to install.
30 * A new archive is always a remote archive that needs to be downloaded and then
32 * (new or local) archive, which means the dependent archive needs to be successfully
33 * installed first. Finally this archive can also be a dependency for another one.
42 * @see ArchiveInfo#ArchiveInfo(Archive, Archive, ArchiveInfo[])
53 * currently installed {@code replaced} archive.
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
PackageLoader.java 19 import com.android.sdklib.internal.repository.Archive;
239 List<Archive> mArchivesToInstall = new ArrayList<Archive>();
255 Archive[] a = pkg.getArchives();
256 // an installed package should have one local compatible archive
266 for (Archive archive : pkg.getArchives()) {
267 if (archive.isCompatible()) {
268 mArchivesToInstall.add(archive);
300 private void installArchives(final List<Archive> archivesToInstall)
    [all...]

Completed in 513 milliseconds

1 2 3