HomeSort by relevance Sort by last modified time
    Searched defs:classpath (Results 1 - 25 of 433) 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;
55 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/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;
155 this.resourceClasspath = Classpath.of(vogar.resourceClasspath);
170 this.classpath = Classpath.of(vogar.classpath);
171 this.classpath.addAll(vogarJar());
184 this.buildClasspath = Classpath.of(vogar.buildClasspath)
    [all...]
  /external/vogar/src/vogar/android/
DexTask.java 21 import vogar.Classpath;
27 private final Classpath classpath; field in class:DexTask
34 public DexTask(AndroidSdk androidSdk, Classpath classpath, boolean benchmark, String name,
38 this.classpath = classpath;
48 Classpath cp = Classpath.of(jar);
50 cp.addAll(classpath);
    [all...]
JackDexTask.java 23 import vogar.Classpath;
36 private final Classpath classpath; field in class:JackDexTask
42 public JackDexTask(Run run, Classpath classpath, boolean benchmark, String name,
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);
    [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/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-embedder-api/0.20.0/
tycho-embedder-api-0.20.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-embedder-api/0.18.1/
tycho-embedder-api-0.18.1.jar 
  /external/caliper/caliper/src/main/java/com/google/caliper/platform/jvm/
JvmPlatform.java 115 String classpath = local
117 return classpath;
  /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))
  /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...]
  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
ant-weblogic.jar 
  /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/desugar/java/com/google/devtools/build/android/desugar/
Desugar.java 71 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) {
179 checkState(!Files.isDirectory(path), "Classpath entry must be a jar file: %s", path);
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
  /prebuilts/tools/common/m2/repository/org/anarres/jarjar/jarjar-core/1.0.0/
jarjar-core-1.0.0.jar 
  /libcore/ojluni/src/main/native/
jvm.h 8 * particular file as subject to the "Classpath" exception as provided
1463 char *classpath; member in struct:JDK1_1InitArgs
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/59/1/.cp/
jdtCompilerAdapter.jar 
  /prebuilts/tools/common/m2/repository/org/beanshell/bsh/2.0b4/
bsh-2.0b4.jar 

Completed in 1883 milliseconds

1 2 3 4 5 6 7 8 91011>>