Searched refs:XMLReader (Results 1 - 25 of 50) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DXMLReaderManager.java29 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 wil
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTrAXFilter.java37 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#pars
[all...]
H A DTransformerIdentityImpl.java65 import org.xml.sax.XMLReader;
426 XMLReader reader = null;
/external/eyes-free/AccessCheck/src/com/android/accessibility/
H A DAccessibilityValidator.java21 import org.xml.sax.XMLReader;
141 XMLReader reader;
/external/python/cpython2/Lib/xml/sax/
H A Dxmlreader.py11 class XMLReader: class in inherits:
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
376 XMLReader()
[all...]
H A Dsaxutils.py199 class XMLFilterBase(xmlreader.XMLReader):
200 """This class is designed to sit between an XMLReader and the
208 xmlreader.XMLReader.__init__(self)
276 # XMLReader methods
/external/python/cpython3/Lib/xml/sax/
H A Dxmlreader.py11 class XMLReader: class in inherits:
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 not
375 XMLReader()
[all...]
H A Dsaxutils.py228 class XMLFilterBase(xmlreader.XMLReader):
229 """This class is designed to sit between an XMLReader and the
237 xmlreader.XMLReader.__init__(self)
305 # XMLReader methods
/external/fonttools/Lib/fontTools/misc/
H A DxmlReader.py14 class XMLReader(object): class in inherits:object
67 subReader = XMLReader(subFile, self.ttFont, self.progress, self.quiet)
/external/fonttools/Tools/fontTools/misc/
H A DxmlReader.py14 class XMLReader(object): class in inherits:object
67 subReader = XMLReader(subFile, self.ttFont, self.progress, self.quiet)
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
H A DSAX1ParserAdapter.java31 final XMLReader xmlReader;
33 public SAX1ParserAdapter(XMLReader xr)
H A DSAXParserImpl.java68 public XMLReader getXMLReader() { return parser; }
/external/apache-xml/src/main/java/org/apache/xpath/
H A DSourceTreeManager.java36 import org.xml.sax.XMLReader;
336 * @return a SAX2 XMLReader to use to resolve the inputSource argument.
341 public static XMLReader getXMLReader(Source inputSource, SourceLocator locator)
347 XMLReader reader = (inputSource instanceof SAXSource)
H A DXPathContext.java55 import org.xml.sax.XMLReader;
607 public XMLReader m_primaryReader;
610 * Get primary XMLReader associated with this execution context.
614 public final XMLReader getPrimaryReader()
620 * Set primary XMLReader associated with this execution context.
624 public void setPrimaryReader(XMLReader reader)
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMManagerDefault.java53 import org.xml.sax.XMLReader;
112 * The cache for XMLReader objects to be used if the user did not
113 * supply an XMLReader for a SAXSource or supplied a StreamSource.
273 XMLReader reader = null;
588 * After use of the parser is completed, the releaseXMLReader(XMLReader)
592 * @return a SAX2 XMLReader to use to resolve the inputSource argument.
594 * @return non-null XMLReader reference ready to parse.
596 synchronized public XMLReader getXMLReader(Source inputSource)
601 XMLReader reader = (inputSource instanceof SAXSource)
621 * Indicates that the XMLReader objec
[all...]
H A DIncrementalSAXSource_Filter.java40 import org.xml.sax.XMLReader;
92 private XMLReader fXMLReader=null;
137 /** Bind our input streams to an XMLReader.
142 public void setXMLReader(XMLReader eventsource)
544 * from an XMLReader passed to our startReader() method), we can do so
591 // Convenience: Run an XMLReader in a thread
594 /** Launch a thread that will run an XMLReader's parse() operation within
608 throw new SAXException(XMLMessages.createXMLMessage(XMLErrorResources.ER_XMLRDR_NOT_BEFORE_STARTPARSE, null)); //"XMLReader not before startParse request");
744 org.xml.sax.XMLReader theSAXParser=
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorInclude.java42 import org.xml.sax.XMLReader;
258 XMLReader reader = null;
H A DTransformerFactoryImpl.java65 import org.xml.sax.XMLReader;
263 XMLReader reader = null;
878 XMLReader reader = null;
/external/jdiff/src/jdiff/
H A DCommentsHandler.java10 import org.xml.sax.XMLReader;
H A DComments.java11 import org.xml.sax.XMLReader;
62 XMLReader parser = null;
H A DXMLToAPI.java11 import org.xml.sax.XMLReader;
48 XMLReader parser = null;
/external/doclava/src/com/google/doclava/apicheck/
H A DXmlApiFile.java32 import org.xml.sax.XMLReader;
52 XMLReader xmlreader = XMLReaderFactory.createXMLReader();
/external/libxml2/python/
H A Ddrv_libxml2.py102 class LibXml2Reader(xmlreader.XMLReader):
105 xmlreader.XMLReader.__init__(self)
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DXMLWriter.java27 import org.xml.sax.XMLReader;
44 * used directly as a ContentHandler for a SAX2 XMLReader.</p>
295 public XMLWriter (XMLReader xmlreader)
313 public XMLWriter (XMLReader xmlreader, Writer writer)
/external/annotation-tools/asmx/src/org/objectweb/asm/xml/
H A DProcessor.java63 import org.xml.sax.XMLReader;
269 XMLReader reader = XMLReaderFactory.createXMLReader();

Completed in 430 milliseconds

12