/external/javassist/src/main/javassist/ |
D | ClassPoolTail.java | 76 JarClassPath[] jars; field in JarDirClassPath 87 jars = new JarClassPath[files.length]; in JarDirClassPath() 89 jars[i] = new JarClassPath(files[i].getPath()); in JarDirClassPath() 94 if (jars != null) in openClassfile() 95 for (int i = 0; i < jars.length; i++) { in openClassfile() 96 InputStream is = jars[i].openClassfile(classname); in openClassfile() 105 if (jars != null) in find() 106 for (int i = 0; i < jars.length; i++) { in find() 107 URL url = jars[i].find(classname); in find() 116 if (jars != null) in close() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
D | MetaInfConfiguration.java | 55 ArrayList<Resource> jars = new ArrayList<Resource>(); in preConfigure() local 56 jars.addAll(context.getMetaData().getOrderedContainerJars()); in preConfigure() 57 jars.addAll(context.getMetaData().getWebInfJars()); in preConfigure() 76 if (jars != null) in preConfigure() 78 URI[] uris = new URI[jars.size()]; in preConfigure() 80 for (Resource r : jars) in preConfigure()
|
D | Ordering.java | 66 public List<Resource> order(List<Resource> jars) in order() argument 69 List<Resource> tmp = new ArrayList<Resource>(jars); in order() 151 public List<Resource> order(List<Resource> jars) 154 for (Resource jar:jars)
|
/external/proguard/examples/ |
D | proguardall.pro | 10 # Specify the input jars, output jars, and library jars. 11 # We'll read all jars from the lib directory, process them, and write the 12 # processed jars to a new out directory. 64 # If we have the Gradle jars, we can properly process the Gradle task.
|
D | retrace.pro | 8 # Specify the input jars, output jars, and library jars. 9 # The input jars will be merged in a single output jar.
|
D | proguardgui.pro | 8 # Specify the input jars, output jars, and library jars. 9 # The input jars will be merged in a single output jar.
|
D | proguard.pro | 8 # Specify the input jars, output jars, and library jars. 55 # jars.
|
D | midlets.pro | 7 # Specify the input jars, output jars, and library jars.
|
D | applets.pro | 7 # Specify the input jars, output jars, and library jars.
|
D | applications.pro | 7 # Specify the input jars, output jars, and library jars.
|
D | servlets.pro | 7 # Specify the input jars, output jars, and library jars.
|
D | library.pro | 8 # Specify the input jars, output jars, and library jars.
|
D | scala.pro | 8 # Specify the input jars, output jars, and library jars.
|
/external/proguard/examples/gradle/ |
D | proguardall.gradle | 30 // Specify the input jars, output jars, and library jars. 31 // We'll read all jars from the lib directory, process them, and write the 32 // processed jars to a new out directory. 85 // If we have the Gradle jars, we can properly process the Gradle task.
|
D | retrace.gradle | 28 // Specify the input jars, output jars, and library jars. 29 // The input jars will be merged in a single output jar.
|
D | proguardgui.gradle | 28 // Specify the input jars, output jars, and library jars. 29 // The input jars will be merged in a single output jar.
|
D | proguard.gradle | 28 // Specify the input jars, output jars, and library jars. 75 // jars.
|
D | midlets.gradle | 27 // Specify the input jars, output jars, and library jars.
|
D | applications.gradle | 27 // Specify the input jars, output jars, and library jars.
|
D | applets.gradle | 27 // Specify the input jars, output jars, and library jars.
|
D | servlets.gradle | 27 // Specify the input jars, output jars, and library jars.
|
D | library.gradle | 28 // Specify the input jars, output jars, and library jars.
|
/external/apache-xml/src/main/java/org/apache/xalan/xslt/ |
D | EnvironmentCheck.java | 656 protected Vector checkPathForJars(String cp, String[] jars) in checkPathForJars() argument 659 if ((null == cp) || (null == jars) || (0 == cp.length()) in checkPathForJars() 660 || (0 == jars.length)) in checkPathForJars() 672 for (int i = 0; i < jars.length; i++) in checkPathForJars() 674 if (filename.indexOf(jars[i]) > -1) in checkPathForJars() 687 h.put(jars[i] + "-path", f.getAbsolutePath()); in checkPathForJars() 694 if (!("xalan.jar".equalsIgnoreCase(jars[i]))) { in checkPathForJars() 695 h.put(jars[i] + "-apparent.version", in checkPathForJars() 696 getApparentVersion(jars[i], f.length())); in checkPathForJars() 710 h.put(jars[i] + "-path", WARNING + " Classpath entry: " in checkPathForJars() [all …]
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/componentScripts/ |
D | build.properties | 15 # bootclasspath - The base jars to compile against (typicaly rt.jar) 108 # The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE 120 # Whether or not to include debug info in the output jars 126 … -source command line switch for javac version 1.4. Used when compiling the jars for the plug-ins. 132 # Sets the value of the -target command line switch for javac. Used when compiling the jars for th…
|
/external/vogar/src/vogar/android/ |
D | HostRuntime.java | 101 List<File> jars = new ArrayList<File>(); in newVmCommandBuilder() local 103 jars.add(new File(hostOut, "framework/" + jar + ".jar")); in newVmCommandBuilder() 105 Classpath bootClasspath = Classpath.of(jars); in newVmCommandBuilder()
|