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

123456

/openjdk7/langtools/test/tools/javac/processing/
H A DT6920317.java90 if (errors > 0)
91 throw new Exception(errors + " errors occurred");
330 errors++;
336 /** Number of errors found. */
337 int errors; field in class:T6920317
/openjdk7/langtools/test/tools/javac/scope/
H A DStarImportTest.java65 if (errors > 0)
66 throw new Exception(errors + " errors found");
106 errors++;
112 int errors; field in class:StarImportTest
210 * @throws Exception for fatal errors, such as from reflection
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosTest.java88 * errors can be displayed in a gui viewer. For info on command line args,
100 * @summary assorted position errors in compiler syntax trees
107 * if any errors arise, otherwise System.exit will be used, unless the gui
183 if (errors > 0)
184 System.err.println(errors + " errors");
186 return (gui || errors == 0);
263 * @throws IOException if any IO errors occur
264 * @throws TreePosTest.ParseException if any errors occur while parsing the file
268 r.errors
297 int errors; field in class:TreePosTest
521 int errors; field in class:TreePosTest.Reporter
[all...]
/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java91 * errors can be displayed in a gui viewer. For info on command line args,
103 * @summary assorted position errors in compiler syntax trees
110 * if any errors arise, otherwise System.exit will be used, unless the gui
186 if (errors > 0)
187 System.err.println(errors + " errors");
189 return (gui || errors == 0);
266 * @throws IOException if any IO errors occur
267 * @throws TreePosTest.ParseException if any errors occur while parsing the file
271 r.errors
319 int errors; field in class:CheckAttributedTree
533 int errors; field in class:CheckAttributedTree.Reporter
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DURLClassLoader.java267 * and errors are not caught. Calling close on an already closed
286 List<IOException> errors = ucp.closeLoaders();
296 errors.add(ioex);
302 if (errors.isEmpty()) {
306 IOException firstex = errors.remove(0);
310 for (IOException error: errors) {
/openjdk7/langtools/test/tools/javac/parser/netbeans/
H A DJavacParserTest.java267 final List<Diagnostic<? extends JavaFileObject>> errors =
273 errors.add(diagnostic);
285 assertFalse("testErrorRecoveryForEnhancedForLoop142381", errors.isEmpty());
319 final List<Diagnostic<? extends JavaFileObject>> errors =
326 errors.add(diagnostic);
446 final List<Diagnostic<? extends JavaFileObject>> errors =
452 errors.add(diagnostic);
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java85 if (errors > 0)
86 throw new Exception(errors + " errors occurred");
221 errors++;
241 int errors; field in class:TestClientCodeWrapper
/openjdk7/langtools/test/tools/javac/diags/
H A DRunExamples.java89 throw new Exception(r.errors + " errors occurred");
171 return (errors == 0);
196 errors++;
201 int errors; field in class:RunExamples
/openjdk7/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java68 if (errors > 0)
69 throw new Exception(errors + " errors found");
197 errors++;
200 int errors; field in class:T6888367
/openjdk7/langtools/make/tools/GenStubs/
H A DGenStubs.java167 return (errors == 0);
197 errors++;
204 int errors; field in class:GenStubs
/openjdk7/jdk/src/windows/classes/sun/security/krb5/internal/tools/
H A DKtab.java420 void error(String... errors) { argument
421 for (String error: errors) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java374 * A wrapper of the standard error reporter. We'll store all schema errors
375 * in this wrapper object, so that we can get all errors (error codes) of
383 // store error codes; starting position of the errors for each element;
389 // set the external error reporter, clear errors
413 // should be called on endElement: get all errors of the current element
420 // number of errors of the current element
422 // if no errors, return null
425 // copy errors from the list to an string array
426 String[] errors = new String[size];
428 errors[
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DPackageDocImpl.java190 * Get ordinary classes (that is, exclude exceptions, errors,
225 public ClassDoc[] errors() { method in class:PackageDocImpl
/openjdk7/jdk/make/common/
H A DLibrary.gmk326 lint.errors : $(FILES_ln)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java130 * errors, although not aggressively so. flow, desugar, etc become no-ops
131 * once any errors have occurred. No attempt is currently made to determine
133 * it does not depend on any unrelated errors that might have occurred.
143 * This should catch most user errors.
151 * errors in any classes.
159 * errors in any of the classes in a source file.
457 /** Switch: treat warnings as errors
534 /** The number of errors reported so far.
1029 // Unless all the errors are resolve errors, th
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java1376 int errors = 0;
1397 errors++;
1413 errors++;
1427 errors++;
1446 errors++;
1450 if (errors != 0) {
1451 System.err.println("!!THERE ARE " + errors + " ERROR(S) IN "
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h642 jvmtiError* errors; member in struct:_jvmtiExtensionFunctionInfo

Completed in 70 milliseconds

123456