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

1 2 3 4 5 6 7 8 91011>>

  /external/vogar/test/vogar/android/
DeviceRuntimeAdbTargetTest.java 27 import vogar.Classpath;
61 .classpath(classpath)
72 + " -classpath"
92 Classpath classpath = new Classpath(); local
93 classpath.addAll(new File("classes"));
95 .classpath(classpath)
    [all...]
AbstractModeTest.java 28 import vogar.Classpath;
57 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/jcommander/src/test/java/com/beust/jcommander/args/
ArgsLongDescription.java 7 @Parameter(names = "--classpath", description = "The classpath. This is a very long "
12 public String classpath = "/tmp"; field in class:ArgsLongDescription
  /development/tools/idegen/src/
Eclipse.java 33 * Generates an Eclipse .classpath file from the given configuration.
36 StringBuilder classpath = new StringBuilder(); local
38 classpath.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
39 + "<classpath>\n");
82 classpath.append(" <classpathentry kind=\"src\"");
85 classpath.append(" excluding=\"")
88 classpath.append(" path=\"")
96 classpath.append(" <classpathentry kind=\"lib\" path=\"")
104 classpath.append(" <classpathentry kind=\"output\" path=\""
107 classpath.append("</classpath>\n")
118 StringBuilder classpath = new StringBuilder(); local
    [all...]
  /external/vogar/src/vogar/
JarSuggestions.java 41 Classpath classpath) {
47 // don't suggest adding a jar that's already on the classpath
48 suggestedJars.removeAll(classpath.getElements());
Run.java 66 public final Classpath classpath; field in class:Run
67 public final Classpath buildClasspath;
68 public final Classpath resourceClasspath;
145 this.resourceClasspath = Classpath.of(vogar.resourceClasspath);
154 this.classpath = Classpath.of(vogar.classpath);
155 this.classpath.addAll(vogarJar());
168 this.buildClasspath = Classpath.of(vogar.buildClasspath)
    [all...]
  /external/vogar/src/vogar/commands/
Javac.java 23 import vogar.Classpath;
38 public Javac bootClasspath(Classpath classpath) {
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) { method in class:Javac
    [all...]
VmCommandBuilder.java 28 import vogar.Classpath;
41 private Classpath bootClasspath = new Classpath();
42 private Classpath classpath = new Classpath(); field in class:VmCommandBuilder
76 public VmCommandBuilder bootClasspath(Classpath bootClasspath) {
81 public VmCommandBuilder classpath(Classpath classpath) { method in class:VmCommandBuilder
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-embedder-api/0.18.1/
tycho-embedder-api-0.18.1.jar 
  /art/runtime/
class_loader_context.h 48 // (Note that one dex file can contain multidexes. Each multidex will be added to the classpath
72 // The compilation sources are appended to the classpath of the first class loader (in the above
107 // - the class loader from the same position have the same classpath
132 // classpath belonging to the `class_loader` argument.
155 std::vector<std::string> classpath; member in struct:art::ClassLoaderContext::ClassLoaderInfo
198 // the classpath.
232 // files. When true, dex2oat will use OatFile::kSpecialSharedLibrary as the classpath key in
  /external/caliper/caliper/src/main/java/com/google/caliper/platform/jvm/
JvmPlatform.java 115 String classpath = local
117 return classpath;
  /external/desugar/java/com/google/devtools/build/android/desugar/
ClassVsInterface.java 29 private final ClassReaderFactory classpath; field in class:ClassVsInterface
31 public ClassVsInterface(ClassReaderFactory classpath) {
32 this.classpath = classpath;
56 ClassReader outerClass = checkNotNull(classpath.readIfKnown(outerName),
  /external/vogar/src/vogar/android/
DexTask.java 21 import vogar.Classpath;
31 private final Classpath classpath; field in class:DexTask
39 public DexTask(Dexer dexer, AndroidSdk androidSdk, Classpath classpath, boolean benchmark, String name,
44 this.classpath = classpath;
55 Classpath cp = Classpath.of(jar);
56 Classpath dependentCp = classpath
    [all...]
  /build/soong/java/
builder.go 46 `$javacFlags $bootClasspath $classpath ` +
59 "javacFlags", "bootClasspath", "classpath", "srcJars", "srcJarDir",
66 `${config.GenKotlinBuildFileCmd} $classpath $outDir $out.rsp $srcJarDir/list > $outDir/kotlinc-build.xml &&` +
80 "kotlincFlags", "classpath", "srcJars", "srcJarDir", "outDir", "kotlinJvmTarget")
87 `$javacFlags $bootClasspath $classpath ` +
102 "javacFlags", "bootClasspath", "classpath", "srcJars", "srcJarDir",
111 `$javacFlags -source $javaVersion -target $javaVersion $bootClasspath $classpath && ` +
123 "javacFlags", "bootClasspath", "classpath", "srcJars", "outDir", "javaVersion")
155 bootClasspath classpath
156 classpath classpat
391 type classpath []android.Path type
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
testbase.py 63 # setup java CLASSPATH
64 if 'CLASSPATH' not in os.environ:
96 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/turbine/java/com/google/turbine/options/
TurbineOptionsParser.java 100 case "--classpath":
175 ImmutableList.Builder<String> classpath = ImmutableList.builder(); local
177 classpath.addAll(CLASSPATH_SPLITTER.split(path));
179 return classpath.build();
  /libcore/support/src/test/java/tests/util/
ClassLoaderBuilder.java 32 * exists on the classpath.
78 * uses the same classpath as the application class loader. It loads
105 String classPath = getApplicationClassPath();
108 .newInstance(classPath, bridge);
113 List<URL> classpath = new ArrayList<URL>(); local
114 classpath.addAll(classpathToUrls("java.class.path"));
115 classpath.addAll(classpathToUrls("sun.boot.class.path"));
116 return new URLClassLoader(classpath.toArray(new URL[classpath.size()]), bridge);
140 String classpath = System.getProperty(propertyName) local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
JUnitLaunchConfigDelegate.java 42 * the classpath since it can find a correct reference to all the necessary
47 * necessary also puts back the junit.jar in the user classpath.
70 String[] classpath = super.getClasspath(configuration); local
71 return fixClasspath(classpath, getJavaProjectName(configuration));
94 * Add the junit.jar to the user classpath; since Eclipse was relying on
98 * @param classpath Array containing classpath
101 * @return a new modified (if applicable) classpath
103 public static String[] fixClasspath(String[] classpath, String projectName) {
105 for (int i = 0; i < classpath.length; i++)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/sandbox/
SandboxConfigUtil.java 46 * @param classpath the classpath to use to run the sandbox.
55 String classpath, IRunUtil runUtil, String[] args, DumpCmd dump, File globalConfig)
57 if (Strings.isNullOrEmpty(classpath)) {
59 "Something went wrong with the sandbox setup, classpath was empty.");
78 mCmdArgs.add(classpath);
109 // include all jars on the classpath
110 String classpath = ""; local
112 classpath = Joiner.on(":").join(jarFiles);
113 return dumpConfigForVersion(classpath, runUtil, args, dump, globalConfig)
    [all...]
  /external/kotlinc/lib/
kotlin-runner.jar 
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue318/
ContextClassLoaderTest.java 78 Properties classpath = new Properties(); local
79 InputStream cpProperties = getClass().getResourceAsStream("classpath.properties");
81 classpath.load(cpProperties);
86 File runtimeClassesDir = new File(classpath.getProperty("runtime_classes_dir"));
  /external/turbine/javatests/com/google/turbine/lower/
LowerIntegrationTest.java 345 Map<String, byte[]> classpath = local
349 for (Map.Entry<String, byte[]> entry : classpath.entrySet()) {
LowerTest.java 80 CompoundEnv<ClassSymbol, BytecodeBoundClass> classpath = local
222 classpath)
  /external/guice/core/test/com/googlecode/guice/
BytecodeGenTest.java 107 final String[] classpath = System.getProperty("java.class.path").split(File.pathSeparator); local
108 for (final String element : classpath) {
148 * load public and test classes directly from the classpath - we don't
  /external/turbine/javatests/com/google/turbine/deps/
DependenciesTest.java 66 private ImmutableList<Path> classpath = ImmutableList.of(); field in class:DependenciesTest.LibraryBuilder
73 LibraryBuilder setClasspath(Path... classpath) {
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) {
97 this.classpath = ImmutableList.copyOf(classpath);
107 BindingResult bound = Binder.bind(units, classpath, BOOTCLASSPATH)
257 ImmutableList<String> classpath = local
272 ImmutableList<String> classpath = local
    [all...]

Completed in 1095 milliseconds

1 2 3 4 5 6 7 8 91011>>