HomeSort by relevance Sort by last modified time
    Searched defs:libraries (Results 1 - 25 of 27) sorted by null

1 2

  /external/e2fsprogs/contrib/python-uuid/
setup.py 6 libraries = ['uuid']) variable
  /sdk/anttasks/src/com/android/ant/
ManifestMergerTask.java 75 List<File> libraries = new ArrayList<File>(); local
79 libraries.add(new File(path));
85 ArrayList<File> allInputs = new ArrayList<File>(libraries.size() + 1);
91 // if enabled: add the libraries
93 allInputs.addAll(libraries);
111 if (mEnabled == false || libraries.size() == 0) {
115 System.out.println("No libraries. Using project manifest only.");
124 System.out.println(String.format("Merging manifests from project and %d libraries.",
125 libraries.size()));
130 libraries.toArray(new File[libraries.size()])) == false)
    [all...]
GetLibraryListTask.java 69 System.out.println("\n------------------\nOrdered libraries:");
73 // Create a Path object of all the libraries in reverse order.
74 // This is important so that compilation of libraries happens
78 List<File> libraries = helper.getLibraries(); local
80 for (int i = libraries.size() - 1 ; i >= 0; i--) {
81 File library = libraries.get(i);
88 System.out.println("No Libraries");
ComputeDependencyTask.java 148 // get the folder for the native libraries. Always $PROJECT/libs
175 // libraries has already been computed so we don't need to compute it again.
182 System.out.println("Ordered libraries:");
184 String[] libraries = libraryFolderPath.list(); local
185 for (int i = libraries.length - 1 ; i >= 0 ; i--) {
186 String libRootPath = libraries[i];
205 // even with no libraries, always setup these so that various tasks in Ant don't complain
DependencyHelper.java 104 // TEMP WORKAROUND: ignore classes.jar as all the output of libraries are
175 // process the libraries in case they depend on other libraries.
192 // use that same order to process the libraries.
222 ArrayList<File> libraries = new ArrayList<File>(); local
246 if (libraries.contains(library) == false) {
252 libraries.add(library);
259 return libraries;
263 * Resolves a given list of libraries, finds out if they depend on other libraries, an
    [all...]
GetTargetTask.java 189 IOptionalLibrary[] libraries = androidTarget.getOptionalLibraries(); local
190 if (libraries != null) {
192 for (IOptionalLibrary library : libraries) {
  /ndk/build/core/
default-build-commands.mk 12 # Return the list of object, static libraries and shared libraries as they
16 # we always put libgcc _after_ all static libraries and _before_ shared
17 # libraries. This ensures that any libgcc function used by the final
19 # symbol references to the same symbols as exported by shared libraries
21 # system libraries (e.g. libc.so and others).
26 # $2: static libraries
27 # $3: whole static libraries
28 # $4: shared libraries
30 TARGET-get-linker-objects-and-libraries =
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CustomViewFinder.java 199 final List<IProject> libraries = state != null local
226 if (mProject == matchProject || libraries.contains(matchProject)) {
233 if (mProject == matchProject || libraries.contains(matchProject)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectResources.java 43 *<li>configured resources contain the resources coming from the libraries.</li>
90 // if the project contains libraries, we need to add the libraries resources here
95 List<IProject> libraries = state.getFullLibraryProjects(); local
103 for (int i = libraries.size() - 1 ; i >= 0 ; i--) {
104 IProject library = libraries.get(i);
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/xml/
AndroidManifestParserTest.java 141 UsesLibrary[] libraries = mManifestTestApp.getUsesLibraries(); local
143 assertEquals(2, libraries.length);
144 assertEquals(LIBRARY_NAME, libraries[0].getName());
145 assertEquals(Boolean.FALSE, libraries[0].getRequired());
146 assertEquals(LIBRARY_NAME2, libraries[1].getName());
147 assertEquals(Boolean.TRUE, libraries[1].getRequired());
  /system/extras/librank/
librank.c 68 struct library_info **libraries; variable in typeref:struct:library_info
81 if (!strcmp(libraries[i]->name, name))
82 return libraries[i];
86 libraries = realloc(libraries, 2 * libraries_size * sizeof(struct library_info *));
87 if (!libraries) {
88 fprintf(stderr, "Couldn't resize libraries array: %s\n", strerror(errno));
113 libraries[libraries_count++] = library;
215 libraries = malloc(INIT_LIBRARIES * sizeof(struct library_info *));
271 qsort(libraries, libraries_count, sizeof(libraries[0]), &licmp)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 217 // list of res folder (main project + maybe libraries)
231 // then libraries
374 // check if we found native libraries in the external library. This
380 "Native libraries detected in '%1$s'. See console for more information.",
386 "The library '%1$s' contains native libraries that will not run on the device.",
390 consoleMsgs.add("Additionally some of those libraries will interfer with the installation of the application because of their location in lib/");
391 consoleMsgs.add("lib/ is reserved for NDK libraries.");
394 consoleMsgs.add("The following libraries were found:");
426 // now write the native libraries.
435 // write the native libraries for the library projects
488 IOptionalLibrary[] libraries = target.getOptionalLibraries(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ProjectHelper.java 892 List<IProject> libraries = projectState.getFullLibraryProjects(); local
950 List<IProject> libraries = projectState.getFullLibraryProjects(); local
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
SdkManager.java 67 public final static String ADDON_LIBRARIES = "libraries"; //$NON-NLS-1$
778 // get the optional libraries
785 // split in the string into the libraries name
786 String[] libraries = librariesValue.split(";"); //$NON-NLS-1$ local
787 if (libraries.length > 0) {
789 for (String libName : libraries) {
    [all...]
  /build/core/
definitions.mk 445 define normalize-libraries
451 define normalize-host-libraries
452 $(call normalize-libraries,$(1))
455 define normalize-target-libraries
456 $(call normalize-libraries,$(1))
    [all...]
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
LintDriver.java 665 List<Project> libraries = project.getDirectLibraries(); local
666 for (Project library : libraries) {
895 List<File> libraries = project.getJavaLibraries(); local
    [all...]
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
Main.java 831 // display the optional libraries.
832 IOptionalLibrary[] libraries = target.getOptionalLibraries(); local
833 if (libraries != null) {
834 mSdkLog.printf(" Libraries:\n");
835 for (IOptionalLibrary library : libraries) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar 
org.eclipse.jdt.launching_3.5.100.v20100526.jar 
org.eclipse.ant.core_3.2.200.v20100427.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 

Completed in 382 milliseconds

1 2