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

1 2 3 4 5 6

  /libcore/luni/src/main/java/org/xml/sax/
SAXNotRecognizedException.java 0 // SAXNotRecognizedException.java - unrecognized feature or value.
5 // $Id: SAXNotRecognizedException.java,v 1.7 2002/01/30 21:13:48 dbrownell Exp $
29 public class SAXNotRecognizedException extends SAXException
35 public SAXNotRecognizedException ()
45 public SAXNotRecognizedException (String message)
52 // end of SAXNotRecognizedException.java
XMLReader.java 119 * @exception org.xml.sax.SAXNotRecognizedException If the feature
127 throws SAXNotRecognizedException, SAXNotSupportedException;
146 * @exception org.xml.sax.SAXNotRecognizedException If the feature
154 throws SAXNotRecognizedException, SAXNotSupportedException;
175 * @exception org.xml.sax.SAXNotRecognizedException If the property
183 throws SAXNotRecognizedException, SAXNotSupportedException;
205 * @exception org.xml.sax.SAXNotRecognizedException If the property
212 throws SAXNotRecognizedException, SAXNotSupportedException;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
SAXNotRecognizedExceptionTest.java 21 import org.xml.sax.SAXNotRecognizedException;
28 SAXNotRecognizedException e = new SAXNotRecognizedException();
33 SAXNotRecognizedException e = new SAXNotRecognizedException(ERR);
36 e = new SAXNotRecognizedException(null);
  /libcore/luni/src/main/java/javax/xml/validation/
Validator.java 27 import org.xml.sax.SAXNotRecognizedException;
332 * @exception org.xml.sax.SAXNotRecognizedException If the feature
341 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
345 throw new SAXNotRecognizedException(name);
366 * @exception org.xml.sax.SAXNotRecognizedException If the feature
376 public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {
380 throw new SAXNotRecognizedException(name);
398 * @exception org.xml.sax.SAXNotRecognizedException If the property
406 public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException {
410 throw new SAXNotRecognizedException(name)
    [all...]
ValidatorHandler.java 24 import org.xml.sax.SAXNotRecognizedException;
340 * @exception org.xml.sax.SAXNotRecognizedException If the feature
349 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
353 throw new SAXNotRecognizedException(name);
374 * @exception org.xml.sax.SAXNotRecognizedException If the feature
384 public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {
388 throw new SAXNotRecognizedException(name);
407 * @exception org.xml.sax.SAXNotRecognizedException If the property
415 public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException {
419 throw new SAXNotRecognizedException(name)
    [all...]
SchemaFactory.java 29 import org.xml.sax.SAXNotRecognizedException;
258 * @exception org.xml.sax.SAXNotRecognizedException If the feature
267 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
272 throw new SAXNotRecognizedException(name);
306 * @exception org.xml.sax.SAXNotRecognizedException If the feature
316 public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {
320 throw new SAXNotRecognizedException(name);
335 * @exception org.xml.sax.SAXNotRecognizedException If the property
343 public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException {
347 throw new SAXNotRecognizedException(name)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
SAXParserFactoryImpl.java 24 import org.xml.sax.SAXNotRecognizedException;
42 public boolean getFeature(String name) throws SAXNotRecognizedException {
48 throw new SAXNotRecognizedException(name);
58 } catch (SAXNotRecognizedException ex) {
67 } catch (SAXNotRecognizedException ex) {
87 public void setFeature(String name, boolean value) throws SAXNotRecognizedException {
93 throw new SAXNotRecognizedException(name);
108 } catch (SAXNotRecognizedException ex) {
117 } catch (SAXNotRecognizedException ex) {
SAXParserImpl.java 26 import org.xml.sax.SAXNotRecognizedException;
41 throws SAXNotRecognizedException, SAXNotSupportedException {
49 throws SAXNotSupportedException, SAXNotRecognizedException {
63 } catch (SAXNotRecognizedException e) {
80 public Object getProperty(String name) throws SAXNotRecognizedException,
106 throws SAXNotRecognizedException, SAXNotSupportedException {
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXFactoryImpl.java 80 throws ParserConfigurationException, SAXNotRecognizedException,
99 throws ParserConfigurationException, SAXNotRecognizedException,
SAXParserImpl.java 89 throws SAXNotRecognizedException, SAXNotSupportedException
95 throws SAXNotRecognizedException, SAXNotSupportedException
103 throws SAXNotRecognizedException, SAXNotSupportedException
109 throws SAXNotRecognizedException, SAXNotSupportedException
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockFilter.java 27 import org.xml.sax.SAXNotRecognizedException;
49 public boolean getFeature(String name) throws SAXNotRecognizedException,
55 public Object getProperty(String name) throws SAXNotRecognizedException,
70 public void setProperty(String name, Object value) throws SAXNotRecognizedException,
MockReader.java 31 import org.xml.sax.SAXNotRecognizedException;
77 public boolean getFeature(String name) throws SAXNotRecognizedException,
82 public Object getProperty(String name) throws SAXNotRecognizedException,
119 public void setProperty(String name, Object value) throws SAXNotRecognizedException,
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParserFactory.java 25 import org.xml.sax.SAXNotRecognizedException;
208 * @exception SAXNotRecognizedException When the underlying XMLReader does
218 throws ParserConfigurationException, SAXNotRecognizedException,
231 * @exception SAXNotRecognizedException When the underlying XMLReader does not recognize the property name.
237 throws ParserConfigurationException, SAXNotRecognizedException,
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 29 import org.xml.sax.SAXNotRecognizedException;
68 throws SAXNotRecognizedException, SAXNotSupportedException {
91 throw new SAXNotRecognizedException(name);
95 throws SAXNotRecognizedException, SAXNotSupportedException {
130 throw new SAXNotRecognizedException(name);
134 throws SAXNotRecognizedException, SAXNotSupportedException {
143 throw new SAXNotRecognizedException(name);
147 throws SAXNotRecognizedException, SAXNotSupportedException {
162 throw new SAXNotRecognizedException(name);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLFilterImpl.java 18 import org.xml.sax.SAXNotRecognizedException;
146 * @exception org.xml.sax.SAXNotRecognizedException If the feature
153 throws SAXNotRecognizedException, SAXNotSupportedException
158 throw new SAXNotRecognizedException("Feature: " + name);
170 * @exception org.xml.sax.SAXNotRecognizedException If the feature
177 throws SAXNotRecognizedException, SAXNotSupportedException
182 throw new SAXNotRecognizedException("Feature: " + name);
194 * @exception org.xml.sax.SAXNotRecognizedException If the property
201 throws SAXNotRecognizedException, SAXNotSupportedException
206 throw new SAXNotRecognizedException("Property: " + name)
    [all...]
ParserAdapter.java 23 import org.xml.sax.SAXNotRecognizedException;
170 * @exception SAXNotRecognizedException If the feature
177 throws SAXNotRecognizedException, SAXNotSupportedException
195 throw new SAXNotRecognizedException("Feature: " + name);
208 * @exception SAXNotRecognizedException If the feature
215 throws SAXNotRecognizedException, SAXNotSupportedException
224 throw new SAXNotRecognizedException("Feature: " + name);
236 * @exception SAXNotRecognizedException If the property
243 throws SAXNotRecognizedException, SAXNotSupportedException
245 throw new SAXNotRecognizedException("Property: " + name)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
SAXParserFactoryTest.java 34 import org.xml.sax.SAXNotRecognizedException;
186 } catch (SAXNotRecognizedException snre) {
187 fail("SAXNotRecognizedException is thrown");
195 fail("SAXNotRecognizedException is not thrown");
198 } catch (SAXNotRecognizedException snre) {
210 } catch (SAXNotRecognizedException snre) {
211 fail("SAXNotRecognizedException is thrown");
223 } catch (SAXNotRecognizedException snre) {
224 fail("SAXNotRecognizedException is thrown");
401 ParserConfigurationException, SAXNotRecognizedException,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
xmlreader.py 6 from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
77 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
81 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
85 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
89 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/
xmlreader.py 6 from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
77 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
81 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
85 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
89 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
  /external/python/cpython2/Lib/xml/sax/
xmlreader.py 6 from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
77 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
81 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
85 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
89 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
  /external/python/cpython3/Lib/xml/sax/
xmlreader.py 6 from ._exceptions import SAXNotSupportedException, SAXNotRecognizedException
77 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
81 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
85 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
89 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
xmlreader.py 6 from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
77 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
81 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
85 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
89 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
xmlreader.py 6 from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
77 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
81 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
85 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
89 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
xmlreader.py 6 from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
77 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
81 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
85 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
89 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
xmlreader.py 6 from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
77 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
81 raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
85 raise SAXNotRecognizedException("Property '%s' not recognized" % name)
89 raise SAXNotRecognizedException("Property '%s' not recognized" % name)

Completed in 826 milliseconds

1 2 3 4 5 6