Searched defs:errors (Results 26 - 50 of 105) sorted by relevance

12345

/openjdk7/langtools/test/tools/javac/tree/
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/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/javah/
H A DT6994608.java45 if (errors > 0)
46 throw new Exception(errors + " errors occurred");
84 errors++;
87 int errors; field in class:T6994608
/openjdk7/langtools/test/tools/javah/T7126832/
H A DT7126832.java52 if (errors > 0) {
53 throw new Exception(errors + " errors occurred");
102 errors++;
105 int errors; field in class:T7126832
/openjdk7/langtools/test/tools/javap/4870651/
H A DT4870651.java51 if (errors > 0)
52 throw new Error(errors + " found.");
80 errors++;
83 int errors; field in class:T4870651
/openjdk7/langtools/test/tools/javap/
H A DT4501660.java47 if (errors > 0)
48 throw new Error(errors + " found.");
72 errors++;
75 int errors; field in class:T4501660
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 DT4876942.java42 if (errors > 0)
43 throw new Error(errors + " found.");
66 errors++;
69 int errors; field in class:T4876942
H A DT4880663.java44 if (errors > 0)
45 throw new Error(errors + " found.");
85 errors++;
88 int errors; field in class:T4880663
H A DT4880672.java44 if (errors > 0)
45 throw new Error(errors + " found.");
58 errors++;
61 int errors; field in class:T4880672
H A DT6271787.java46 if (errors > 0)
47 throw new Error(errors + " found.");
86 errors++;
89 int errors; field in class:T6271787
H A DT6622232.java49 if (errors > 0)
50 throw new Error(errors + " found.");
93 errors++;
96 int errors; field in class:T6622232
H A DT6715251.java47 if (errors > 0)
48 throw new Exception(errors + " errors received");
69 errors++;
73 int errors; field in class:T6715251
H A DT6716452.java46 if (errors > 0)
47 throw new Exception(errors + " errors found");
109 errors++;
112 int errors; field in class:T6716452
H A DT6729471.java84 if (errors > 0)
85 throw new Error(errors + " found.");
98 errors++;
101 int errors; field in class:T6729471
H A DT6824493.java65 if (errors > 0)
66 throw new Error(errors + " errors found");
95 errors++;
98 private int errors; field in class:T6824493
H A DT6866657.java47 if (errors > 0)
48 throw new Error(errors + " found.");
77 errors++;
80 int errors; field in class:T6866657
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DIllegalAnnotationsException.java41 * This exception is used to report all the errors to the client application
48 private final List<IllegalAnnotationException> errors; field in class:IllegalAnnotationsException
52 public IllegalAnnotationsException(List<IllegalAnnotationException> errors) { argument
53 super(errors.size()+" counts of IllegalAnnotationExceptions");
54 assert !errors.isEmpty() : "there must be at least one error";
55 this.errors = Collections.unmodifiableList(new ArrayList<IllegalAnnotationException>(errors));
62 for( IllegalAnnotationException error : errors )
76 return errors;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DInaccessibleWSDLException.java37 * This exception is used to report all the errors during WSDL parsing from {@link RuntimeWSDLParser#parse(java.net.URL, org.xml.sax.EntityResolver, boolean, com.sun.xml.internal.ws.api.wsdl.parser.WSDLParserExtension[])}
43 private final List<Throwable> errors; field in class:InaccessibleWSDLException
47 public InaccessibleWSDLException(List<Throwable> errors) { argument
48 super(errors.size()+" counts of InaccessibleWSDLException.\n");
49 assert !errors.isEmpty() : "there must be at least one error";
50 this.errors = Collections.unmodifiableList(new ArrayList<Throwable>(errors));
57 for( Throwable error : errors )
71 return 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/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/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/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/diags/
H A DCheckExamples.java123 if (errors > 0)
124 throw new Exception(errors + " errors occurred.");
187 errors++;
190 int errors; field in class:CheckExamples

Completed in 336 milliseconds

12345