Searched refs:parseException (Results 1 - 4 of 4) sorted by relevance

/libcore/dom/src/test/java/org/w3c/domts/
H A DJAXPDOMTestDocumentBuilderFactory.java87 private SAXException parseException; field in class:JAXPDOMTestDocumentBuilderFactory.LoadErrorHandler
91 parseException = null;
98 if (parseException == null) {
99 parseException = ex;
108 if (parseException == null) {
109 parseException = ex;
114 return parseException;
120 Exception parseException = null;
127 parseException = errorHandler.getFirstException();
130 parseException
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
H A DParseExceptionTest.java59 ParseException parseException = (ParseException) object;
60 assertEquals("fred", parseException.getMessage());
61 assertEquals(4, parseException.getErrorOffset());
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
H A DDocumentBuilderFactoryTest.java376 Exception parseException = null;
387 parseException = errorHandler.getFirstException();
393 parseException = ex;
397 if (parseException != null) {
398 fail("Unexpected exception " + parseException.getMessage());
415 parseException = errorHandler.getFirstException();
423 parseException = ex;
427 if (parseException != null) {
428 fail("Unexpected exception " + parseException.getMessage());
439 Exception parseException
917 private SAXException parseException; field in class:DocumentBuilderFactoryTest.ValidationErrorHandler
[all...]
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DDOMTestCase.java23 Exception parseException = null;
28 parseException = errorHandler.getFirstException();
30 parseException = ex;
33 if (parseException != null) {
34 // fail("Unexpected exception " + parseException.getMessage());
35 throw new RuntimeException("Unexpected exception " + parseException.getMessage(), parseException);
194 private SAXException parseException; field in class:DOMTestCase.LoadErrorHandler
201 parseException = null;
208 if (parseException
[all...]

Completed in 487 milliseconds