Searched refs:errors (Results 251 - 275 of 329) sorted by relevance

<<11121314

/openjdk10/langtools/test/tools/javac/doclint/
H A DDocLintTest.java150 if (errors > 0)
151 throw new Exception(errors + " errors occurred");
187 // if (errors > 0)
226 errors++;
229 int errors; field in class:DocLintTest
/openjdk10/langtools/test/tools/javac/diags/
H A DCheckExamples.java152 if (errors > 0)
153 throw new Exception(errors + " errors occurred.");
216 errors++;
219 int errors; field in class:CheckExamples
/openjdk10/langtools/test/tools/javac/processing/model/
H A DTestSymtabItems.java100 if (errors > 0)
101 throw new Exception(errors + " errors occurred");
120 errors++;
123 int errors; field in class:TestSymtabItems
/openjdk10/langtools/test/tools/javac/doctree/
H A DDocTreePathScannerTest.java85 if (errors > 0)
86 throw new Exception(errors + " errors occurred");
92 errors++;
95 int errors; field in class:DocTreePathScannerTest
H A DSimpleDocTreeVisitorTest.java91 if (errors > 0)
92 throw new Exception(errors + " errors occurred");
98 errors++;
101 int errors; field in class:SimpleDocTreeVisitorTest
/openjdk10/langtools/test/tools/javac/nativeHeaders/javahComparison/
H A DCompareTest.java101 if (errors > 0)
102 throw new Exception(errors + " errors occurred");
164 errors++;
167 private int errors; field in class:CompareTest
/openjdk10/langtools/test/tools/javac/tree/
H A DDocCommentToplevelTest.java89 static int errors; field in class:DocCommentToplevelTest
109 if (errors > 0)
110 throw new AssertionError(errors + " errors found");
187 errors++;
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/classfile/
H A DTestAnonInnerClasses.java58 // tally errors and test cases
59 int errors = 0; field in class:TestAnonInnerClasses
101 errors++;
110 errors++;
119 errors++;
128 errors++;
140 if (errors!=0) {
141 System.err.println("Failed tests: " + errors +
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DCheckGraalInvariants.java220 List<String> errors = Collections.synchronizedList(new ArrayList<>());
231 errors.add(String.format("Expected error while checking %s", m));
235 errors.add(String.format("Error while checking %s:%n%s", m, printStackTraceToString(e)));
239 if (errors.isEmpty()) {
250 errors.add(String.format("Error while checking %s:%n%s", className, printStackTraceToString(e)));
271 errors.add(e.getMessage());
273 // suppress linkages errors resulting from eager resolution
282 errors.add(String.format("Error while checking %s:%n%s", methodName, printStackTraceToString(e)));
298 if (!errors.isEmpty()) {
301 for (String e : errors) {
[all...]
/openjdk10/jdk/test/sun/nio/cs/
H A DTestCharsetMapping.java195 log.println(" Too many errors, giving up");
249 log.println(" Too many errors, giving up");
582 int errors = 0;
597 errors++;
605 errors++;
611 errors++;
628 errors++;
647 errors++;
655 if (errors > 0)
657 + errors
[all...]
/openjdk10/nashorn/test/src/jdk/nashorn/internal/test/framework/
H A DParallelTestRunner.java167 int errors;
169 errors = evaluateScript(out, err, args.toArray(new String[0]));
174 errors = 1;
176 if (errors != 0 || checkCompilerMsg) {
183 if (errors != 0 && !expectCompileFailure) {
184 fail(String.format("%d errors compiling %s", errors, testFile));
190 if (expectCompileFailure && errors == 0) {
191 fail(String.format("No errors encountered compiling negative test %s", testFile));
202 final int errors
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DMediaTracker.java146 * // Paint a large red rectangle if there are any errors
281 * check for errors.
305 * check for errors.
356 * there are none with errors
372 Object errors[] = new Object[numerrors];
377 errors[numerrors++] = cur.getMedia();
381 return errors;
392 * check for errors.
413 * check for errors.
496 * check for errors
[all...]
/openjdk10/jdk/src/java.base/macosx/native/libnio/ch/
H A DKQueueArrayWrapper.c113 struct kevent errors[2]; local
118 // Ignore errors - they're probably complaints about deleting non-
123 kevent(kq, changes, 2, errors, 2, &dontBlock);
/openjdk10/jdk/test/java/lang/Math/
H A DExactArithTests.java36 * The count of test errors.
38 private static int errors = 0; field in class:ExactArithTests
48 if (errors > 0) {
49 throw new RuntimeException(errors + " errors found in ExactArithTests.");
54 errors++;
H A DDivModTests.java36 * The count of test errors.
38 private static int errors = 0; field in class:DivModTests
44 errors = 0;
48 if (errors > 0) {
49 throw new RuntimeException(errors + " errors found in DivMod methods.");
59 errors++;
/openjdk10/langtools/test/jdk/javadoc/tool/doclint/
H A DDocLintTest.java207 if (errors > 0)
208 throw new Exception(errors + " errors occurred");
243 // if (errors > 0)
284 errors++;
287 int errors; field in class:DocLintTest
/openjdk10/langtools/test/tools/javac/api/taskListeners/
H A DTestSimpleAddRemove.java227 if (errors > 0)
228 throw new Exception(errors + " errors occurred");
364 int errors; field in class:TestSimpleAddRemove
368 errors++;
/openjdk10/langtools/test/tools/javac/literals/
H A DUnderscoreLiterals.java206 if (errors > 0)
207 throw new Exception(errors + " errors found");
230 errors++;
234 int errors; field in class:UnderscoreLiterals
/openjdk10/langtools/test/tools/javac/profiles/
H A DProfileOptionTest.java97 // sadly, command line errors are not (yet?) reported to
139 // sadly, command line errors are not (yet?) reported to
284 if (errors > 0)
285 throw new Exception(errors + " errors occurred");
293 errors++;
296 int errors; field in class:ProfileOptionTest
/openjdk10/langtools/test/tools/javac/processing/model/util/elements/doccomments/
H A DTestDocComments.java73 if (errors > 0)
74 throw new Exception(errors + " errors occurred");
134 errors++;
138 static int errors; field in class:TestDocComments
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/
H A DLog.java41 * errors,requests,headers,
44 * Any of errors, requests, headers or content are optional.
83 case "errors":
137 public static boolean errors() { method in class:Log
162 if (errors()) {
168 if (errors()) {
/openjdk10/jdk/test/jdk/internal/reflect/CallerSensitive/
H A DCallerSensitiveFinder.java82 List<String> errors = csfinder.run(classes);
84 if (!errors.isEmpty()) {
85 throw new RuntimeException(errors.size() +
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DPackageFrameWriter.java140 contents.errors, contentTree);
152 addClassKindListing(config.typeElementCatalog.errors(packageElement),
153 contents.errors, contentTree);
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/
H A DCheckErrorsForSource7.java111 //verify the errors are produce correctly:
126 DiagnosticCollector<JavaFileObject> errors = new DiagnosticCollector<>();
129 errors,
137 for (Diagnostic<? extends JavaFileObject> d : errors.getDiagnostics()) {
147 throw new IllegalStateException("Did not produce proper errors for: " + updated);
/openjdk10/langtools/test/tools/javah/6572945/
H A DT6572945.java73 return (errors == 0);
235 errors++;
238 private int errors; field in class:T6572945

Completed in 242 milliseconds

<<11121314