HomeSort by relevance Sort by last modified time
    Searched defs:archives (Results 1 - 12 of 12) sorted by null

  /sdk/sdkmanager/libs/sdkuilib/tests/com/android/sdkuilib/internal/repository/
UpdaterDataTest.java 58 ArrayList<ArchiveInfo> archives = new ArrayList<ArchiveInfo>(); local
66 archives.add(ai1);
67 archives.add(ai2);
69 m._installArchives(archives);
81 ArrayList<ArchiveInfo> archives = new ArrayList<ArchiveInfo>(); local
89 archives.add(ai2);
90 archives.add(ai1);
92 m._installArchives(archives);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman1/
RemotePackagesPage.java 258 * When checking a package, only its compatible archives are checked.
277 // When selecting, we want to only select compatible archives
307 // Get the list of selected archives
308 ArrayList<Archive> archives = new ArrayList<Archive>(); local
311 archives.add((Archive) element);
320 // are compatible archives
321 for (Archive a : archives) {
325 // compatible archives children are selected. In practice we'll rarely
335 ArrayList<Archive> archives = new ArrayList<Archive>(); local
338 archives.add((Archive) element)
    [all...]
RepoSourcesAdapter.java 256 * Returns the list of archives for the given package, eventually filtering it
257 * to only show the compatible archives.
260 Archive[] archives = pkg.getArchives(); local
262 for (Archive archive : archives) {
264 // if we only want the compatible archives, then we just take the first
265 // one. it's unlikely there are 2 compatible archives for the same
273 return archives;
LocalPackagesPage.java 249 Archive[] archives = p.getArchives(); local
250 if (archives.length == 1 && archives[0] != null && archives[0].isLocal()) {
251 Archive archive = archives[0];
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
ExtraPackage.java 632 Archive[] archives = getArchives(); local
633 if (archives.length == 1 && archives[0].isLocal()) {
634 File path = new File(archives[0].getLocalOsPath());
SdkRepoSource.java 271 // - an <archives> element with one or more <archive> elements inside
283 Node archives = findChild(element, null, prefix, RepoConstants.NODE_ARCHIVES); local
285 if (revision == null || archives == null) {
323 while ((archive = findChild(archives,
Package.java 41 * A package has some attributes (revision, description) and a list of archives
163 * classes to override the archives created.
253 * Parses an XML node to process the <archives> element.
257 ArrayList<Archive> archives = new ArrayList<Archive>(); local
268 archives.add(parseArchive(child));
273 return archives.toArray(new Archive[archives.size()]);
277 * Parses one <archive> element from an <archives> container.
358 * Returns the archives defined in this package.
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
SdkUpdaterLogic.java 78 List<ArchiveInfo> archives = new ArrayList<ArchiveInfo>(); local
85 // If we do not have a specific list of archives to install (that is the user
102 archives,
114 archives,
120 return archives;
125 * and adds them to the list of archives to install.
132 * @param archives The in-out list of archives to install. Typically the
133 * list is not empty at first as it should contain any archives that is
142 Collection<ArchiveInfo> archives,
    [all...]
UpdaterData.java 410 * @param archives The archives to install. Incompatible ones will be skipped.
412 * @return A list of archives that have been installed. Can be empty but not null.
415 protected List<Archive> installArchives(final List<ArchiveInfo> archives, final int flags) {
425 // sort all archives based on their dependency level.
426 Collections.sort(archives, new InstallOrderComparator());
428 mTaskFactory.start("Installing Archives", new ITask() {
432 monitor.setProgressMax(1 + archives.size() * progressPerArchive);
433 monitor.setDescription("Preparing to install archives");
440 // Mark all current local archives as already installed.
736 List<ArchiveInfo> archives = ul.computeUpdates( local
781 List<ArchiveInfo> archives = ul.computeUpdates( local
806 List<ArchiveInfo> archives = getRemoteArchives_NoGUI(includeObsoletes); local
853 List<ArchiveInfo> archives = getRemoteArchives_NoGUI(includeObsoletes); local
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
PackagesPage.java 108 TOGGLE_SHOW_ARCHIVES (SWT.CHECK, "Show Archives Details"),
755 * When checking a package, only its compatible archives are checked.
763 // When selecting, we want to only select compatible archives and expand the super nodes.
1018 ArrayList<Archive> archives = new ArrayList<Archive>(); local
1140 final ArrayList<Archive> archives = new ArrayList<Archive>(); local
1650 Archive[] archives = ((PkgItem) parentElement).getArchives(); local
    [all...]
  /ndk/build/core/
definitions.mk 240 # Function : link-whole-archives
243 # Usage : $(call link-whole-archives,<libraries>)
250 link-whole-archives = $(if $(strip $1),$(call link-whole-archive-flags,$1))
    [all...]
  /external/elfutils/src/
ld.h 31 /* Methods for handling archives. */
96 /* How to extract elements from archives. */
713 /* List of all archives participating, in this order. */
714 struct usedfiles *archives; member in struct:ld_state
781 /* How to extract elements from archives. */

Completed in 5069 milliseconds