Searched defs:classpath (Results 1 - 25 of 64) sorted by relevance

123

/external/jcommander/src/test/java/com/beust/jcommander/args/
H A DArgsLongDescription.java7 @Parameter(names = "--classpath", description = "The classpath. This is a very long "
12 public String classpath = "/tmp"; field in class:ArgsLongDescription
/external/vogar/src/vogar/
H A DJarSuggestions.java41 Classpath classpath) {
47 // don't suggest adding a jar that's already on the classpath
48 suggestedJars.removeAll(classpath.getElements());
40 addSuggestionsFromOutcome(Outcome outcome, ClassFileIndex classFileIndex, Classpath classpath) argument
H A DMd5Cache.java101 * Returns the appropriate key for a dex file corresponding to the contents of 'classpath'.
102 * Returns null if we don't think it's possible to cache the given classpath.
104 public String makeKey(Classpath classpath) { argument
107 for (File element : classpath.getElements()) {
H A DRun.java66 public final Classpath classpath; field in class:Run
170 this.classpath = Classpath.of(vogar.classpath);
171 this.classpath.addAll(vogarJar());
H A DVogar.java152 @Option(names = { "--build-classpath" })
155 @Option(names = { "--classpath", "-cp" })
156 List<File> classpath = new ArrayList<File>(); field in class:Vogar
158 @Option(names = { "--resource-classpath" })
305 System.out.println(" --classpath <jar file>: add the .jar to both build and execute classpaths.");
307 System.out.println(" --use-bootclasspath: use the classpath as search path for bootstrap classes.");
309 System.out.println(" --build-classpath <element>: add the directory or .jar to the build");
310 System.out.println(" classpath. Such classes are available as build dependencies, but");
/external/vogar/src/vogar/android/
H A DDexTask.java27 private final Classpath classpath; field in class:DexTask
34 public DexTask(AndroidSdk androidSdk, Classpath classpath, boolean benchmark, String name, argument
38 this.classpath = classpath;
50 cp.addAll(classpath);
H A DJackDexTask.java36 private final Classpath classpath; field in class:JackDexTask
42 public JackDexTask(Run run, Classpath classpath, boolean benchmark, String name, argument
46 this.classpath = classpath;
66 // 1) Having to deal with multiple classpath entries for inclusion: if the purpose is
69 // Jack if we persist with including the entire classpath (2).
74 String classpathSubKey = jackCache.makeKey(classpath);
77 // If the classpath contains things that are not .jar or .jack files we get null
103 // files so we can unpack them in reverse order (to maintain classpath ordering).
109 for (File classpathElement : classpath
[all...]
H A DDeviceRuntime.java58 // dex everything on the classpath and push it to the device.
59 for (File classpathElement : run.classpath.getElements()) {
121 for (File classpathElement : run.classpath.getElements()) {
134 Task createDexJarTask = newCreateDexJarTask(run.classpath, jar, name, action, localDex);
139 private Task newCreateDexJarTask(Classpath classpath, File classpathElement, String name, argument
143 dex = new JackDexTask(run, classpath, run.benchmark, name, classpathElement,
146 dex = new DexTask(run.androidSdk, classpath, run.benchmark, name, classpathElement,
H A DHostRuntime.java67 for (File classpathElement : run.classpath.getElements()) {
71 result.add(createCreateDexJarTask(run.classpath, classpathElement, name,
149 for (File classpathElement : run.classpath.getElements()) {
156 private Task createCreateDexJarTask(Classpath classpath, File classpathElement, String name, argument
160 dex = new JackDexTask(run, classpath, run.benchmark, name, classpathElement, action,
163 dex = new DexTask(run.androidSdk, classpath, run.benchmark, name, classpathElement,
H A DAndroidSdk.java240 * Converts all the .class files on 'classpath' into a dex file written to 'output'.
242 public void dex(boolean multidex, File output, Classpath classpath) { argument
245 String classpathSubKey = dexCache.makeKey(classpath);
252 log.verbose("dex cache hit for " + classpath);
278 .args((Object[]) Strings.objectsToStrings(classpath.getElements()));
/external/vogar/test/vogar/android/
H A DAbstractModeTest.java55 protected Classpath classpath; field in class:AbstractModeTest
72 new File[] {new File("classpath")}, "android.jar",
86 classpath = new Classpath();
87 classpath.addAll(new File("classes"));
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Exec.java93 public static String execJava(String[] args, String[] classpath, argument
97 execJavaCommon(args, classpath, null, displayOutput, true);
105 public static String execJava(String[] args, String[] classpath, argument
109 execJavaCommon(args, classpath, envp, displayOutput, false);
150 public static Object[] execJava2(String[] args, String[] classpath, argument
153 return execJavaCommon(args, classpath, null, displayOutput, true);
156 private static Object[] execJavaCommon(String[] args, String[] classpath, argument
175 // add classpath string
176 if (classpath != null) {
177 for (String element : classpath) {
[all...]
/external/guice/core/test/com/googlecode/guice/
H A DOSGiContainerTest.java112 private static void buildBundle(String name, Properties instructions, String classpath) argument
122 bnd.main(new String[]{"-failok", "build", "-classpath", classpath, bndFileName});
/external/vogar/src/vogar/commands/
H A DJavac.java38 public Javac bootClasspath(Classpath classpath) { argument
39 builder.args("-bootclasspath", classpath.toString());
43 public Javac classpath(File... path) { method in class:Javac
44 return classpath(Classpath.of(path));
47 public Javac classpath(Classpath classpath) { argument
48 builder.args("-classpath", classpath.toString());
H A DVmCommandBuilder.java42 private Classpath classpath = new Classpath(); field in class:VmCommandBuilder
81 public VmCommandBuilder classpath(Classpath classpath) { argument
82 this.classpath.addAll(classpath);
160 builder.tokens("-Djava.class.path=" + classpath);
162 builder.tokens("-classpath", classpath.toString());
164 // Only output this if there's something on the boot classpath,
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dtestbase.py96 classpath = '-cp "' + ':'.join([os.path.abspath(p) for p in cp]) + '"'
99 classpath = '' variable
161 dir, javaOptions, classpath, options, file
221 # % (self.baseDir, javaOptions, classpath, grammarPath))
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DDesugar.java71 help = "Ordered classpath to resolve symbols in the --input Jar, like javac's -cp flag."
73 public List<Path> classpath; field in class:Desugar.Options
136 help = "Copy bridges from classpath to desugared classes."
178 for (Path path : options.classpath) {
208 toInputFileProvider(closer, options.classpath);
339 // Prepend classpath with input jar itself so LambdaDesugaring can load classes with lambdas.
340 // Note that inputJar and classpath need to be in the same classloader because we typically get
341 // the header Jar for inputJar on the classpath and having the header Jar in a parent loader
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-netrexx.jar ... ant.taskdefs.MatchingTask { private boolean binary private String classpath private boolean comments private boolean compact private boolean compile private ...
H A Dant-weblogic.jar ... descriptorDirectory private java.io.File generatedFilesDirectory private String classpath public void " href="/8.0.0_r4/s? ...
H A Dant-jdepend.jar ... .apache.tools.ant.types.Path classpath public org.apache.tools.ant.types ...
/external/emma/core/java12/com/vladium/emma/rt/
H A DInstrClassLoader.java46 public InstrClassLoader (final ClassLoader parent, final File [] classpath, argument
55 super (filesToURLs (classpath), null);
372 private static URL [] filesToURLs (final File [] classpath) argument
375 if ((classpath == null) || (classpath.length == 0))
378 final URL [] result = new URL [classpath.length];
382 result [f] = classpath [f].toURL (); // note: this does proper dir encoding
/external/guava/guava-tests/test/com/google/common/reflect/
H A DClassPathTest.java62 ClassPath classpath = ClassPath.from(getClass().getClassLoader());
63 for (ResourceInfo resource : classpath.getResources()) {
91 ClassPath classpath = ClassPath.from(getClass().getClassLoader());
92 for (ClassInfo classInfo : classpath.getAllClasses()) {
120 ClassPath classpath = ClassPath.from(getClass().getClassLoader());
122 : classpath.getTopLevelClasses(ClassPathTest.class.getPackage().getName())) {
139 ClassPath classpath = ClassPath.from(ClassPathTest.class.getClassLoader());
141 : classpath.getTopLevelClassesRecursive(ClassPathTest.class.getPackage().getName())) {
426 private static Manifest manifestClasspath(String classpath) throws IOException { argument
427 return manifest("Class-Path: " + classpath
[all...]
/external/emma/ant/ant14/com/vladium/emma/
H A DemmajavaTask.java61 + ": this task requires 'classpath' attribute to be set", location).fillInStackTrace ();
72 // add emma libs to the parent task's classpath [to support non-extdir deployment]:
93 // full classpath scan flag:
182 // classpath:
215 // classpath:
355 // lib classpath attribute [to support non-extdir deployment]:
357 public final void setLibclasspath (final Path classpath) argument
360 m_libClasspath = classpath;
362 m_libClasspath.append (classpath);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/59/1/.cp/
H A DjdtCompilerAdapter.jar ... .apache.tools.ant.types.Path classpath org.apache.tools.ant.types. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...

Completed in 869 milliseconds

123