/libcore/luni/src/main/java/javax/xml/parsers/ |
DocumentBuilder.java | 20 package javax.xml.parsers; 25 import javax.xml.validation.Schema; 28 import org.xml.sax.EntityResolver; 29 import org.xml.sax.ErrorHandler; 30 import org.xml.sax.InputSource; 31 import org.xml.sax.SAXException; 34 * Defines the API to obtain DOM Document instances from an XML 36 * {@link Document} from XML.<p> 40 * an instance of this class is obtained, XML can be parsed from a 46 * implementation use a SAX parser to parse XML document into [all...] |
FilePathToURI.java | 18 package javax.xml.parsers;
|
SAXParserFactory.java | 20 package javax.xml.parsers; 22 import javax.xml.validation.Schema; 23 import org.apache.harmony.xml.parsers.SAXParserFactoryImpl; 24 import org.xml.sax.SAXException; 25 import org.xml.sax.SAXNotRecognizedException; 26 import org.xml.sax.SAXNotSupportedException; 30 * obtain a SAX based parser to parse XML documents. 115 * provide support for XML namespaces. By default the value of this is set 119 * provide support for XML namespaces; false otherwise. 133 * <a href="http://www.w3.org/TR/REC-xml#proc-types">a validatin [all...] |
/libcore/luni/src/main/java/javax/xml/transform/ |
Transformer.java | 20 package javax.xml.transform; 30 * method. This instance may then be used to process XML from a 79 * <p>Transform the XML <code>Source</code> to a <code>Result</code>. 86 * as constructed by {@link javax.xml.parsers.DocumentBuilder#newDocument()}. 91 * @param xmlSource The XML input to transform. 213 * @see javax.xml.transform.OutputKeys 249 * @see javax.xml.transform.OutputKeys 281 * @see javax.xml.transform.OutputKeys 300 * @see javax.xml.transform.OutputKeys
|
TransformerFactory.java | 20 package javax.xml.transform; 24 * {@link javax.xml.transform.Transformer} and 25 * {@link javax.xml.transform.Templates} objects.</p> 28 * to create is named <code>"javax.xml.transform.TransformerFactory"</code>. 125 * Examples of XML <code>Source</code>s include 126 * {@link javax.xml.transform.stream.StreamSource StreamSource}, 127 * {@link javax.xml.transform.sax.SAXSource SAXSource} and 128 * {@link javax.xml.transform.dom.DOMSource DOMSource}. 179 * XML <code>Source</code> document via the 180 * <a href="http://www.w3.org/TR/xml-stylesheet/" [all...] |
/libcore/luni/src/main/java/javax/xml/transform/stream/ |
FilePathToURI.java | 18 package javax.xml.transform.stream;
|
StreamSource.java | 20 package javax.xml.transform.stream; 25 import javax.xml.transform.Source; 29 * of a stream of XML markup.</p> 39 /** If {@link javax.xml.transform.TransformerFactory#getFeature} 44 "http://javax.xml.transform.stream.StreamSource/feature"; 55 * @see javax.xml.transform.Transformer#transform(Source xmlSource, Result outputTarget) 62 * the XML parser can resolve character encoding specified 63 * by the XML declaration. 69 * @param inputStream A valid InputStream reference to an XML stream. 78 * the XML parser can resolve character encoding specifie [all...] |
/libcore/luni/src/main/java/javax/xml/validation/ |
SchemaFactory.java | 20 package javax.xml.validation; 24 import javax.xml.transform.Source; 25 import javax.xml.transform.stream.StreamSource; 27 import org.xml.sax.ErrorHandler; 28 import org.xml.sax.SAXException; 29 import org.xml.sax.SAXNotRecognizedException; 30 import org.xml.sax.SAXNotSupportedException; 59 * is only required to support W3C XML Schema 1.0. However, 70 * Note that because the XML DTD is strongly tied to the parsing process 74 * the XML DTD. This doesn't prohibit implementers from implementing i [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
ExpatAttributes.java | 17 package org.apache.harmony.xml; 19 import org.xml.sax.Attributes;
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
CDATASectionImpl.java | 17 package org.apache.harmony.xml.dom;
|
EntityImpl.java | 17 package org.apache.harmony.xml.dom;
|
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/ |
DocumentBuilderFactoryImpl.java | 17 package org.apache.harmony.xml.parsers; 19 import javax.xml.parsers.DocumentBuilder; 20 import javax.xml.parsers.DocumentBuilderFactory; 21 import javax.xml.parsers.ParserConfigurationException; 32 "http://xml.org/sax/features/namespaces"; 35 "http://xml.org/sax/features/validation"; 69 * a special feature (like http://www.org.apache.harmony.com/xml/expat)
|
/libcore/luni/src/main/java/org/xml/sax/ |
HandlerBase.java | 6 package org.xml.sax; 22 * the {@link org.xml.sax.helpers.DefaultHandler DefaultHandler} 33 * {@link org.xml.sax.DocumentHandler DocumentHandler} 35 * {@link org.xml.sax.helpers.DefaultHandler DefaultHandler} 40 * @see org.xml.sax.EntityResolver 41 * @see org.xml.sax.DTDHandler 42 * @see org.xml.sax.DocumentHandler 43 * @see org.xml.sax.ErrorHandler 60 * identifier provided in the XML document. This method implements 67 * @param systemId The system identifier provided in the XML [all...] |
InputSource.java | 6 package org.xml.sax; 12 * A single input source for an XML entity. 32 * to read XML input. If there is a character stream available, the 39 * such as the one in the XML specification. If neither a character 55 * @see org.xml.sax.XMLReader#parse(org.xml.sax.InputSource) 56 * @see org.xml.sax.EntityResolver#resolveEntity 150 * @see org.xml.sax.Locator#getPublicId 151 * @see org.xml.sax.SAXParseException#getPublicId 191 * @see org.xml.sax.Locator#getSystemI [all...] |
XMLReader.java | 1 // XMLReader.java - read an XML document. 7 package org.xml.sax; 13 * Interface for reading an XML document using callbacks. 24 * interface, because reading XML is a fundamentally different activity 27 * <p>XMLReader is the interface that an XML parser's SAX2 driver must 39 * org.xml.sax.Parser Parser} interface. The XMLReader interface 47 * higher-level XML standards.</li> 56 * @see org.xml.sax.XMLFilter 57 * @see org.xml.sax.helpers.ParserAdapter 58 * @see org.xml.sax.helpers.XMLReaderAdapte [all...] |
/libcore/luni/src/main/java/org/xml/sax/ext/ |
DefaultHandler2.java | 6 package org.xml.sax.ext; 9 import org.xml.sax.InputSource; 10 import org.xml.sax.SAXException; 11 import org.xml.sax.helpers.DefaultHandler; 135 * referenced (normalized as required by the XML specification), or 140 * one). This URI is defined by the XML specification to be the one 168 * referenced (normalized as required by the XML specification), or
|
/libcore/luni/src/test/java/libcore/xml/ |
JaxenXPathTestSuite.java | 17 package libcore.xml; 26 import org.xml.sax.InputSource; 27 import org.xml.sax.SAXException; 29 import javax.xml.namespace.QName; 30 import javax.xml.parsers.DocumentBuilderFactory; 31 import javax.xml.parsers.ParserConfigurationException; 32 import javax.xml.xpath.XPath; 33 import javax.xml.xpath.XPathConstants; 34 import javax.xml.xpath.XPathExpressionException; 35 import javax.xml.xpath.XPathFactory [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
XMLReaderFactoryTest.java | 17 package tests.api.org.xml.sax.helpers; 21 import org.xml.sax.SAXException; 22 import org.xml.sax.helpers.XMLReaderFactory; 43 System.setProperty("org.xml.sax.driver", "foo.bar.XMLReader"); 52 System.setProperty("org.xml.sax.driver", 53 "tests.api.org.xml.sax.support.NoAccessXMLReader"); 62 System.setProperty("org.xml.sax.driver", 63 "tests.api.org.xml.sax.support.NoInstanceXMLReader"); 72 System.setProperty("org.xml.sax.driver", 73 "tests.api.org.xml.sax.support.NoSubclassXMLReader") [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
DoNothingXMLReader.java | 17 package tests.api.org.xml.sax.support; 19 import org.xml.sax.ContentHandler; 20 import org.xml.sax.DTDHandler; 21 import org.xml.sax.EntityResolver; 22 import org.xml.sax.ErrorHandler; 23 import org.xml.sax.InputSource; 24 import org.xml.sax.XMLReader;
|
MockFilter.java | 17 package tests.api.org.xml.sax.support; 25 import org.xml.sax.InputSource; 26 import org.xml.sax.SAXException; 27 import org.xml.sax.SAXNotRecognizedException; 28 import org.xml.sax.SAXNotSupportedException; 29 import org.xml.sax.helpers.XMLFilterImpl;
|
NoAccessXMLReader.java | 17 package tests.api.org.xml.sax.support; 19 import org.xml.sax.ContentHandler; 20 import org.xml.sax.DTDHandler; 21 import org.xml.sax.EntityResolver; 22 import org.xml.sax.ErrorHandler; 23 import org.xml.sax.InputSource; 24 import org.xml.sax.XMLReader;
|
NoInstanceXMLReader.java | 17 package tests.api.org.xml.sax.support; 19 import org.xml.sax.ContentHandler; 20 import org.xml.sax.DTDHandler; 21 import org.xml.sax.EntityResolver; 22 import org.xml.sax.ErrorHandler; 23 import org.xml.sax.InputSource; 24 import org.xml.sax.XMLReader;
|
NoSubclassXMLReader.java | 17 package tests.api.org.xml.sax.support; 19 import org.xml.sax.ContentHandler; 20 import org.xml.sax.DTDHandler; 21 import org.xml.sax.EntityResolver; 22 import org.xml.sax.ErrorHandler; 23 import org.xml.sax.InputSource; 24 import org.xml.sax.XMLReader;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/ |
minicompat.py | 41 import xml.dom namespace 62 raise xml.dom.NoModificationAllowedErr( 95 raise xml.dom.NoModificationAllowedErr( 105 raise xml.dom.NoModificationAllowedErr(
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
minicompat.py | 41 import xml.dom namespace 62 raise xml.dom.NoModificationAllowedErr( 95 raise xml.dom.NoModificationAllowedErr( 105 raise xml.dom.NoModificationAllowedErr(
|