/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
_exceptions.py | 7 # ===== SAXEXCEPTION ===== 9 class SAXException(Exception): 14 receive a SAXException as the argument to the handlers in the 46 class SAXParseException(SAXException): 56 Since this exception is a subclass of SAXException, it inherits 61 SAXException.__init__(self, msg, exception) 105 class SAXNotRecognizedException(SAXException): 115 class SAXNotSupportedException(SAXException):
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToUnknownStream.java | 36 import org.xml.sax.SAXException; 221 public boolean setEscaping(boolean escape) throws SAXException 273 throws SAXException 301 throws SAXException 317 public void characters(String chars) throws SAXException 332 public void endElement(String elementName) throws SAXException 347 public void startPrefixMapping(String prefix, String uri) throws SAXException 364 throws SAXException 383 throws SAXException 439 public void startDocument() throws SAXException [all...] |
ToXMLStream.java | 32 import org.xml.sax.SAXException; 103 * @throws org.xml.sax.SAXException Any SAX exception, possibly 106 * @throws org.xml.sax.SAXException 108 public void startDocumentInternal() throws org.xml.sax.SAXException 169 throw new SAXException(e); 179 * @throws org.xml.sax.SAXException Any SAX exception, possibly 182 * @throws org.xml.sax.SAXException 184 public void endDocument() throws org.xml.sax.SAXException 195 throw new SAXException(e); 215 * @throws org.xml.sax.SAXException [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
ExpatSaxParserTest.java | 38 import org.xml.sax.SAXException; 66 throws SAXException { 67 throw new SAXException(); 73 } catch (SAXException checked) { /* expected */ } 80 throws SAXException { 81 throw new SAXException(); 87 } catch (SAXException checked) { /* expected */ } 93 throws SAXException { 94 throw new SAXException(); 100 } catch (SAXException checked) { /* expected */ [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorExsltFunction.java | 47 import org.xml.sax.SAXException; 63 throws SAXException 70 handler.error(msg, new SAXException(msg)); 87 handler.error(msg, new SAXException(msg)); 96 throws SAXException 110 throws SAXException 123 throws SAXException 134 handler.error(msg, new SAXException(msg)); 154 handler.error(msg, new SAXException(msg));
|
ProcessorGlobalParamDecl.java | 43 * @throws org.xml.sax.SAXException Any SAX exception, possibly 48 throws org.xml.sax.SAXException 68 throws org.xml.sax.SAXException
|
ProcessorGlobalVariableDecl.java | 43 * @throws org.xml.sax.SAXException Any SAX exception, possibly 48 throws org.xml.sax.SAXException 68 throws org.xml.sax.SAXException
|
ProcessorText.java | 43 * @throws org.xml.sax.SAXException Any SAX exception, possibly 48 throws org.xml.sax.SAXException 73 throws org.xml.sax.SAXException
|
ProcessorTemplate.java | 41 * @throws org.xml.sax.SAXException Any SAX exception, possibly 46 throws org.xml.sax.SAXException
|
ProcessorTemplateElem.java | 50 throws org.xml.sax.SAXException 83 throw new org.xml.sax.SAXException(te); 95 * @throws org.xml.sax.SAXException Any SAX exception, possibly 100 throws org.xml.sax.SAXException 121 throws org.xml.sax.SAXException
|
ProcessorAttributeSet.java | 62 throws org.xml.sax.SAXException 74 throw new org.xml.sax.SAXException(te); 101 throws org.xml.sax.SAXException
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
XMLReaderAdapterTest.java | 32 import org.xml.sax.SAXException; 82 } catch (SAXException e) { 105 fail("SAXException expected"); 106 } catch (SAXException e) { 137 } catch (SAXException e) { 160 } catch (SAXException e) { 177 } catch (SAXException e) { 203 } catch (SAXException e) { 215 } catch (SAXException e) { 241 } catch (SAXException e) [all...] |
XMLFilterImplTest.java | 30 import org.xml.sax.SAXException; 188 } catch (SAXException e) { 203 } catch (SAXException e) { 214 } catch (SAXException e) { 229 } catch (SAXException e) { 249 } catch (SAXException e) { 262 } catch (SAXException e) { 274 } catch (SAXException e) { 287 } catch (SAXException e) { 316 } catch (SAXException e) [all...] |
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
AccessPointParserHelper.java | 23 import org.xml.sax.SAXException; 124 Attributes attributes) throws SAXException { 174 public void endElement(String uri, String localName, String tagName) throws SAXException { 189 public void characters(char ch[], int start, int length) throws SAXException { 220 throw new SAXException(); 228 throw new SAXException(); 246 throw new SAXException(); 253 throw new SAXException(); 301 throw new SAXException(); 305 throw new SAXException(); [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
XMLWriter.java | 26 import org.xml.sax.SAXException; 499 * @exception org.xml.sax.SAXException If there is an error 505 throws SAXException 539 * @exception org.xml.sax.SAXException If there is an error 545 throws SAXException 552 throw new SAXException(e); 571 * @exception org.xml.sax.SAXException If there is an error 578 throws SAXException 613 * @exception org.xml.sax.SAXException If there is an error 619 throws SAXException [all...] |
/libcore/luni/src/main/java/javax/xml/validation/ |
SchemaFactory.java | 28 import org.xml.sax.SAXException; 393 * by throwing {@link SAXException} from the handler. Or for example 405 * throw {@link SAXException} without first reporting it to 417 * public void fatalError( {@link org.xml.sax.SAXParseException} e ) throws {@link SAXException} { 420 * public void error( {@link org.xml.sax.SAXParseException} e ) throws {@link SAXException} { 423 * public void warning( {@link org.xml.sax.SAXParseException} e ) throws {@link SAXException} { 523 * @throws SAXException If a SAX error occurs during parsing. 526 public Schema newSchema(Source schema) throws SAXException { 539 * @throws SAXException If a SAX error occurs during parsing. 542 public Schema newSchema(File schema) throws SAXException { [all...] |
Validator.java | 26 import org.xml.sax.SAXException; 91 public void validate(Source source) throws SAXException, IOException { 181 * @throws SAXException 182 * If the {@link ErrorHandler} throws a {@link SAXException} or 197 public abstract void validate(Source source, Result result) throws SAXException, IOException; 211 * by throwing {@link SAXException} from the handler. Or for example 222 * throw {@link SAXException} without first reporting it to 230 * public void fatalError( {@link org.xml.sax.SAXParseException} e ) throws {@link SAXException} { 233 * public void error( {@link org.xml.sax.SAXParseException} e ) throws {@link SAXException} { 236 * public void warning( {@link org.xml.sax.SAXParseException} e ) throws {@link SAXException} { [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
TransformerIdentityImpl.java | 64 import org.xml.sax.SAXException; 399 catch (SAXException se) 439 } catch (SAXException se) { 446 } catch (org.xml.sax.SAXException se) { 471 catch (org.xml.sax.SAXException se){} 500 catch (org.xml.sax.SAXException se) 820 * @throws org.xml.sax.SAXException Any SAX exception, possibly 824 * @throws SAXException 827 throws SAXException 845 * @throws org.xml.sax.SAXException Any SAX exception, possibl [all...] |
/libcore/luni/src/main/java/javax/xml/parsers/ |
SAXParser.java | 29 import org.xml.sax.SAXException; 118 * @throws SAXException If parse produces a SAX error. 125 throws SAXException, IOException { 148 * @throws SAXException If any SAX errors occur during processing. 156 throws SAXException, IOException { 176 * @throws SAXException If any SAX errors occur during processing. 181 throws SAXException, IOException { 201 * @throws SAXException If any SAX errors occur during processing. 209 throws SAXException, IOException { 231 * @throws SAXException If any SAX errors occur during processing [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
DefaultErrorHandler.java | 34 import org.xml.sax.SAXException; 114 * @throws SAXException Any SAX exception, possibly 117 public void warning(SAXParseException exception) throws SAXException 143 * @throws SAXException Any SAX exception, possibly 146 public void error(SAXParseException exception) throws SAXException 170 * @throws SAXException Any SAX exception, possibly 173 public void fatalError(SAXParseException exception) throws SAXException 300 else if(cause instanceof SAXException) 301 cause = ((SAXException)cause).getException(); 342 else if(cause instanceof SAXException) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
ExpatParser.java | 32 import org.xml.sax.SAXException; 132 int attributePointer, int attributeCount) throws SAXException { 153 throws SAXException { 160 /*package*/ void text(char[] text, int length) throws SAXException { 167 /*package*/ void comment(char[] text, int length) throws SAXException { 174 /*package*/ void startCdata() throws SAXException { 181 /*package*/ void endCdata() throws SAXException { 189 throws SAXException { 196 /*package*/ void endNamespace(String prefix) throws SAXException { 204 throws SAXException { [all...] |
/libcore/luni/src/main/java/org/xml/sax/ |
XMLReader.java | 96 * } catch (SAXException e) { 109 * } catch (SAXException e) { 366 * @exception org.xml.sax.SAXException Any SAX exception, possibly 379 throws IOException, SAXException; 397 * @exception org.xml.sax.SAXException Any SAX exception, possibly 405 throws IOException, SAXException;
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
MockResolver.java | 25 import org.xml.sax.SAXException; 43 throws SAXException, IOException {
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/ |
SAXParserImpl.java | 43 throws SAXException 63 throws SAXException 74 } catch (SAXException sex) { // should never happen... so: 83 } catch (SAXException sex) { // should never happen... so:
|
/packages/apps/Mms/src/com/android/mms/dom/smil/parser/ |
SmilXmlParser.java | 25 import org.xml.sax.SAXException; 44 } catch (SAXException e) { 49 public SMILDocument parse(InputStream in) throws IOException, SAXException {
|