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

123456

/openjdk7/jdk/test/java/util/Objects/
H A DBasicObjectsTest.java35 int errors = 0;
36 errors += testEquals();
37 errors += testDeepEquals();
38 errors += testHashCode();
39 errors += testHash();
40 errors += testToString();
41 errors += testToString2();
42 errors += testCompare();
43 errors += testNonNull();
44 if (errors >
[all...]
/openjdk7/jdk/test/java/lang/Double/
H A DBitwiseConversion.java36 int errors = 0;
52 errors++;
57 return errors;
61 int errors = 0;
64 errors += testNanCase(1L<<i);
69 errors++;
75 errors++;
79 if (errors > 0)
/openjdk7/jdk/test/java/lang/Float/
H A DBitwiseConversion.java36 int errors = 0;
52 errors++;
57 return errors;
61 int errors = 0;
64 errors += testNanCase(1<<i);
69 errors++;
75 errors++;
79 if (errors > 0)
/openjdk7/jdk/test/java/lang/reflect/Constructor/
H A DTestParameterAnnotations.java27 * @summary Verify getParameterAnnotations doesn't throw spurious errors
46 int errors = 0;
58 errors++;
61 return errors;
65 int errors = 0;
72 errors +=
74 errors +=
76 errors +=
78 errors +=
80 errors
[all...]
/openjdk7/jdk/test/java/math/BigDecimal/
H A DToPlainStringTests.java72 int errors = 0;
78 errors++;
85 errors++;
92 if(errors > 0)
93 throw new RuntimeException(errors + " errors during run.");
/openjdk7/jdk/test/sun/text/resources/Collator/
H A DBug4804273.java38 int errors=0;
108 errors++;
112 if (errors > 0)
113 throw new RuntimeException("There are " + errors + " words sorted incorrectly!");
H A DBug4248694.java38 int errors=0;
69 errors++;
73 if (errors > 0)
H A DBug4848897.java39 int errors=0;
65 errors++;
69 if (errors > 0)
/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/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 DT4876942.java42 if (errors > 0)
43 throw new Error(errors + " found.");
66 errors++;
69 int errors; field in class:T4876942
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 DT6980017.java68 if (errors > 0)
69 throw new Exception(errors + " errors occurred");
74 errors++;
77 int errors; field in class:T6980017
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DMissingCallerSensitive.java44 List<String> errors = csfinder.run(classes);
49 if (errors.size() != 3) {
50 throw new RuntimeException("Unexpected number of methods found: " + errors.size());
53 for (String e : errors) {
/openjdk7/jdk/test/java/awt/FontClass/SurrogateTest/
H A DSupplementaryCanDisplayUpToTest.java71 int errors = 0;
78 errors++;
84 errors++;
91 errors++;
94 if (errors == 0) {
98 errorcount += errors;
/openjdk7/jdk/test/sun/util/resources/Calendar/
H A DBug4518811.java65 int errors=0;
75 errors++;
77 return errors;
/openjdk7/jdk/test/sun/util/resources/Locale/
H A DBug4429024.java35 int errors=0;
96 errors += getLanguage(fiLocales[i][0], fiLocales[i][1]);
100 errors += getCountry(fiCountries[i][0], fiCountries[i][1]);
103 if(errors > 0){
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DPackageDoc.java68 * classes (that is, exclude exceptions, errors, enums, interfaces, and
88 ClassDoc[] errors(); method in interface:PackageDoc
/openjdk7/jdk/test/java/util/TimeZone/
H A DDaylightTimeTest.java37 private static int errors = 0; field in class:DaylightTimeTest
59 errors++;
72 if (errors > 0) {
100 errors++;
/openjdk7/langtools/test/tools/javac/api/ToolProvider/
H A DHelloWorldTest.java73 if (errors > 0)
74 throw new Exception(errors + " errors occurred");
79 errors++;
82 int errors; field in class:HelloWorldTest
H A DToolProviderTest1.java72 if (errors > 0)
73 throw new Exception(errors + " errors occurred");
78 errors++;
81 int errors; field in class:ToolProviderTest1
H A DToolProviderTest2.java77 if (errors > 0)
78 throw new Exception(errors + " errors occurred");
83 errors++;
86 int errors; field in class:ToolProviderTest2
/openjdk7/langtools/test/tools/javadoc/6964914/
H A DTest.java41 if (errors > 0)
42 throw new Exception(errors + " errors found");
74 errors++;
77 int errors; field in class:Test
/openjdk7/langtools/test/tools/javah/
H A DTestHelpOpts.java50 if (errors > 0)
51 throw new Exception(errors + " errors occurred");
77 errors++;
80 int errors; field in class:TestHelpOpts

Completed in 1918 milliseconds

123456