HomeSort by relevance Sort by last modified time
    Searched refs:jar (Results 276 - 300 of 1892) sorted by null

<<11121314151617181920>>

  /external/robolectric/v1/
update-downloads.rb 15 Dir.glob('pages/downloads/*.jar').sort.reverse.each do |f|
19 match = /robolectric-?([0-9]\.[0-9](\.[0-9])?)?(-all)?(-src)?\.jar/.match(f)
  /external/sl4a/ScriptingLayerForAndroid/
Android.mk 53 LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := locale_platform:libs/locale_platform.jar
  /external/smali/smali/
runjflex.sh 23 # Run the java jar when 'JFLEX' is not in the environment
25 java -jar "$jflex_location" "$@"
32 jflex_jar_name="jflex-${EXPECTED_JFLEX_VERSION}.jar"
  /hardware/interfaces/audio/2.0/
Android.mk 38 # Avoid dependency cycle of framework.jar -> this-library -> framework.jar
  /hardware/interfaces/tv/input/1.0/
Android.mk 33 # Avoid dependency cycle of framework.jar -> this-library -> framework.jar
  /libcore/ojluni/src/main/java/java/util/jar/
JarEntry.java 26 package java.util.jar;
34 * This class is used to represent a JAR file entry.
43 * Creates a new <code>JarEntry</code> for the specified JAR file
46 * @param name the JAR file entry name
JarVerifier.java 27 package java.util.jar;
49 static final Debug debug = Debug.getInstance("jar");
51 /* a table mapping names to code signers, for jar entries that have
55 /* a table mapping names to code signers, for jar entries that have
131 * b. digest mismatch between the actual jar entry and the manifest
338 * the given file in the jar.
347 public java.security.cert.Certificate[] getCerts(JarFile jar, JarEntry entry)
349 return mapSignersToCertArray(getCodeSigners(jar, entry));
354 * the given file in the jar. this array is not cloned.
362 public CodeSigner[] getCodeSigners(JarFile jar, JarEntry entry
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
JarURLConnection.java 26 package sun.net.www.protocol.jar;
39 import java.util.jar.JarEntry;
40 import java.util.jar.JarFile;
41 import java.util.jar.Manifest;
52 /* the Jar file factory. It handles both retrieval and caching.
56 /* the url for the Jar file */
59 /* the permission to get this JAR file. This is the actual, ultimate,
60 * permission, returned by the jar file factory.
64 /* the url connection for the JAR file */
73 /* the jar file corresponding to this connection *
    [all...]
  /packages/apps/TV/
Android.mk 121 lib-exoplayer:libs/exoplayer.jar \
122 lib-exoplayer-v2:libs/exoplayer_v2.jar \
123 lib-exoplayer-v2-ext-ffmpeg:libs/exoplayer_v2_ext_ffmpeg.jar \
124 prebuilt-support-tv-provider:../../../prebuilts/sdk/current/support/tv-provider/android-support-tv-provider.jar \
  /prebuilts/misc/common/commons-cli/
Android.mk 30 LOCAL_SRC_FILES := commons-cli-1.2.jar
33 LOCAL_BUILT_MODULE_STEM := javalib.jar
  /prebuilts/misc/common/commons-compress/
Android.mk 21 LOCAL_SRC_FILES := commons-compress-prebuilt.jar
24 LOCAL_BUILT_MODULE_STEM := javalib.jar
  /prebuilts/misc/common/tools-common/
Android.mk 21 LOCAL_SRC_FILES := tools-common-prebuilt.jar
24 LOCAL_BUILT_MODULE_STEM := javalib.jar
  /tools/tradefederation/core/
script_help.sh 62 if [ -f "${CUR_DIR}/tradefed.jar" ]; then
65 # in an Android build env, tradefed.jar should be in
67 if [ -f "${ANDROID_HOST_OUT}/tradefed/tradefed.jar" ]; then
75 echo "ERROR: Could not find tradefed jar files"
82 for j in $folder/*.jar; do
  /build/make/core/
multi_prebuilt.mk 119 javalib.jar)
128 javalib.jar)
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
JarTestFinder.java 31 import java.util.jar.JarEntry;
32 import java.util.jar.JarFile;
45 new URL(String.format("jar:file:%s!/", jarTestFile.getAbsolutePath()))
  /development/scripts/
combine_sdks.sh 71 replace tools/lib/layoutlib.jar
73 replace android.jar
  /development/tools/idegen/src/
IntelliJ.java 77 for (File jar : c.jarFiles) {
79 + "<library><CLASSES><root url=\"jar://$MODULE_DIR$/")
80 .append(jar.getPath())
  /external/doclava/src/com/google/doclava/
JarUtils.java 25 import java.util.jar.JarEntry;
26 import java.util.jar.JarFile;
30 * Returns the jar file used to load class clazz, or defaultJar if clazz was not loaded from a
31 * jar.
42 String JAR_URI_PREFIX = "jar:file:";
47 throw new IllegalStateException("Error loading jar file.", e);
55 * Copies a directory from a jar file to an external directory.
79 throw new IOException("Could not copy asset from jar file", e);
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
demo.bat 16 set CLASSPATH=../translit.jar;%CLASSPATH%
  /external/proguard/examples/annotations/
examples.pro 5 # java -jar proguard.jar @examples.pro
14 -libraryjars <java.home>/lib/rt.jar
  /external/r8/scripts/
update-host-dx.sh 34 cp $ANDROID_HOST_BUILD/framework/dx.jar $DEST/framework
  /frameworks/layoutlib/
Android.mk 20 # Define rules to build temp_layoutlib.jar, which contains a subset of
21 # the classes in framework.jar. The layoutlib_create tool is used to
22 # transform the framework jar into the temp_layoutlib jar.
25 # We need to process the framework classes.jar file, but we can't
50 LOCAL_BUILT_MODULE_STEM := classes.jar
67 $(hide) java -ea -jar $(built_layoutlib_create_jar) \
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
JarURLConnectionTest.java 30 import java.util.jar.JarEntry;
31 import java.util.jar.JarFile;
32 import java.util.jar.JarOutputStream;
33 import java.util.jar.Manifest;
49 return new URL("jar:file:" + file.getPath() + "!/" + inFile);
57 URL u = copyAndOpenResourceStream("lf.jar", "swt.dll");
60 java.util.jar.Attributes a = juc.getJarEntry().getAttributes();
62 .get(new java.util.jar.Attributes.Name("Digest-Algorithms")));
70 URL u = copyAndOpenResourceStream("lf.jar", "plus.bmp");
74 u = copyAndOpenResourceStream("lf.jar", "");
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldAttributesTest.java 18 package libcore.java.util.jar;
20 import java.util.jar.Attributes;
OldJarInputStreamTest.java 18 package libcore.java.util.jar;
25 import java.util.jar.JarInputStream;
58 Support_Resources.copyFile(resources, null, "Broken_entry.jar");
59 InputStream is = Support_Resources.getStream("Broken_entry.jar");
66 Support_Resources.copyFile(resources, null, "Broken_entry_data.jar");
67 InputStream is = Support_Resources.getStream("Broken_entry_data.jar");

Completed in 1252 milliseconds

<<11121314151617181920>>