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

1 2 3 4 5 6 7 8

  /frameworks/base/cmds/uiautomator/cmds/uiautomator/
uiautomator 66 jars=
72 if [ -z "${1}" ] && [ -z "${jars}" ]; then
82 # we are done with jars, starting with parameters now
96 jars=${jars}:${jar}
117 if [ -n "${jars}" ]; then
118 args="${args} -e jars ${jars}"
121 CLASSPATH=${CLASSPATH}:${jars}
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
build.properties 25 jars.compile.order = performanceui.jar
  /build/core/tasks/
boot_jars_package_check.mk 16 # Rules to check if classes in the boot jars are from the whitelisted packages.
23 intermediates := $(call intermediates-dir-for, PACKAGING, boot-jars-package-check,,COMMON)
38 .PHONY: check-boot-jars
39 check-boot-jars : $(stamp)
41 # Run check-boot-jars by default
42 droidcore : check-boot-jars
  /external/jetty/src/java/org/eclipse/jetty/webapp/
MetaInfConfiguration.java 35 * Scan META-INF of all jars in WEB-INF/lib to find:
53 //Merge all container and webinf lib jars to look for META-INF resources
55 ArrayList<Resource> jars = new ArrayList<Resource>(); local
56 jars.addAll(context.getMetaData().getOrderedContainerJars());
57 jars.addAll(context.getMetaData().getWebInfJars());
75 //Scan jars for META-INF information
76 if (jars != null)
78 URI[] uris = new URI[jars.size()];
80 for (Resource r : jars)
Ordering.java 34 * Ordering options for jars in WEB-INF lib.
62 * Order the list of jars in WEB-INF/lib according to the ordering declarations in the descriptors
66 public List<Resource> order(List<Resource> jars)
69 List<Resource> tmp = new ArrayList<Resource>(jars);
146 * Order the list of jars according to the ordering declared
151 public List<Resource> order(List<Resource> jars)
154 for (Resource jar:jars)
WebInfConfiguration.java 74 //Apply an initial ordering to the jars which governs which will be scanned for META-INF
81 //Apply ordering to container jars - if no pattern is specified, we won't
82 //match any of the container jars
118 //Apply ordering to WEB-INF/lib jars
127 List<Resource> jars = findJars(context); local
131 if (jars != null)
133 uris = new URI[jars.size()];
135 for (Resource r: jars)
140 webInfJarNameMatcher.match(webInfPattern, uris, true); //null is inclusive, no pattern == all jars match
165 // Look for jars
    [all...]
  /external/javassist/src/main/javassist/
ClassPoolTail.java 76 JarClassPath[] jars; field in class:JarDirClassPath
87 jars = new JarClassPath[files.length];
89 jars[i] = new JarClassPath(files[i].getPath());
94 if (jars != null)
95 for (int i = 0; i < jars.length; i++) {
96 InputStream is = jars[i].openClassfile(classname);
105 if (jars != null)
106 for (int i = 0; i < jars.length; i++) {
107 URL url = jars[i].find(classname);
116 if (jars != null
    [all...]
  /external/vogar/src/vogar/android/
HostRuntime.java 86 List<File> jars = new ArrayList<File>(); local
88 jars.add(new File(buildRoot, "out/host/linux-x86/framework/" + jar + ".jar"));
90 Classpath bootClasspath = Classpath.of(jars);
  /sdk/eclipse/scripts/
build_adt.sh 37 # 2. Copy dependent jars into the libs folder of each plugin
38 echo Copying jars to be embedded inside the ADT plugins
  /external/hamcrest/integration/
Android.mk 19 # TODO: add host and hostdex jars
  /external/hamcrest/library/
Android.mk 19 # TODO: add host and hostdex jars
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-launcher.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.0/
ant-launcher-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.2/
ant-launcher-1.8.2.jar 
  /frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
RunTestCommand.java 42 private static final String JARS_PARAM = "jars";
188 * Add test classes from jars passed on the command line. Use this if nothing was explicitly
192 String jars = mParams.getString(JARS_PARAM); local
193 if (jars == null) return;
195 String[] jarFileNames = jars.split(JARS_SEPARATOR);
233 + " <class spec>: <JARS> < -c <CLASSES> | -e class <CLASSES> >\n"
234 + " <JARS>: a list of jar files containing test classes and dependencies. If\n"
241 + " all the tests in provided jars will be run automatically.\n"
  /frameworks/base/tools/aapt/
Package.cpp 431 const android::Vector<const char*>& jars = bundle->getJarFiles(); local
433 size_t N = jars.size();
436 err = jar.open(jars[i], ZipFile::kOpenReadOnly);
439 jars[i], err);
444 fprintf(stderr, "ERROR: unable to process '%s'\n", jars[i]);
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 180 logMsg("# to correct potential problems with your classes/jars");
239 * for entries that are .jars found in the classpath.</p>
316 /** Prefixed to hash keys that signify .jars found in classpath. */
341 * Print out report of .jars found in a classpath.
349 * @return false if OK, true if any .jars were reported
361 logMsg("#---- BEGIN Listing XML-related jars in: " + desc + " ----");
391 logMsg("#----- END Listing XML-related jars in: " + desc + " -----");
491 * Print out report of .jars found in a classpath.
501 * @return false if OK, true if any .jars were reported
640 * Cheap-o listing of specified .jars found in the classpath.
    [all...]
  /build/core/
dex_preopt_odex_install.mk 1 # dexpreopt_odex_install.mk is used to define odex creation rules for JARs and APKs
49 # For libart, the boot jars' odex files are replaced by $(DEFAULT_DEX_PREOPT_INSTALLED_IMAGE).
59 # For system server jars, we build for only "first".
  /external/junit/
Common.mk 43 # List of source to build into junit4 target jars
  /external/robolectric/
Android.mk 41 # Pre-built dependency jars
  /external/jetty/
Android.mk 44 # Pre-built dependency jars
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectClassLoader.java 270 // get the OS path to all the external jars
271 URL[] jars = getExternalJars(); local
273 mJarClassLoader = new URLClassLoader(jars, this /* parent */);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ExportHelper.java 242 List<String> jars = new ArrayList<String>(); local
249 jars.add(path);
259 helper.runProguard(proguardConfigFiles, inputJar, jars, obfuscatedJar,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java     [all...]
  /external/owasp/sanitizer/
Makefile 21 @echo " distrib - Build everything and package it into JARs."
26 @echo " download - Bundle docs, externally required jars, and"
188 echo Linking required jars
207 # Packages the distrib jars into the maven directory which is a sibling of

Completed in 576 milliseconds

1 2 3 4 5 6 7 8