Searched refs:javap (Results 26 - 50 of 63) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/6627362/
H A DT6627362.java60 javap(new PrintWriter(sw, true), jpArgs);
77 javap(new PrintWriter(sw, true), jpArgs);
88 void javap(PrintWriter out, String... args) throws Exception { method in class:T6627362
89 int rc = com.sun.tools.javap.Main.run(args, out);
91 throw new Error("javap failed: " + Arrays.asList(args) + ": " + rc);
/openjdk7/langtools/test/tools/javac/code/
H A DArrayClone.java43 int rc = com.sun.tools.javap.Main.run(args, pw);
45 throw new Error("javap failed; exit " + rc);
55 throw new Error("expected string not found in javap output");
/openjdk7/langtools/test/tools/javap/6937244/
H A DT6937244.java41 int rc = com.sun.tools.javap.Main.run(args, pw);
46 throw new Exception("unexpected exit from javap: " + rc);
H A DT6937244A.java42 int rc = com.sun.tools.javap.Main.run(args, pw);
47 throw new Exception("unexpected exit from javap: " + rc);
/openjdk7/langtools/test/tools/javap/
H A DT4884240.java29 * @summary additional option required for javap
43 int rc = com.sun.tools.javap.Main.run(args, pw);
H A DT6715753.java29 * @summary Use javap to inquire about a specific inner class
41 int rc = com.sun.tools.javap.Main.run(args, pw);
45 || log.indexOf("javap") == -1) { // locale-independent indication of usage message
H A DT6715767.java27 * @summary javap on java.lang.ClassLoader crashes
41 int rc = com.sun.tools.javap.Main.run(args, pw);
43 sw.toString().indexOf("at com.sun.tools.javap.JavapTask.run") != -1) {
H A DT6863746.java29 * @summary javap should not scan ct.sym by default
41 int rc = com.sun.tools.javap.Main.run(args, pw);
50 throw new Exception("unexpected output from javap");
H A DT4501661.java63 String out = javap(args, expectOK);
95 String javap(List<String> args, boolean expectOK) { method in class:T4501661
98 int rc = com.sun.tools.javap.Main.run(args.toArray(new String[args.size()]), pw);
105 error("javap failed unexpectedly; rc=" + rc + "\n" + sw);
108 error("javap succeeded unexpectedly");
H A DT4777949.java27 import com.sun.tools.javap.*;
32 * @summary Warn javap usage on package with simple name
58 javap(Arrays.asList("-classpath", classPath), Arrays.asList(className));
84 List<Diagnostic<? extends JavaFileObject>> javap(List<String> args, List<String> classes) { method in class:T4777949
95 error("javap failed unexpectedly");
H A DT6879371.java27 * @summary javap does not close internal default file manager
41 // javap.
62 javap("-classpath", zipFile.getPath(), className);
103 String javap(String... args) { method in class:T6879371
106 int rc = com.sun.tools.javap.Main.run(args, out);
108 throw new Error("javap failed. rc=" + rc);
H A DT6980017.java27 * @summary javap -XDdetail:source behaves badly if source not available.
47 int rc = com.sun.tools.javap.Main.run(args, pw);
H A DT6622260.java27 * @summary javap prints negative bytes incorrectly in hex
41 String output = javap(classFile);
180 String javap(File f) { method in class:T6622260
183 int rc = com.sun.tools.javap.Main.run(new String[] { "-v", f.getPath() }, out);
185 throw new Error("javap failed. rc=" + rc);
H A DTestSuperclass.java27 * @summary javap prints "extends java.lang.Object"
118 String out = javap(testClass);
123 // Extract class sig from line from javap output
131 String javap(File file) { method in class:TestSuperclass
135 int rc = com.sun.tools.javap.Main.run(args, pw);
141 throw new Error("javap failed: rc=" + rc);
H A DT6824493.java40 // for each of the options, we run javap and check for some
79 int rc = com.sun.tools.javap.Main.run(args, pw);
81 error("unexpected return code from javap: " + rc);
H A DT6866657.java34 import com.sun.tools.javap.*;
/openjdk7/langtools/test/tools/javac/stackmap/
H A DT4955930.sh56 TMP1=T4955930.javap
66 "${TESTJAVA}${FS}bin${FS}javap" ${TESTTOOLVMOPTS} -verbose T4955930 > ${TMP1}
/openjdk7/langtools/test/tools/javap/stackmap/
H A DT6271292.sh30 # @summary Verify that javap prints StackMapTable attribute contents
64 JAVAPFILE=T6271292.javap
67 "${TESTJAVA}${FS}bin${FS}javap" ${TESTTOOLVMOPTS} -classpath "${TESTCLASSES}" -verbose T6271292 > "${JAVAPFILE}"
/openjdk7/jdk/make/common/internal/
H A DDefs-langtools.gmk43 com/sun/tools/javap
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DDisassemblerTool.java26 package com.sun.tools.javap; //javax.tools;
H A DJavapFileManager.java26 package com.sun.tools.javap;
37 * javap's implementation of JavaFileManager.
H A DOptions.java26 package com.sun.tools.javap;
35 * Provides access to javap's options, set via the command line
92 public boolean compat; // bug-for-bug compatibility mode with old javap
H A DAnnotationWriter.java26 package com.sun.tools.javap;
/openjdk7/langtools/test/
H A DMakefile216 jtreg apt javac javadoc javah javap: $(JPRT_CLEAN) jtreg-tests $(JPRT_ARCHIVE_BUNDLE) jtreg-summary
232 javap: JTREG_TESTDIRS = tools/javap
411 jtreg javac javadoc javah javap jtreg-tests jtreg-summary check-jtreg \
/openjdk7/jdk/make/launchers/
H A DMakefile66 $(call make-launcher, javap, com.sun.tools.javap.Main, , )

Completed in 183 milliseconds

123