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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/cmds/uiautomator/cmds/uiautomator/
uiautomator 67 jars=
78 if [ -z "${1}" ] && [ -z "${jars}" ]; then
88 # we are done with jars, starting with parameters now
102 jars=${jars}:${jar}
123 if [ -n "${jars}" ]; then
124 args="${args} -e jars ${jars}"
127 CLASSPATH=${CLASSPATH}:${jars}
  /build/make/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
  /build/soong/java/
system_modules.go 27 // file will produce the rules necessary to convert each unique set of bootclasspath jars into
33 pctx.SourcePathVariable("moduleInfoJavaPath", "build/soong/scripts/jars-to-module-info-java.sh")
60 func TransformJarsToSystemModules(ctx android.ModuleContext, moduleName string, jars android.Paths) android.WritablePath {
74 Inputs: jars,
77 "classpath": strings.Join(jars.Strings(), ":"),
105 // List of prebuilt jars that should be included in the system modules
106 Jars []string
113 var jars android.Paths
117 jars = append(jars, dep.HeaderJars()...
    [all...]
java.go 716 // effect since those jars would be available by default.
771 var jars android.Paths
812 jars = append(jars, kotlinJar)
813 jars = append(jars, deps.kotlinStdlib...)
862 jars = append(jars, classes)
868 jars = append(jars, classes
    [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...]
  /prebuilts/misc/common/robolectric/3.4.2/PREBUILT/
download-libs.gradle 65 def jars = source.getFiles()
70 f << "my_robolectric_runtime_deps := \\\n" << jars.join("\\\n") << "\n"
  /prebuilts/misc/common/robolectric/3.5.1/PREBUILT/
download-libs.gradle 67 def jars = source.getFiles()
72 f << "my_robolectric_runtime_deps := \\\n" << jars.join("\\\n") << "\n"
  /prebuilts/misc/common/robolectric/3.6.1/PREBUILT/
download-libs.gradle 67 def jars = source.getFiles()
72 f << "my_robolectric_runtime_deps := \\\n" << jars.join("\\\n") << "\n"
  /prebuilts/misc/common/robolectric/update-script/
download-libs.gradle 67 def jars = source.getFiles()
72 f << "my_robolectric_runtime_deps := \\\n" << jars.join("\\\n") << "\n"
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
DexTestRunner.java 45 * A DexTestRunner runs tests by name from a given list of JARs,
48 * - Custom ClassLoading from given dexed Jars
85 List<String> jars,
92 mLoader = makeLoader(jars);
301 List<String> jars = new ArrayList<>(); local
305 // spurious empty results if, for example, we don't specify any jars, accidentally
313 jars.add(jarFile.getAbsolutePath());
320 return jars;
327 DexClassLoader makeLoader(List<String> jars) {
330 for (String jar : jars) {
    [all...]
  /prebuilts/build-tools/
build-prebuilts.sh 75 jars=$(for i in "${SOONG_JAVA_LIBRARIES[@]}"; do echo ${SOONG_HOST_OUT}/framework/${i}.jar; done)
82 ${jars} \
98 # Copy jars and wrappers
101 cp ${jars} ${SOONG_OUT}/dist-common/framework
  /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/testng/ant/
build.properties 53 other.jars.dir=${target}/other-jars
  /libcore/ojluni/src/main/java/sun/misc/
JarIndex.java 309 Vector<String> jars = new Vector<>(); local
320 jars.add(currentJar);
327 jarFiles = jars.toArray(new String[jars.size()]);
  /prebuilts/misc/common/robolectric/3.1.1/lib/
ant-launcher-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.7.0/
ant-launcher-1.7.0.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 
  /external/turbine/java/com/google/turbine/deps/
Dependencies.java 56 Set<String> jars = new LinkedHashSet<>(); local
68 jars.add(jarFile);
70 for (String jarFile : jars) {
  /external/vogar/src/vogar/android/
HostRuntime.java 104 List<File> jars = new ArrayList<File>(); local
106 jars.add(new File(hostOut, "framework/" + jar + ".jar"));
108 Classpath bootClasspath = Classpath.of(jars);
  /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...]
  /test/vts/tools/vts-tradefed/etc/
vts-tradefed_win.bat 69 :: other required jars
70 set JARS=^
76 for %%J in (%JARS%) do (
101 :: include any host-side test jars
  /external/icu/tools/srcgen/currysrc/
Android.mk 17 # Create a list of prebuilt jars relative to $(LOCAL_PATH). i.e. lib/xxx.jar

Completed in 569 milliseconds

1 2 3 4 5 6 7 8 91011>>