HomeSort by relevance Sort by last modified time
    Searched refs:jarfile (Results 1 - 25 of 25) sorted by null

  /cts/tools/cfassembler/etc/
cfassembler 37 jarfile=cfassembler.jar
39 if [ ! -r "$libdir/$jarfile" ]
43 if [ ! -r "$libdir/$jarfile" ]
47 if [ ! -r "$libdir/$jarfile" ]
49 echo `basename "$prog"`": can't find $jarfile"
61 jarpath=`cygpath -w "$libdir/$jarfile"`
63 jarpath="$libdir/$jarfile"
  /dalvik/tools/dexdeps/etc/
dexdeps 37 jarfile=dexdeps.jar
39 if [ ! -r "$libdir/$jarfile" ]
43 if [ ! -r "$libdir/$jarfile" ]
47 if [ ! -r "$libdir/$jarfile" ]
49 echo `basename "$prog"`": can't find $jarfile"
64 jarpath=`cygpath -w "$libdir/$jarfile"`
66 jarpath="$libdir/$jarfile"
  /cts/tools/dasm/etc/
dasm 37 jarfile=dasm.jar
39 if [ ! -r "$libdir/$jarfile" ]
43 if [ ! -r "$libdir/$jarfile" ]
47 if [ ! -r "$libdir/$jarfile" ]
49 echo `basename "$prog"`": can't find $jarfile"
61 jarpath=`cygpath -w "$libdir/$jarfile"`
63 jarpath="$libdir/$jarfile"
  /dalvik/dx/etc/
dx 37 jarfile=dx.jar
40 if [ ! -r "$libdir/$jarfile" ]; then
46 if [ ! -r "$libdir/$jarfile" ]; then
51 if [ ! -r "$libdir/$jarfile" ]; then
52 echo `basename "$prog"`": can't find $jarfile"
83 # For Cygwin, convert the jarfile path into native Windows style.
84 jarpath=`cygpath -w "$libdir/$jarfile"`
86 jarpath="$libdir/$jarfile"
mainDexClasses 72 jarfile=dx.jar
75 if [ ! -r "$libdir/$jarfile" ]; then
81 if [ ! -r "$libdir/$jarfile" ]; then
86 if [ ! -r "$libdir/$jarfile" ]; then
87 echo `basename "$prog"`": can't find $jarfile" 1>&2
142 # For Cygwin, convert the jarfile path into native Windows style.
143 jarpath=`cygpath -w "$libdir/$jarfile"`
147 jarpath="$libdir/$jarfile"
dx.bat 31 set jarfile=dx.jar variable
36 if exist "%frameworkdir%\%jarfile%" goto JarFileOk
39 if exist "%frameworkdir%\%jarfile%" goto JarFileOk
44 set "jarpath=%frameworkdir%\%jarfile%"
mainDexClasses.bat 29 set jarfile=dx.jar variable
33 if exist "%frameworkdir%\%jarfile%" goto JarFileOk
36 if exist "%frameworkdir%\%jarfile%" goto JarFileOk
40 set "jarpath=%frameworkdir%\%jarfile%"
  /development/tools/bugreport/
bugreport 37 jarfile=BugReport.jar
40 if [ ! -r "$libdir/$jarfile" ]; then
45 if [ ! -r "$libdir/$jarfile" ]; then
55 if [ ! -r "$libdir/$jarfile" ]; then
56 echo `basename "$prog"`": can't find $jarfile"
87 # For Cygwin, convert the jarfile path into native Windows style.
88 jarpath=`cygpath -w "$libdir/$jarfile"`
90 jarpath="$libdir/$jarfile"
  /build/soong/scripts/
jar-wrapper.sh 39 jarfile=`basename "${prog}"`.jar
42 if [ ! -r "${jardir}/${jarfile}" ]; then
46 if [ ! -r "${jardir}/${jarfile}" ]; then
47 echo `basename "${prog}"`": can't find ${jarfile}"
58 exec java ${javaOpts} -jar ${jardir}/${jarfile} "$@"
  /cts/tools/vm-tests-tf/etc/
vmtests-buildutil.sh 36 jarfile=vmtests-buildutil.jar
39 if [ ! -r "$libdir/$jarfile" ]; then
44 if [ ! -r "$libdir/$jarfile" ]; then
45 echo `basename "$prog"`": can't find $jarfile"
75 # For Cygwin, convert the jarfile path into native Windows style.
76 jarpath=`cygpath -w "$libdir/$jarfile"`
78 jarpath="$libdir/$jarfile"
  /external/oj-libjdwp/etc/
jdwpgen.sh 36 jarfile=jdwpgen.jar
39 if [ ! -r "$libdir/$jarfile" ]; then
44 if [ ! -r "$libdir/$jarfile" ]; then
45 echo `basename "$prog"`": can't find $jarfile"
75 # For Cygwin, convert the jarfile path into native Windows style.
76 jarpath=`cygpath -w "$libdir/$jarfile"`
78 jarpath="$libdir/$jarfile"
  /external/smali/scripts/
baksmali 38 jarfile=baksmali.jar
41 if [ ! -r "$libdir/$jarfile" ]; then
46 if [ ! -r "$libdir/$jarfile" ]; then
47 echo `basename "$prog"`": can't find $jarfile"
79 # For Cygwin, convert the jarfile path into native Windows style.
80 jarpath=`cygpath -w "$libdir/$jarfile"`
82 jarpath="$libdir/$jarfile"
smali 38 jarfile=smali.jar
41 if [ ! -r "$libdir/$jarfile" ]; then
46 if [ ! -r "$libdir/$jarfile" ]; then
47 echo `basename "$prog"`": can't find $jarfile"
79 # For Cygwin, convert the jarfile path into native Windows style.
80 jarpath=`cygpath -w "$libdir/$jarfile"`
82 jarpath="$libdir/$jarfile"
  /external/icu/tools/
icuutil.py 152 for jarfile in jarfiles:
153 icu_jarfile = os.path.join(icu_jar_data_dir, os.path.basename(jarfile))
154 if ziputil.ZipCompare(jarfile, icu_jarfile):
155 print('Ignoring %s which is identical to %s ...' % (jarfile, icu_jarfile))
157 print('Copying %s to %s ...' % (jarfile, icu_jar_data_dir))
158 shutil.copy(jarfile, icu_jar_data_dir)
  /external/emma/core/java12/com/vladium/emma/
runCommand.java 14 import java.util.jar.JarFile;
149 final File jarfile = new File (freeArgs [0]); local
153 jarMainClass = openJarFile (jarfile); // the rest of free args are *not* ignored
163 exit (true, "failed to load Main-Class manifest attribute from [" + jarfile.getAbsolutePath () + "]", null, RC_UNEXPECTED);
173 m_classpath = new String [] { jarfile.getPath () };
286 return "[options] class [args...] | -jar [options] jarfile [args...]";
297 JarFile jarfile = null; local
300 jarfile = new JarFile (file, false)
    [all...]
  /external/emma/core/java12/com/vladium/util/
IPathEnumerator.java 21 import java.util.jar.JarFile;
209 // note: Sun's JarFile uses native code and has been known to
216 // I try to read the manifest again via a JarFile if the stream
295 JarFile jarfile = null; local
298 jarfile = new JarFile (archive, false); // 3-arg constructor is not in J2SE 1.2
299 result = jarfile.getManifest ();
306 if (jarfile != null) try { jarfile.close (); } catch (IOException ignore) {}
    [all...]
  /external/emma/lib/
emma.jar 
  /external/owasp/sanitizer/tools/emma/lib/
emma.jar 
  /external/guice/extensions/struts2/lib/
xwork-core-2.2.1.jar 
javassist.jar 
ant-1.6.5.jar 
  /external/guice/extensions/persist/lib/
javassist.jar 
xwork-2.0.4.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 

Completed in 2012 milliseconds