HomeSort by relevance Sort by last modified time
    Searched refs:SAXParseException (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /libcore/luni/src/main/java/org/xml/sax/
ErrorHandler.java 28 * except that <em>SAXParseException</em>s will be thrown for fatal errors.
47 * @see org.xml.sax.SAXParseException
71 * @see org.xml.sax.SAXParseException
73 public abstract void warning (SAXParseException exception)
100 * @see org.xml.sax.SAXParseException
102 public abstract void error (SAXParseException exception)
132 * @see org.xml.sax.SAXParseException
134 public abstract void fatalError (SAXParseException exception)
SAXParseException.java 4 // $Id: SAXParseException.java,v 1.11 2004/04/21 13:05:02 dmegginson Exp $
21 * will receive a SAXParseException as the argument to the handlers
37 public class SAXParseException extends SAXException {
47 * Create a new SAXParseException from a message and a Locator.
58 public SAXParseException (String message, Locator locator) {
70 * Wrap an existing exception in a SAXParseException.
84 public SAXParseException (String message, Locator locator,
97 * Create a new SAXParseException.
117 public SAXParseException (String message, String publicId, String systemId,
126 * Create a new SAXParseException with an embedded exception
    [all...]
HandlerBase.java 319 * @see org.xml.sax.SAXParseException
321 public void warning (SAXParseException e)
340 * @see org.xml.sax.SAXParseException
342 public void error (SAXParseException e)
352 * <p>The default implementation throws a SAXParseException.
364 * @see org.xml.sax.SAXParseException
366 public void fatalError (SAXParseException e)
  /frameworks/base/sax/java/android/sax/
BadXmlException.java 19 import org.xml.sax.SAXParseException;
25 class BadXmlException extends SAXParseException {
Element.java 20 import org.xml.sax.SAXParseException;
188 void checkRequiredChildren(Locator locator) throws SAXParseException {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
SAXParseExceptionTest.java 22 import org.xml.sax.SAXParseException;
47 SAXParseException e = new SAXParseException(ERR, l, c);
58 e = new SAXParseException(null, l, c);
69 e = new SAXParseException(ERR, null, c);
80 e = new SAXParseException(ERR, l, null);
99 SAXParseException e = new SAXParseException(ERR, l);
110 e = new SAXParseException(null, l);
121 e = new SAXParseException(ERR, null)
    [all...]
HandlerBaseTest.java 24 import org.xml.sax.SAXParseException;
116 h.warning(new SAXParseException("Foo", new LocatorImpl()));
124 h.error(new SAXParseException("Foo", new LocatorImpl()));
133 h.fatalError(new SAXParseException("Foo", new LocatorImpl()));
SAXExceptionTest.java 22 import org.xml.sax.SAXParseException;
51 e = new SAXParseException(ERR, null);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DefaultErrorHandler.java 35 import org.xml.sax.SAXParseException;
117 public void warning(SAXParseException exception) throws SAXException
146 public void error(SAXParseException exception) throws SAXException
173 public void fatalError(SAXParseException exception) throws SAXException
287 if(cause instanceof SAXParseException)
289 locator = new SAXSourceLocator((SAXParseException)cause);
315 public static void printLocation(java.io.PrintStream pw, org.xml.sax.SAXParseException exception)
328 if(cause instanceof SAXParseException)
330 locator = new SAXSourceLocator((SAXParseException)cause);
SAXSourceLocator.java 28 import org.xml.sax.SAXParseException;
86 * @param spe SAXParseException exception.
88 public SAXSourceLocator(SAXParseException spe)
  /libcore/luni/src/test/java/libcore/javax/xml/parsers/
DocumentBuilderTest.java 44 fail("SAXParseException not thrown");
45 } catch (org.xml.sax.SAXParseException ex) {
59 fail("SAXParseException not thrown");
60 } catch (org.xml.sax.SAXParseException ex) {
  /libcore/luni/src/main/java/org/xml/sax/helpers/
DefaultHandler.java 18 import org.xml.sax.SAXParseException;
415 * @see org.xml.sax.SAXParseException
417 public void warning (SAXParseException e)
436 * @see org.xml.sax.SAXParseException
438 public void error (SAXParseException e)
448 * <p>The default implementation throws a SAXParseException.
460 * @see org.xml.sax.SAXParseException
462 public void fatalError (SAXParseException e)
ParserAdapter.java 25 import org.xml.sax.SAXParseException;
483 ArrayList<SAXParseException> exceptions = null;
577 exceptions = new ArrayList<SAXParseException>();
579 exceptions.add((SAXParseException) e);
586 for (SAXParseException ex : exceptions) {
778 private SAXParseException makeException (String message)
781 return new SAXParseException(message, locator);
783 return new SAXParseException(message, null, null, -1, -1);
XMLFilterImpl.java 20 import org.xml.sax.SAXParseException;
639 public void warning (SAXParseException e)
655 public void error (SAXParseException e)
671 public void fatalError (SAXParseException e)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
DefaultHandlerTest.java 23 import org.xml.sax.SAXParseException;
152 h.warning(new SAXParseException("Foo", new LocatorImpl()));
160 h.error(new SAXParseException("Foo", new LocatorImpl()));
169 h.fatalError(new SAXParseException("Foo", new LocatorImpl()));
XMLFilterImplTest.java 33 import org.xml.sax.SAXParseException;
443 SAXParseException exception = new SAXParseException("Oops!", null);
457 SAXParseException exception = new SAXParseException("Oops!", null);
471 SAXParseException exception = new SAXParseException("Oops!", null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
XmlErrorHandler.java 28 import org.xml.sax.SAXParseException;
78 public void error(SAXParseException exception) throws SAXException {
88 public void fatalError(SAXParseException exception) throws SAXException {
98 public void warning(SAXParseException exception) throws SAXException {
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 27 import org.xml.sax.SAXParseException;
285 SAXParseException saxException = new SAXParseException(
298 final SAXParseException saxException = new SAXParseException(
310 final SAXParseException saxException = new SAXParseException(
324 final SAXParseException saxException = new SAXParseException(
331 final SAXParseException saxException = new SAXParseException
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToSAXHandler.java 29 import org.xml.sax.SAXParseException;
365 * @see org.xml.sax.ErrorHandler#fatalError(SAXParseException)
367 public void fatalError(SAXParseException exc) throws SAXException {
378 * @see org.xml.sax.ErrorHandler#error(SAXParseException)
380 public void error(SAXParseException exc) throws SAXException {
389 * @see org.xml.sax.ErrorHandler#warning(SAXParseException)
391 public void warning(SAXParseException exc) throws SAXException {
  /external/jdiff/src/jdiff/
CommentsHandler.java 9 import org.xml.sax.SAXParseException;
189 public void warning(SAXParseException e) {
194 public void error(SAXParseException e) {
200 public void fatalError(SAXParseException e) {
APIHandler.java 9 import org.xml.sax.SAXParseException;
337 public void warning(SAXParseException e) {
342 public void error(SAXParseException e) {
348 public void fatalError(SAXParseException e) {
  /libcore/dom/src/test/java/org/w3c/domts/
JAXPDOMTestDocumentBuilderFactory.java 23 import org.xml.sax.SAXParseException;
96 public void error(SAXParseException ex) {
103 public void warning(SAXParseException ex) {
107 public void fatalError(SAXParseException ex) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockHandler.java 27 import org.xml.sax.SAXParseException;
65 public void error(SAXParseException exception) throws SAXException {
69 public void fatalError(SAXParseException exception) throws SAXException {
115 public void warning(SAXParseException exception) throws SAXException {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java 10 import org.xml.sax.SAXParseException;
206 public void error(SAXParseException ex) {
213 public void warning(SAXParseException ex) {
217 public void fatalError(SAXParseException ex) {
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
StringResourceMap.java 21 import org.xml.sax.SAXParseException;
64 } catch (SAXParseException e) {

Completed in 367 milliseconds

1 2 3 4 5 6