Searched defs:javap (Results 26 - 44 of 44) sorted by relevance

12

/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DDisassemblerTool.java26 package com.sun.tools.javap; //javax.tools;
H A DAnnotationWriter.java26 package com.sun.tools.javap;
H A DCodeWriter.java26 package com.sun.tools.javap;
H A DLocalVariableTableWriter.java26 package com.sun.tools.javap;
H A DLocalVariableTypeTableWriter.java26 package com.sun.tools.javap;
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 DSourceWriter.java26 package com.sun.tools.javap;
H A DTryBlockWriter.java26 package com.sun.tools.javap;
H A DBasicWriter.java26 package com.sun.tools.javap;
H A DStackMapWriter.java26 package com.sun.tools.javap;
H A DConstantWriter.java26 package com.sun.tools.javap;
H A DAttributeWriter.java26 package com.sun.tools.javap;
223 if (options.compat) // BUG 6622216 javap names some attributes incorrectly
296 // BUG 6622215: javap ignores certain relevant access flags
298 // BUG 6622232: javap gets whitespace confused
342 if (options.compat) // BUG 6622216: javap names some attributes incorrectly
654 if (options.compat) // BUG 6622260: javap prints negative bytes incorrectly in hex
H A DClassWriter.java26 package com.sun.tools.javap;
62 * The main javap class to write the contents of a class file as text.
552 if (options.compat) // javap does not recognize recent attributes
H A DJavapTask.java26 package com.sun.tools.javap;
69 * "Main" class for javap, normally accessed from the command line
697 // to suit javap's needs
898 private static final String versionRBName = "com.sun.tools.javap.resources.version";
997 b = ResourceBundle.getBundle("com.sun.tools.javap.resources.javap", locale);
1000 throw new InternalError("Cannot find javap resource bundle for locale " + locale);
1023 private static final String progname = "javap";
/openjdk7/langtools/test/tools/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 DT4975569.java27 * @summary javap doesn't print new flag bits
53 String output = javap(className);
67 String javap(String className) { method in class:T4975569
73 int rc = com.sun.tools.javap.Main.run(args, out);
75 throw new Error("javap failed. rc=" + rc);
H A DT6868539.java27 * @summary javap should use current names for constant pool entries,
42 String output = javap("T6868539");
74 String javap(String className) { method in class:T6868539
79 int rc = com.sun.tools.javap.Main.run(args, out);
81 throw new Error("javap failed. rc=" + rc);
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 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);

Completed in 109 milliseconds

12