/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; 190 void checkRequiredChildren(Locator locator) throws SAXParseException {
|
/sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/repository/ |
CaptureErrorHandler.java | 21 import org.xml.sax.SAXParseException;
60 public void error(SAXParseException ex) throws SAXException {
68 public void fatalError(SAXParseException ex) throws SAXException {
76 public void warning(SAXParseException ex) throws SAXException {
|
ValidateRepositoryXmlTest.java | 22 import org.xml.sax.SAXParseException;
182 } catch (SAXParseException e) {
219 } catch (SAXParseException e) {
241 } catch (SAXParseException e) {
263 } catch (SAXParseException e) {
291 } catch (SAXParseException e) {
316 } catch (SAXParseException e) {
|
ValidateAddonXmlTest.java | 22 import org.xml.sax.SAXParseException;
178 } catch (SAXParseException e) {
203 } catch (SAXParseException e) {
|
/libcore/luni/src/test/java/tests/api/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);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/sdk/ |
TestLayoutDevicesXsd.java | 21 import org.xml.sax.SAXParseException;
86 public void error(SAXParseException ex) throws SAXException {
94 public void fatalError(SAXParseException ex) throws SAXException {
102 public void warning(SAXParseException ex) throws SAXException {
126 } catch (SAXParseException e) {
|
/libcore/luni/src/test/java/tests/api/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()));
|
/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) {
|
/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/luni/src/test/java/tests/api/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 {
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/ |
KmlParser.java | 22 import org.xml.sax.SAXParseException; 123 public void error(SAXParseException e) throws SAXException { 128 public void fatalError(SAXParseException e) throws SAXException {
|