/external/proguard/src/proguard/ |
DataEntryWriterFactory.java | 30 * writers will wrap the output in the proper apks, jars, wars, ears, and zips. 140 // Zip up jars, if necessary. 154 // Only zip up jars, unless the output is a jar file itself.
|
OutputWriter.java | 94 * Transfers the specified input jars to the specified output jars. 105 // Construct the writer that can write jars, wars, ears, zips, and
|
/external/vogar/src/vogar/android/ |
HostRuntime.java | 101 List<File> jars = new ArrayList<File>(); local 103 jars.add(new File(hostOut, "framework/" + jar + ".jar")); 105 Classpath bootClasspath = Classpath.of(jars);
|
/prebuilts/tools/common/proguard/proguard4.7/examples/ |
android.pro | 13 # Specify the input jars, output jars, and library jars.
|
/development/samples/SupportLeanbackShowcase/app/ |
app.iml | 72 <excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.1.1/jars" /> 73 <excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/leanback-v17/22.1.1/jars" /> 74 <excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/palette-v7/21.0.0/jars" /> 75 <excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/22.1.1/jars" /> 76 <excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/support-v4/22.1.1/jars" />
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
WebInfConfiguration.java | 74 //Apply an initial ordering to the jars which governs which will be scanned for META-INF 81 //Apply ordering to container jars - if no pattern is specified, we won't 82 //match any of the container jars 118 //Apply ordering to WEB-INF/lib jars 127 List<Resource> jars = findJars(context); local 131 if (jars != null) 133 uris = new URI[jars.size()]; 135 for (Resource r: jars) 140 webInfJarNameMatcher.match(webInfPattern, uris, true); //null is inclusive, no pattern == all jars match 165 // Look for jars [all...] |
Ordering.java | 34 * Ordering options for jars in WEB-INF lib. 62 * Order the list of jars in WEB-INF/lib according to the ordering declarations in the descriptors 66 public List<Resource> order(List<Resource> jars) 69 List<Resource> tmp = new ArrayList<Resource>(jars); 146 * Order the list of jars according to the ordering declared 151 public List<Resource> order(List<Resource> jars) 154 for (Resource jar:jars)
|
/external/proguard/src/proguard/gui/ |
GUIResources.properties | 89 programJars = Program jars, aars, wars, ears, zips, apks, and directories 90 libraryJars = Library jars, aars, wars, ears, zips, apks, and directories 141 <html>The input jars (aars, wars, ears, zips, apks, directories), followed by<br>\ 142 their corresponding output jars (wars, ears, zips, apks, directories).</html> 144 <html>The library jars (aars, wars, ears, zips, directories), on which the program jars depend.<br>\ 145 The library jars are required for processing, but they are not copied to the output.</html> 206 the resulting jars on case-insensitive file systems, should that be necessary.</html> 273 Keep the specified directories in the output jars, wars, ears, zips, apks, or directories. 557 addJars = Add one or more jars or directories.. [all...] |
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/ |
AuptTestRunner.java | 66 private static final String PARAM_JARS = "jars"; 153 String jars = params.getString(PARAM_JARS); local 154 if (jars != null) { 155 loadDexJars(jars); 161 private void loadDexJars(String jars) { 163 String[] jarsArray = jars.split(":"); 621 * Alternatively returns a custom class loader with classes loaded from additional jars
|
/external/proguard/docs/ |
results.html | 154 For small inputs, timings are governed by the reading and parsing of the jars. 161 library jars and program jars.
|
/external/proguard/src/proguard/io/ |
DataEntryCopier.java | 207 // Zip up any jars, if necessary. 216 // Only zip up jars. 268 // Unzip any jars, if necessary.
|
/prebuilts/tools/common/google-api-java-client/1.20.0/ |
HOWTO.txt | 18 |-- jars/ 26 Extract and place the .jar files from the client lib you want in base/jars 78 <zipgroupfileset dir="jars" includes="*.jar"/>
|
/prebuilts/tools/common/google-api-java-client/1.8.0-rc/ |
HOWTO.txt | 18 |-- jars/ 26 Extract and place the .jar files from the client lib you want in base/jars 76 <zipgroupfileset dir="jars" includes="*.jar"/>
|
/prebuilts/tools/common/proguard/proguard4.7/docs/ |
results.html | 153 For small inputs, timings are governed by the reading and parsing of the jars. 160 library jars and program jars.
|
/external/caliper/caliper/src/main/java/com/google/caliper/platform/jvm/ |
EffectiveClassPath.java | 33 * Provides a class path containing all of the jars present on the local machine that are referenced
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/headless-build/ |
build.properties | 15 # bootclasspath - The base jars to compile against (typicaly rt.jar) 104 #Set to true if you want to sign jars 212 # The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE 237 # Whether or not to include debug info in the output jars
|
/external/icu/icu4j/eclipse-build/pdebuild/ |
build.properties | 15 # bootclasspath - The base jars to compile against (typicaly rt.jar) 78 #Set to true if you want to sign jars 177 # The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE 203 # Whether or not to include debug info in the output jars
|
/external/icu/tools/srcgen/currysrc/ |
Android.mk | 17 # Create a list of prebuilt jars relative to $(LOCAL_PATH). i.e. lib/xxx.jar
|
/external/jacoco/org.jacoco.examples/src/org/jacoco/examples/ |
ClassInfo.java | 24 * This example reads Java class files, directories or JARs given as program
|
/external/jetty/ |
Android.mk | 44 # Pre-built dependency jars
|
/external/owasp/sanitizer/ |
Makefile | 21 @echo " distrib - Build everything and package it into JARs." 26 @echo " download - Bundle docs, externally required jars, and" 188 echo Linking required jars 207 # Packages the distrib jars into the maven directory which is a sibling of
|
/external/owasp/sanitizer/tools/ |
upload_jars_to_googlecode_downloads.sh | 81 --summary="JARs, source JAR, and documentation for version $VERSION." \
|
/external/robolectric/v1/ |
Android.mk | 41 # Pre-built dependency jars
|
/libcore/ojluni/src/main/java/sun/misc/ |
JarIndex.java | 312 Vector jars = new Vector(); local 323 jars.add(currentJar); 331 jarFiles = (String[])jars.toArray(new String[jars.size()]);
|
/prebuilts/tools/common/proguard/proguard4.7/ |
README | 7 - lib : the main jars, compiled and ready to use with "java -jar ...."
|