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/turbine/javatests/com/google/turbine/deps/
H A DTransitiveTest.java35 protected Path runTurbine(ImmutableList<Path> sources, ImmutableList<Path> classpath) argument
43 classpath.stream().map(Path::toString).collect(toImmutableList()))
H A DAbstractTransitiveTest.java53 protected abstract Path runTurbine(ImmutableList<Path> sources, ImmutableList<Path> classpath) argument
147 // Explicitly use turbine; javac-turbine doesn't support direct-classpath compilations.
H A DDependenciesTest.java66 private ImmutableList<Path> classpath = ImmutableList.of(); field in class:DependenciesTest.LibraryBuilder
73 LibraryBuilder setClasspath(Path... classpath) { argument
74 this.classpath = ImmutableList.copyOf(classpath);
81 IntegrationTestSupport.runJavac(sources, classpath, BOOTCLASSPATH);
93 List<Path> classpath; field in class:DependenciesTest.DepsBuilder
96 DepsBuilder setClasspath(Path... classpath) { argument
97 this.classpath = ImmutableList.copyOf(classpath);
107 BindingResult bound = Binder.bind(units, classpath, BOOTCLASSPAT
[all...]
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DClassVsInterface.java29 private final ClassReaderFactory classpath; field in class:ClassVsInterface
31 public ClassVsInterface(ClassReaderFactory classpath) { argument
32 this.classpath = classpath;
56 ClassReader outerClass = checkNotNull(classpath.readIfKnown(outerName),
H A DDefaultMethodClassFixer.java43 private final ClassReaderFactory classpath; field in class:DefaultMethodClassFixer
58 ClassReaderFactory classpath,
63 this.classpath = classpath;
224 "Couldn't load " + internalName + ", is the classpath complete?", e);
246 classpath.readIfKnown(internalName), "Superclass not found: %s", internalName);
288 ClassReader bytecode = classpath.readIfKnown(anInterface);
319 ClassReader bytecode = classpath.readIfKnown(implemented);
321 // Interface isn't on the classpath, which indicates incomplete classpaths. Record missing
327 // Class in classpath an
56 DefaultMethodClassFixer( ClassVisitor dest, ClassReaderFactory classpath, DependencyCollector depsCollector, ClassReaderFactory bootclasspath, ClassLoader targetLoader) argument
[all...]
/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()) {
/external/vogar/src/vogar/android/
H A DDexTask.java31 private final Classpath classpath; field in class:DexTask
39 public DexTask(Dexer dexer, AndroidSdk androidSdk, Classpath classpath, boolean benchmark, String name, argument
44 this.classpath = classpath;
56 Classpath dependentCp = classpath;
58 cp.addAll(classpath);
59 // Everything is already in 'cp' so the dependent classpath becomes empty.
H A DDeviceRuntime.java59 // dex everything on the classpath and push it to the device.
60 for (File classpathElement : run.classpath.getElements()) {
125 for (File classpathElement : run.classpath.getElements()) {
139 Task createDexJarTask = newCreateDexJarTask(run.classpath, jar, name, action, localDex,
145 private Task newCreateDexJarTask(Classpath classpath, File classpathElement, String name, argument
147 return new DexTask(run.toolchain.getDexer(), run.androidSdk, classpath, run.benchmark,
H A DHostRuntime.java68 for (File classpathElement : run.classpath.getElements()) {
73 result.add(createCreateDexJarTask(run.classpath, classpathElement, name,
155 for (File classpathElement : run.classpath.getElements()) {
162 private Task createCreateDexJarTask(Classpath classpath, File classpathElement, String name, argument
164 return new DexTask(run.toolchain.getDexer(), run.androidSdk, classpath, run.benchmark, name,
H A DAndroidSdk.java274 * Converts all the .class files on 'classpath' into a dex file written to 'output'.
279 * @param classpath a list of files/directories containing .class files that are
281 * @param dependentCp classes that are referenced in classpath but are not themselves on the
282 * classpath must be listed in dependentCp, this is required to be able
288 Classpath classpath, Classpath dependentCp, Dexer dexer) {
291 String classpathSubKey = dexCache.makeKey(classpath);
298 log.verbose("dex cache hit for " + classpath);
305 List<String> desugarOutputFilePaths = desugar(outputTempDir, classpath, dependentCp);
402 // Runs desugar on classpath as the input with dependentCp as the classpath_entry.
404 private List<String> desugar(File outputTempDir, Classpath classpath, Classpat argument
287 dex(boolean multidex, File output, File outputTempDir, Classpath classpath, Classpath dependentCp, Dexer dexer) argument
[all...]
/external/vogar/test/vogar/android/
H A DAbstractModeTest.java57 protected Classpath classpath; field in class:AbstractModeTest
74 new File[] {new File("classpath")}, "android.jar", "desugar.jar",
89 classpath = new Classpath();
90 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/turbine/java/com/google/turbine/binder/
H A DClassPathBinder.java37 /** Sets up an environment for symbols on the classpath. */
47 * Creates an environment containing symbols in the given classpath and bootclasspath, and adds
51 Collection<Path> classpath, Collection<Path> bootclasspath, TopLevelIndex.Builder tli)
55 Env<ClassSymbol, BytecodeBoundClass> cp = bindClasspath(tli, classpath);
50 bind( Collection<Path> classpath, Collection<Path> bootclasspath, TopLevelIndex.Builder tli) argument
H A DBinder.java66 List<CompUnit> units, Collection<Path> classpath, Collection<Path> bootclasspath)
79 ClassPathBinder.bind(classpath, bootclasspath, tliBuilder);
83 // * we search sources, bootclasspath, and classpath in that order
241 // constant fields in the classpath (which don't require evaluation).
292 /** The result of binding: bound nodes for sources in the compilation, and the classpath. */
309 /** The classpath. */
65 bind( List<CompUnit> units, Collection<Path> classpath, Collection<Path> bootclasspath) argument
/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);
155 builder.tokens("-Djava.class.path=" + classpath);
157 builder.tokens("-classpath", classpath.toString());
159 // Only output this if there's something on the boot classpath,
/external/kotlinc/lib/
H A Dkotlin-runner.jar ... java.util.List) java.util.List classpath java.util.List arguments public void " href= ...
/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/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/turbine/java/com/google/turbine/lower/
H A DLower.java105 CompoundEnv<ClassSymbol, BytecodeBoundClass> classpath) {
107 CompoundEnv.<ClassSymbol, TypeBoundClass>of(classpath).append(new SimpleEnv<>(units));
103 lowerAll( ImmutableMap<ClassSymbol, SourceTypeBoundClass> units, CompoundEnv<ClassSymbol, BytecodeBoundClass> classpath) argument
/external/turbine/javatests/com/google/turbine/lower/
H A DIntegrationTestSupport.java428 Map<String, String> input, ImmutableList<Path> classpath, Collection<Path> bootclasspath)
438 Binder.BindingResult bound = Binder.bind(units, classpath, bootclasspath);
444 Collection<Path> classpath,
470 fileManager.setLocationFromPaths(StandardLocation.CLASS_PATH, classpath);
427 runTurbine( Map<String, String> input, ImmutableList<Path> classpath, Collection<Path> bootclasspath) argument
442 runJavac( Map<String, String> sources, Collection<Path> classpath, Collection<? extends Path> bootclasspath) argument

Completed in 859 milliseconds

123