Home
last modified time | relevance | path

Searched refs:jars (Results 1 – 25 of 75) sorted by relevance

123

/external/javassist/src/main/javassist/
DClassPoolTail.java76 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/
DMetaInfConfiguration.java55 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()
DOrdering.java66 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/
Dproguardall.pro10 # 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.
Dretrace.pro8 # Specify the input jars, output jars, and library jars.
9 # The input jars will be merged in a single output jar.
Dproguardgui.pro8 # Specify the input jars, output jars, and library jars.
9 # The input jars will be merged in a single output jar.
Dproguard.pro8 # Specify the input jars, output jars, and library jars.
55 # jars.
Dmidlets.pro7 # Specify the input jars, output jars, and library jars.
Dapplets.pro7 # Specify the input jars, output jars, and library jars.
Dapplications.pro7 # Specify the input jars, output jars, and library jars.
Dservlets.pro7 # Specify the input jars, output jars, and library jars.
Dlibrary.pro8 # Specify the input jars, output jars, and library jars.
Dscala.pro8 # Specify the input jars, output jars, and library jars.
/external/proguard/examples/gradle/
Dproguardall.gradle30 // 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.
Dretrace.gradle28 // Specify the input jars, output jars, and library jars.
29 // The input jars will be merged in a single output jar.
Dproguardgui.gradle28 // Specify the input jars, output jars, and library jars.
29 // The input jars will be merged in a single output jar.
Dproguard.gradle28 // Specify the input jars, output jars, and library jars.
75 // jars.
Dmidlets.gradle27 // Specify the input jars, output jars, and library jars.
Dapplications.gradle27 // Specify the input jars, output jars, and library jars.
Dapplets.gradle27 // Specify the input jars, output jars, and library jars.
Dservlets.gradle27 // Specify the input jars, output jars, and library jars.
Dlibrary.gradle28 // Specify the input jars, output jars, and library jars.
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
DEnvironmentCheck.java656 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/
Dbuild.properties15 # 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/
DHostRuntime.java101 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()

123