Searched defs:report (Results 1 - 25 of 72) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/ClassPathTest/
H A DClassPathTest.sh83 # report expectedResult $?
84 report() { function
104 report $expectedResult $?
/openjdk7/langtools/src/share/classes/javax/tools/
H A DDiagnosticListener.java48 void report(Diagnostic<? extends S> diagnostic); method in interface:DiagnosticListener
H A DDiagnosticCollector.java45 public void report(Diagnostic<? extends S> diagnostic) { method in class:DiagnosticCollector
/openjdk7/langtools/test/tools/javac/api/
H A DTestEvalExpression.java42 public void report(Diagnostic<? extends JavaFileObject> message) { method in class:TestEvalExpression.Listener
53 compilerFlags.add("-Xlint:all"); // report all warnings
/openjdk7/langtools/test/tools/javac/processing/6430209/
H A DT6430209.java81 public void report(Diagnostic d) { method in class:T6430209.MyDiagListener
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLReporter.java32 * This interface is used to report non-fatal errors.
63 public void report(String message, String errorType, Object relatedInformation, Location location) method in interface:XMLReporter
/openjdk7/langtools/test/tools/javac/
H A DT6410706.java66 public void report(Diagnostic d) { method in class:T6410706.MyDiagListener
/openjdk7/langtools/test/tools/javac/api/6437999/
H A DT6437999.java43 public void report(Diagnostic<? extends JavaFileObject> diagnostic) { method in class:T6437999.MyDiagnosticListener
/openjdk7/langtools/test/tools/javac/api/7086261/
H A DT7086261.java27 * @summary javac doesn't report error as expected, it only reports ClientCodeWrapper$DiagnosticSourceUnwrapper
54 public void report(Diagnostic message) { method in class:T7086261.DiagnosticChecker
/openjdk7/langtools/test/tools/javac/api/guide/
H A DTest.java44 public void report(Diagnostic<? extends JavaFileObject> diagnostic) { method in class:Test.DiagnosticTester
/openjdk7/langtools/test/tools/javac/processing/6348499/
H A DT6348499.java76 public void report(Diagnostic d) { method in class:T6348499.MyDiagListener
/openjdk7/langtools/test/tools/javac/processing/6414633/
H A DT6414633.java79 public void report(Diagnostic d) { method in class:T6414633.MyDiagListener
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/writer/
H A DProgressCodeWriter.java55 report(pkg, fileName);
60 report(pkg, fileName);
64 private void report(JPackage pkg, String fileName) { method in class:ProgressCodeWriter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DProgressCodeWriter.java56 report(pkg,fileName);
61 report(pkg,fileName);
65 private void report(JPackage pkg, String fileName) { method in class:ProgressCodeWriter
/openjdk7/jdk/test/java/lang/ClassLoader/findSystemClass/
H A DLoader.java117 report("findSystemClass()");
124 report("getSystemResource()");
132 report("getSystemResources()");
151 private static void report(String s) { method in class:Loader
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DReferencesTest.java70 report("After loading resource bundles for first half of class loaders: ");
79 report("After releasing first half of class loaders: ");
84 report("After loading resource bundles for second half of class loaders: ");
93 report("After releasing second half of class loaders: ");
104 private static void report(String when) throws Exception { method in class:ReferencesTest
/openjdk7/langtools/test/tools/javac/processing/
H A DT6439826.java95 public void report(Diagnostic d) { method in class:T6439826.MyDiagListener
/openjdk7/jdk/test/com/sun/jdi/
H A DPopAsynchronousTest.java53 void report(int n, int result) { method in class:PopAsynchronousTarg
60 pat.report(n, pat.fibonacci(n));
182 List meths = targetClass.methodsByName("report");
/openjdk7/jdk/test/java/io/Serializable/replaceStringArray/
H A DReplaceStringArray.java47 void report() { method in class:A
136 a.report();
182 a.report();
/openjdk7/jdk/test/java/lang/StringBuffer/
H A DIndexOf.java45 private static void report(String testName, int failCount) { method in class:IndexOf
93 report("Basic Test ", failCount);
131 report("IndexOf vs LastIndexOf ", failCount);
184 report("String vs StringBuffer ", failCount);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DDeferredLintHandler.java61 void report(); method in interface:DeferredLintHandler.LintLogger
67 public void report(LintLogger logger) { method in class:DeferredLintHandler
77 lintLogger.report();
91 public void report(LintLogger logger) {
92 logger.report();
/openjdk7/langtools/test/tools/javac/7142086/
H A DT7142086.java109 public void report(Diagnostic<? extends JavaFileObject> diagnostic) { method in class:T7142086.DiagnosticChecker
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/util/
H A DBark.java114 public void report(JCDiagnostic diagnostic) { method in class:Bark
118 super.report(diagnostic);
131 * @param pos The source position at which to report the error.
136 report(aptDiags.error(source, new SimpleDiagnosticPosition(pos), key, args));
150 * @param pos The source position at which to report the warning.
155 report(aptDiags.warning(source, new SimpleDiagnosticPosition(pos), key, args));
167 * @param pos The source position at which to report the note.
172 report(aptDiags.note(source, new SimpleDiagnosticPosition(pos), key, args));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbstractLog.java84 report(diags.error(source, null, key, args));
89 * @param pos The source position at which to report the error.
94 report(diags.error(source, pos, key, args));
100 * @param pos The source position at which to report the error.
107 report(d);
112 * @param pos The source position at which to report the error.
117 report(diags.error(source, wrap(pos), key, args));
123 * @param pos The source position at which to report the error.
130 report(d);
135 * @param pos The source position at which to report th
243 protected abstract void report(JCDiagnostic diagnostic); method in class:AbstractLog
[all...]
/openjdk7/langtools/test/tools/javac/6863465/
H A DTestCircularClassfile.java116 public void report(Diagnostic<? extends JavaFileObject> diagnostic) { method in class:TestCircularClassfile.DiagnosticChecker

Completed in 154 milliseconds

123