Searched refs:errors (Results 51 - 75 of 142) sorted by relevance

123456

/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DDiffHBTest.java57 String errors = "";
62 if ("".equals(errors)) {
63 errors = "Failed to " + protocols[i] + ": "+s;
65 errors = "\tFailed to " + protocols[i] + ": "+s;
70 if ("".equals(errors)) {
75 throw new RuntimeException(errors);
/openjdk7/jdk/test/java/nio/charset/coders/
H A DCheck.java51 private int errors = 0; field in class:Check
83 if (++errors >= 100)
84 throw new RuntimeException("100 errors occurred (there might be more)");
141 if (errors > 0) {
142 throw new RuntimeException(errors + " error(s) occurred");
/openjdk7/langtools/test/tools/javac/6627362/
H A DT6627362.java46 if (errors > 0)
47 throw new Error(errors + " test cases failed");
98 errors++;
118 int errors; field in class:T6627362
/openjdk7/langtools/test/tools/javac/
H A DT6725036.java77 if (errors > 0)
78 throw new Exception(errors + " occurred");
87 errors++;
94 int errors; field in class:T6725036
H A DT6999210.java76 if (errors > 0)
77 throw new Exception(errors + " errors occurred");
120 errors++;
123 int errors; field in class:T6999210
H A DVersionOpt.java90 if (errors > 0)
91 throw new Exception(errors + " errors found");
99 errors++;
103 int errors; field in class:VersionOpt
/openjdk7/langtools/test/tools/javac/api/
H A DTestDocComments.java70 if (errors > 0)
71 throw new Exception(errors + " errors occurred");
149 errors++;
153 * field-errors.
155 int errors; field in class:TestDocComments
/openjdk7/langtools/test/tools/javac/generics/diamond/6996914/
H A DT6996914a.java128 if (el.errors > 0 == check(pk, ck)) {
129 String msg = el.errors > 0 ?
145 * DiagnosticListener to count any errors that occur
152 errors++;
155 int errors; field in class:T6996914a.ErrorListener
/openjdk7/langtools/test/tools/javac/literals/
H A DBinaryLiterals.java109 if (errors > 0)
110 throw new Exception(errors + " errors found");
127 errors++;
131 int errors; field in class:BinaryLiterals
/openjdk7/langtools/test/tools/javac/policy/test1/
H A DTest1b.java126 if (errors > 0)
127 throw new Exception(errors + " errors");
151 errors++;
155 int errors; field in class:Test1b
/openjdk7/langtools/test/tools/javac/policy/test3/
H A DTest.java73 if (errors > 0)
74 throw new Exception(errors + " errors occurred");
98 // that in bytodo mode, it will still attribute files after syntax errors.
121 errors++;
124 int errors; field in class:Test
139 // errors, accordining to the shouldStopPolicy
/openjdk7/langtools/test/tools/javac/processing/model/util/elements/
H A DTestGetConstantExpression.java56 int errors = 0;
60 errors += expectIllegalArgumentException(null);
61 errors += expectIllegalArgumentException(this);
104 if (errors > 0) {
/openjdk7/langtools/test/tools/javac/processing/options/testCommandLineClasses/
H A DTest.java56 if (errors > 0)
57 throw new RuntimeException(errors + " errors occurred");
88 int errors = 0; field in class:Test
92 errors++;
/openjdk7/langtools/test/tools/javac/tree/
H A DClassTreeTest.java61 if (errors > 0)
62 throw new Exception(errors + " errors found");
92 errors++;
96 int errors; field in class:ClassTreeTest
H A DMakeLiteralTest.java64 if (errors > 0)
65 throw new Exception(errors + " errors found");
84 errors++;
89 int errors; field in class:MakeLiteralTest
/openjdk7/langtools/test/tools/javadoc/6227454/
H A DTest.java51 if (errors > 0)
52 throw new Exception(errors + " errors occurred");
123 errors++;
127 int errors; field in class:Test
/openjdk7/langtools/test/tools/javadoc/6942366/
H A DT6942366.java43 int errors; field in class:T6942366
53 if (errors > 0)
54 throw new Exception(errors + " errors found");
130 errors++;
/openjdk7/langtools/test/tools/javadoc/6958836/
H A DTest.java51 if (errors > 0)
52 throw new Exception(errors + " errors occurred.");
115 errors++;
119 int errors; field in class:Test
/openjdk7/langtools/test/tools/javah/4942232/
H A DTest.java82 if (errors > 0)
83 throw new Exception(errors + " errors occurred");
137 errors++;
140 int errors; field in class:Test
/openjdk7/langtools/test/tools/javap/
H A DT4501661.java49 if (errors > 0)
50 throw new Exception(errors + " errors found");
122 errors++;
125 int errors; field in class:T4501661
H A DT4777949.java52 if (errors > 0)
53 throw new Exception(errors + " errors found");
106 errors++;
109 int errors; field in class:T4777949
H A DT6716452.java46 if (errors > 0)
47 throw new Exception(errors + " errors found");
109 errors++;
112 int errors; field in class:T6716452
/openjdk7/jdk/test/java/nio/charset/CharsetEncoder/
H A DCanEncode.java36 private static int errors = 0; field in class:CanEncode
43 errors++;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DClassDocCatalog.java83 * Stores errors for each package
85 private Map<String,Set<ClassDoc>> errors; field in class:ClassDocCatalog
121 errors = new HashMap<String,Set<ClassDoc>>();
144 addClass(classdoc, errors);
225 * Return all of the errors specified on the command-line
230 public ClassDoc[] errors(String packageName) { method in class:ClassDocCatalog
231 return getArray(errors, packageName);
/openjdk7/langtools/test/tools/javac/6402516/
H A DChecker.java51 errors = true;
63 if (errors)
64 throw new AssertionError("errors occurred creating trees");
73 if (errors)
74 throw new AssertionError("errors occurred checking scopes");
119 errors = true;
130 boolean errors = false; field in class:Checker

Completed in 61 milliseconds

123456