Searched refs:javap (Results 1 - 25 of 95) sorted by relevance

1234

/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/javap/
H A Dpackage-info.java34 package com.sun.tools.javap;
H A DInternalError.java26 package com.sun.tools.javap;
H A DMessages.java26 package com.sun.tools.javap;
31 * Access to javap messages.
H A DInstructionDetailWriter.java26 package com.sun.tools.javap;
/openjdk10/langtools/test/tools/javap/
H A DT6587786.java28 * @modules jdk.jdeps/com.sun.tools.javap
39 javap("com.sun.javadoc.Doc", "com.sun.crypto.provider.ai");
40 javap("com.sun.crypto.provider.ai", "com.sun.javadoc.ClassDoc");
43 void javap(String... args) { method in class:T6587786
46 //sun.tools.javap.Main.entry(args);
47 int rc = com.sun.tools.javap.Main.run(args, out);
49 throw new Error("javap failed. rc=" + rc);
H A DT8033711.java28 * @modules jdk.jdeps/com.sun.tools.javap
39 String out = javap("-classpath");
41 throw new Exception("exception found in javap output");
43 throw new Exception("expected error message not found in javap output");
46 String javap(String... args) { method in class:T8033711
49 int rc = com.sun.tools.javap.Main.run(args, out);
52 System.out.println("javap exited, rc=" + rc);
H A DExtPath.java27 * @summary javap cannot read multiple entries on the extension classpath
29 * @modules jdk.jdeps/com.sun.tools.javap
33 import com.sun.tools.javap.Main;
H A DT6715251.java27 * @summary javap should be consistent with javac and return 2 if given no arguments
28 * @modules jdk.jdeps/com.sun.tools.javap
53 int rc = javap(args);
60 int javap(String... args) { method in class:T6715251
63 int rc = com.sun.tools.javap.Main.run(args, pw);
H A DT8035104.java27 * @summary reorder class file attributes in javap listing
28 * @modules jdk.jdeps/com.sun.tools.javap
39 String[] lines = javap("-v", T8035104.class.getName()).split("[\r\n]+");
59 String javap(String... args) { method in class:T8035104
62 int rc = com.sun.tools.javap.Main.run(args, out);
65 System.out.println("javap exited, rc=" + rc);
H A DT4876942.java27 * @summary javap invoked without args does not print help screen
28 * @modules jdk.jdeps/com.sun.tools.javap
40 String output = javap();
47 String javap(String... args) { method in class:T4876942
50 //sun.tools.javap.Main.entry(args);
51 int rc = com.sun.tools.javap.Main.run(args, out);
53 throw new Error("javap failed. rc=" + rc);
H A DT4501660.java29 * @modules jdk.jdeps/com.sun.tools.javap
42 String output = javap("-classpath", testClasses, "-help", "T4501660");
52 String javap(String... args) { method in class:T4501660
55 //sun.tools.javap.Main.entry(args);
56 int rc = com.sun.tools.javap.Main.run(args, out);
58 throw new Error("javap failed. rc=" + rc);
H A DT6474890.java27 * @summary javap does not open .zip files in -classpath
28 * @modules jdk.jdeps/com.sun.tools.javap
48 javap("-classpath", zipFile.getPath(), className);
51 javap("-classpath", zipFile.getPath(), className);
86 String javap(String... args) { method in class:T6474890
89 //sun.tools.javap.Main.entry(args);
90 int rc = com.sun.tools.javap.Main.run(args, out);
92 throw new Error("javap failed. rc=" + rc);
H A DT6622216.java27 * @summary javap names some attributes incorrectly
28 * @modules jdk.jdeps/com.sun.tools.javap
41 String output = javap(classFile);
63 String javap(File f) { method in class:T6622216
66 int rc = com.sun.tools.javap.Main.run(new String[] { "-v", f.getPath() }, out);
68 throw new Error("javap failed. rc=" + rc);
H A DT4075403.java27 * @summary Use javap to inquire about a specific inner class
28 * @modules jdk.jdeps/com.sun.tools.javap
43 javap("Outer.Inner");
64 String javap(String className) { method in class:T4075403
67 int rc = com.sun.tools.javap.Main.run(new String[] { "-classpath", ".", className }, out);
69 throw new Error("javap failed. rc=" + rc);
H A DStackMapTableTest.java28 * @modules jdk.jdeps/com.sun.tools.javap
41 String out = javap("-v", "-classpath", testClasses, A.class.getName());
63 String javap(String... args) throws Exception { method in class:StackMapTableTest
66 int rc = com.sun.tools.javap.Main.run(args, out);
70 throw new Exception("javap exited, rc=" + rc);
81 /** Simple test class to run through javap. */
H A DWhitespaceTest.java28 * @modules jdk.jdeps/com.sun.tools.javap
56 String out = javap(args);
71 String javap(String... args) throws Exception { method in class:WhitespaceTest
74 int rc = com.sun.tools.javap.Main.run(args, out);
78 throw new Exception("javap exited, rc=" + rc);
H A DT6868539.java27 * @summary javap should use current names for constant pool entries,
29 * @modules jdk.jdeps/com.sun.tools.javap
43 String output = javap("T6868539");
77 String javap(String className) { method in class:T6868539
82 int rc = com.sun.tools.javap.Main.run(args, out);
84 throw new Error("javap failed. rc=" + rc);
H A DT4880663.java27 * @summary javap could output whitespace between class name and opening brace
28 * javap prints "extends java.lang.Object"
29 * @modules jdk.jdeps/com.sun.tools.javap
65 String javap(File classFile) { method in class:T4880663
68 int rc = com.sun.tools.javap.Main.run(new String[] { classFile.getPath() }, out);
70 throw new Error("javap failed. rc=" + rc);
77 String output = javap(classFile);
H A DT6271787.java27 * @summary javap dumps LocalVariableTypeTable attribute in hex, needs to print a table
28 * @modules jdk.jdeps/com.sun.tools.javap
44 "0 5 0 this LTest<TT;>;" // should consider decoding this in javap
67 String javap(File f) { method in class:T6271787
70 int rc = com.sun.tools.javap.Main.run(new String[] { "-v", f.getPath() }, out);
72 throw new Error("javap failed. rc=" + rc);
78 String output = javap(classFile);
H A DT4880672.java27 * @summary javap does not output inner interfaces of an interface
28 * @modules jdk.jdeps/com.sun.tools.javap
49 String output = javap(className);
63 String javap(String className) { method in class:T4880672
68 int rc = com.sun.tools.javap.Main.run(args, out);
74 throw new Error("javap failed. rc=" + rc);
76 throw new Error("javap reported error.");
/openjdk10/jdk/test/java/lang/instrument/
H A DVerifyLocalVariableTableOnRetransformTest.sh72 echo "INFO: 'javap -v' comparison between the .class files:"
73 ${JAVA}p -v -classpath "${TESTCLASSES}" DummyClassWithLVT > orig.javap
74 ${JAVA}p -v DummyClassWithLVT > mismatched.javap
75 diff orig.javap mismatched.javap
/openjdk10/langtools/make/test/lib/
H A Djavap.sh27 # @summary Verify the basic execution of the javap classes in classes.jar.
38 sun.tools.javap.Main \
39 -classpath . HelloWorld > javap.tmp
41 if diff ${TESTSRC}/../HelloWorld.javap.gold.txt javap.tmp ; then
/openjdk10/jdk/make/launcher/
H A DLauncher-jdk.jdeps.gmk28 $(eval $(call SetupBuildLauncher, javap, \
29 MAIN_CLASS := com.sun.tools.javap.Main, \
/openjdk10/langtools/src/jdk.jdeps/share/classes/
H A Dmodule-info.java29 * <em>{@index javap javap tool}</em>, and
34 * <em>javap</em> and <em>jdeps</em> tools via the
41 * {@code "javap"} or {@code "jdeps"} as appropriate.
49 * <dd>{@extLink javap_tool_reference javap},
66 com.sun.tools.javap.Main.JavapToolProvider,
/openjdk10/langtools/make/gensrc/
H A DGensrc-jdk.jdeps.gmk29 com/sun/tools/javap/resources/version.properties))

Completed in 139 milliseconds

1234