Searched refs:errors (Results 76 - 100 of 142) sorted by relevance

123456

/openjdk7/langtools/test/tools/javac/6508981/
H A DTestInferBinaryName.java67 if (errors > 0)
68 throw new Exception(errors + " error found");
124 errors++;
167 errors++;
171 private int errors; field in class:TestInferBinaryName
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DControlFactoryTest.java43 static int errors; field in class:ControlFactoryTest
62 if (errors > 0) {
63 throw new RuntimeException("FAILED: " + errors + " error(s)");
158 errors++;
163 errors++;
H A DLoadingStrategiesTest.java34 static int errors; field in class:LoadingStrategiesTest
69 // Check any errors
70 if (errors > 0) {
71 throw new RuntimeException("FAILED: " + errors + " error(s)");
150 errors++;
155 errors++;
/openjdk7/langtools/test/tools/javac/
H A DTestPkgInfo.java58 if (errors > 0) throw new AssertionError();
64 if (errors > 0)
65 throw new Exception(errors + " errors occurred");
166 errors++;
172 /** Number of errors found. */
173 int errors; field in class:TestPkgInfo
H A DT6956638.java84 if (errors > 0)
85 throw new Exception(errors + " tests failed");
132 errors++;
136 int errors; field in class:T6956638
H A DT6403466.java70 if (vtl.iter.hasNext() || vtl.errors)
145 errors = true;
151 boolean errors; field in class:VerifyingTaskListener
/openjdk7/jdk/test/sun/util/resources/TimeZone/
H A DBug4640234.java78 StringBuffer errors = new StringBuffer("");
119 if (errors.indexOf(result[1]) == -1) {
120 errors.append(result[1]);
135 if (errors.indexOf(result[1]) == -1) {
136 errors.append(result[1]);
142 if (!"".equals(errors.toString())) {
152 System.out.println(errors.toString());
222 * other cases, [0] - warnings for not localized, [1] - errors for missing keys.
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DPackageSummaryBuilder.java279 * Build the summary for the errors in this package.
289 configuration.getText("doclet.errors"));
294 ClassDoc[] errors =
296 ? packageDoc.errors()
297 : configuration.classDocCatalog.errors(
299 errors = filterOutPrivateClasses(errors);
300 if (errors.length > 0) {
302 errors,
/openjdk7/jdk/test/java/security/PermissionCollection/
H A DConcurrent.java48 private static final Map errors = field in class:Concurrent
64 if (errors.size() > 0) {
66 Iterator iter = errors.entrySet().iterator();
71 throw (Exception) new Exception("Got errors");
95 errors.put(perm[0].getClass().getName(), e);
117 errors.put(perm[0].getClass().getName(), e);
140 errors.put("java.security.Permissions", e);
164 errors.put("java.security.Permissions", e);
/openjdk7/jdk/test/tools/pack200/
H A DTimeStamp.java130 int errors = 0;
145 errors++;
152 if (errors > 0) {
153 throw new RuntimeException("FAIL:" + errors + " error(s) encounted");
/openjdk7/langtools/test/tools/javac/6917288/
H A DT6917288.java45 if (errors > 0)
46 throw new Exception(errors + " errors occurred");
153 errors++;
157 int errors; field in class:T6917288
/openjdk7/langtools/test/tools/javac/processing/filer/
H A DTestGetResource2.java114 if (errors > 0)
115 throw new Exception(errors + " errors occurred");
164 errors++;
167 int errors = 0; field in class:TestGetResource2
/openjdk7/langtools/test/tools/javac/processing/model/element/
H A DTestAnonClassNames.java110 if (errors > 0)
111 throw new RuntimeException(errors + " errors occurred");
153 static int errors = 0; field in class:TestAnonClassNames
157 errors++;
/openjdk7/langtools/test/tools/javac/tree/
H A DT6993305.java72 if (errors > 0)
73 throw new Exception(errors + " errors occurred");
78 errors++;
81 int errors; field in class:T6993305
/openjdk7/langtools/test/tools/javac/processing/
H A DTestWarnErrorCount.java50 * Type of errors to generate in test case.
53 /** No errors. */
55 /** Source code errors. */
114 if (errors > 0)
115 throw new Exception(errors + " errors found");
126 if (stopOnError && errors > 0)
127 throw new Exception(errors + " errors found");
139 * @param ek The type of errors t
290 int errors = 0; field in class:TestWarnErrorCount
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DRemoteClass.java63 * return value will be null, and errors will have been reported to
311 boolean errors = false;
318 errors = true;
320 if (errors)
422 boolean errors = false;
474 * errors can be reported.
479 errors = true;
501 errors = true;
536 errors = true;
553 errors
[all...]
/openjdk7/langtools/test/tools/javac/diags/
H A DCheckResourceKeys.java47 * @throws Exception if invoked by jtreg and errors occur
55 throw new Exception(c.errors + " errors occurred");
93 if (errors > 0)
105 return (errors == 0);
188 // JavaCompiler, reports #errors and #warnings
376 errors++;
379 int errors; field in class:CheckResourceKeys
/openjdk7/langtools/test/tools/javac/processing/errors/
H A DTestSuppression.java79 if (errors > 0) throw new AssertionError();
86 if (errors > 0)
87 throw new Exception(errors + " errors occurred");
163 errors++;
167 int errors; field in class:TestSuppression
/openjdk7/jdk/src/share/classes/java/awt/
H A DMediaTracker.java145 * // Paint a large red rectangle if there are any errors
271 * check for errors.
295 * check for errors.
346 * there are none with errors
362 Object errors[] = new Object[numerrors];
367 errors[numerrors++] = cur.getMedia();
371 return errors;
382 * check for errors.
403 * check for errors.
486 * check for errors
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/jrmp/
H A DRemoteClass.java82 * errors will have been reported to the supplied
229 boolean errors = false;
233 * Continue iterating despite errors in order to
236 errors = true;
239 if (errors) {
301 boolean errors = false;
324 * errors can be reported.
330 errors = true;
347 errors = true;
385 errors
[all...]
/openjdk7/langtools/test/tools/javac/api/
H A DTestJavacTask_ParseAttrGen.java123 errors++;
126 int errors; field in class:TestJavacTask_ParseAttrGen
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xslt/
H A DEnvironmentCheck.java148 * sometimes reports errors that will not actually affect
211 * errors - namely when a developer recompiles xalan.jar on their
264 boolean errors = false;
283 errors |= logFoundJars(v, keyStr);
294 errors = true;
308 return errors;
357 * as having errors
366 boolean errors = false;
385 errors = true;
392 errors
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExtensions.cpp65 0, // no non-universal errors
154 // errors
159 ext_funcs[i].errors = NULL;
162 (unsigned char**)&(ext_funcs[i].errors));
166 memcpy(ext_funcs[i].errors, _ext_functions->at(i)->errors,
/openjdk7/jdk/test/tools/launcher/
H A DTest7029048.java48 static int errors = 0; field in class:Test7029048
161 errors++;
297 if (errors > 0) {
299 + errors + " errors and passes " + passes);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/sun/tools/pack/verify/
H A DGlobals.java38 private static int errors = 0; field in class:Globals
118 return errors;
136 errors++;
141 errors++;

Completed in 249 milliseconds

123456