/libcore/luni/src/main/java/org/xml/sax/ |
XMLFilter.java | 36 public interface XMLFilter extends XMLReader 48 public abstract void setParent (XMLReader parent); 61 public abstract XMLReader getParent ();
|
XMLReader.java | 0 // XMLReader.java - read an XML document. 5 // $Id: XMLReader.java,v 1.9 2004/04/26 17:34:34 dmegginson Exp $ 27 * <p>XMLReader is the interface that an XML parser's SAX2 driver must 39 * org.xml.sax.Parser Parser} interface. The XMLReader interface 51 * a SAX2 XMLReader and vice-versa.</p> 60 public interface XMLReader 74 * possible for an XMLReader to recognize a feature name but 91 * XMLReader r = new MySAXDriver(); 122 * XMLReader recognizes the feature name but 134 * possible for an XMLReader to expose a feature value bu [all...] |
/libcore/luni/src/main/java/javax/xml/transform/sax/ |
SAXSource.java | 25 import org.xml.sax.XMLReader; 62 * Create a <code>SAXSource</code>, using an {@link org.xml.sax.XMLReader} 68 * @param reader An XMLReader to be used for the parse. 72 public SAXSource(XMLReader reader, InputSource inputSource) { 94 * Set the XMLReader to be used for the Source. 96 * @param reader A valid XMLReader or XMLFilter reference. 98 public void setXMLReader(XMLReader reader) { 103 * Get the XMLReader to be used for the Source. 105 * @return A valid XMLReader or XMLFilter reference, or null. 107 public XMLReader getXMLReader() [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
XMLReaderManager.java | 29 import org.xml.sax.XMLReader; 34 * Creates XMLReader objects and caches them for re-use. 47 * Parser factory to be used to construct XMLReader objects 52 * Cache of XMLReader objects 57 * Keeps track of whether an XMLReader object is in use. 75 * Retrieves a cached XMLReader for this thread, or creates a new 76 * XMLReader, if the existing reader is in use. When the caller no 80 public synchronized XMLReader getXMLReader() throws SAXException { 81 XMLReader reader; 86 // on a thread, a new XMLReader will automatically be created [all...] |
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
XMLReaderFactory.java | 15 import org.xml.sax.XMLReader; 33 * XMLReader myReader = XMLReaderFactory.createXMLReader(); 65 * Attempt to create an XMLReader from system defaults. 66 * In environments which can support it, the name of the XMLReader 71 * has a value, that is used as an XMLReader class name. </li> 78 * a default XMLReader class name that will take effect only when 101 * @return A new XMLReader. 102 * @exception org.xml.sax.SAXException If no default XMLReader class 106 public static XMLReader createXMLReader () 145 // className = "com.example.sax.XmlReader"; [all...] |
XMLReaderAdapter.java | 1 // XMLReaderAdapter.java - adapt an SAX2 XMLReader to a SAX1 Parser 23 import org.xml.sax.XMLReader; 27 * Adapt a SAX2 XMLReader as a SAX1 Parser. 36 * <p>This class wraps a SAX2 {@link org.xml.sax.XMLReader XMLReader} 37 * and makes it act as a SAX1 {@link org.xml.sax.Parser Parser}. The XMLReader 40 * with a {@link org.xml.sax.SAXException SAXException}; if the XMLReader 48 * @see org.xml.sax.XMLReader 80 * <p>Create a new adapter, wrapped around a SAX2 XMLReader. 81 * The adapter will make the XMLReader act like a SAX [all...] |
XMLFilterImpl.java | 22 import org.xml.sax.XMLReader; 35 * <p>This class is designed to sit between an {@link org.xml.sax.XMLReader 36 * XMLReader} and the client application's event handlers. By default, it 46 * @see org.xml.sax.XMLReader 69 * consumer rather than as an {@link XMLReader}.</p> 71 * @see org.xml.sax.XMLReader#setFeature 72 * @see org.xml.sax.XMLReader#setProperty 88 public XMLFilterImpl (XMLReader parent) 104 * <p>This is the {@link org.xml.sax.XMLReader XMLReader} from whic [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/ |
DoNothingXMLReader.java | 24 import org.xml.sax.XMLReader; 27 * An XMLReader that does nothing, but can be instantiated properly. 29 public class DoNothingXMLReader implements XMLReader {
|
NoAccessXMLReader.java | 24 import org.xml.sax.XMLReader; 27 * An XMLReader that is not accessible. 29 class NoAccessXMLReader implements XMLReader {
|
NoSubclassXMLReader.java | 24 import org.xml.sax.XMLReader; 27 * An XMLReader that does not implement the XMLReader interface. 29 public class NoSubclassXMLReader implements XMLReader {
|
NoInstanceXMLReader.java | 24 import org.xml.sax.XMLReader; 27 * An XMLReader that is accessible, but can't be instantiated. 29 public class NoInstanceXMLReader implements XMLReader {
|
MockReader.java | 33 import org.xml.sax.XMLReader; 36 * A helper class that implements the SAX XMLReader interface and logs method 39 public class MockReader implements XMLReader {
|
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/ |
SAXParserImpl.java | 28 import org.xml.sax.XMLReader; 37 private XMLReader reader; 86 public XMLReader getXMLReader() {
|
/frameworks/base/core/java/android/util/ |
Xml.java | 29 import org.xml.sax.XMLReader; 55 XMLReader reader = new ExpatReader(); 69 XMLReader reader = new ExpatReader(); 80 XMLReader reader = new ExpatReader();
|
/libcore/luni/src/main/java/org/xml/sax/ext/ |
EntityResolver2.java | 12 import org.xml.sax.XMLReader; 18 * {@link XMLReader#setEntityResolver XMLReader.setEntityResolver()} method 32 * an XMLReader with the 55 * @see org.xml.sax.XMLReader#setEntityResolver 121 * URI, unless it is null because the XMLReader was given an InputSource 172 * null (likely because the XMLReader was given an InputSource without
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
TrAXFilter.java | 37 import org.xml.sax.XMLReader; 54 * @see org.xml.sax.XMLReader#setFeature 55 * @see org.xml.sax.XMLReader#setProperty 74 * <p>This is the {@link org.xml.sax.XMLReader XMLReader} from which 84 public void setParent (XMLReader parent) 106 * @see org.xml.sax.XMLReader#parse(org.xml.sax.InputSource) 113 XMLReader reader=null; 140 XMLReader parent; 184 * @see org.xml.sax.XMLReader#parse(java.lang.String [all...] |
/libcore/dom/src/test/java/org/w3c/domts/ |
DOM4JTestDocumentBuilderFactory.java | 31 import org.xml.sax.XMLReader; 42 private final org.xml.sax.XMLReader xmlReader; 51 * @param XMLReader if null use default XMLReader. If provided, 66 //xmlReader = saxReader.getXMLReader(); 81 xmlReader = (XMLReader) getReaderMethod.invoke(saxReader, new Object[0]);
|
/cts/tests/tests/sax/src/android/sax/cts/ |
ElementTest.java | 22 import org.xml.sax.XMLReader; 121 XMLReader xmlReader = saxParser.getXMLReader(); 122 xmlReader.setContentHandler(root.getContentHandler()); 125 xmlReader.parse(source);
|
/external/eyes-free/AccessCheck/src/com/android/accessibility/ |
AccessibilityValidator.java | 21 import org.xml.sax.XMLReader; 141 XMLReader reader;
|
/libcore/luni/src/test/java/libcore/xml/ |
NamespacedAttributesLookupTest.java | 22 import org.xml.sax.XMLReader; 102 XMLReader reader = SAXParserFactory.newInstance().newSAXParser().getXMLReader();
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/ |
xmlreader.py | 9 # ===== XMLREADER =====
11 class XMLReader:
14 XMLReader is the interface that an XML parser's SAX2 driver must
91 class IncrementalParser(XMLReader):
92 """This interface adds three extra methods to the XMLReader
106 By default, the class also implements the parse method of the XMLReader
113 XMLReader.__init__(self)
188 """Encapsulation of the information needed by the XMLReader to
196 XMLReader.parse method and for returning from
199 An InputSource belongs to the application, the XMLReader is not [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/ |
xmlreader.py | 9 # ===== XMLREADER =====
11 class XMLReader:
14 XMLReader is the interface that an XML parser's SAX2 driver must
91 class IncrementalParser(XMLReader):
92 """This interface adds three extra methods to the XMLReader
106 By default, the class also implements the parse method of the XMLReader
113 XMLReader.__init__(self)
188 """Encapsulation of the information needed by the XMLReader to
196 XMLReader.parse method and for returning from
199 An InputSource belongs to the application, the XMLReader is not [all...] |
/external/python/cpython2/Lib/xml/sax/ |
xmlreader.py | 9 # ===== XMLREADER ===== 11 class XMLReader: 14 XMLReader is the interface that an XML parser's SAX2 driver must 91 class IncrementalParser(XMLReader): 92 """This interface adds three extra methods to the XMLReader 106 By default, the class also implements the parse method of the XMLReader 113 XMLReader.__init__(self) 188 """Encapsulation of the information needed by the XMLReader to 196 XMLReader.parse method and for returning from 199 An InputSource belongs to the application, the XMLReader is no [all...] |
/external/python/cpython3/Lib/xml/sax/ |
xmlreader.py | 9 # ===== XMLREADER ===== 11 class XMLReader: 14 XMLReader is the interface that an XML parser's SAX2 driver must 91 class IncrementalParser(XMLReader): 92 """This interface adds three extra methods to the XMLReader 106 By default, the class also implements the parse method of the XMLReader 113 XMLReader.__init__(self) 190 """Encapsulation of the information needed by the XMLReader to 198 XMLReader.parse method and for returning from 201 An InputSource belongs to the application, the XMLReader is no [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/ |
xmlreader.py | 9 # ===== XMLREADER ===== 11 class XMLReader: 14 XMLReader is the interface that an XML parser's SAX2 driver must 91 class IncrementalParser(XMLReader): 92 """This interface adds three extra methods to the XMLReader 106 By default, the class also implements the parse method of the XMLReader 113 XMLReader.__init__(self) 188 """Encapsulation of the information needed by the XMLReader to 196 XMLReader.parse method and for returning from 199 An InputSource belongs to the application, the XMLReader is no [all...] |