Home
last modified time | relevance | path

Searched refs:InputSource (Results 1 – 18 of 18) sorted by relevance

/third_party/python/Doc/library/
Dxml.sax.reader.rst54 .. class:: InputSource(system_id=None)
67 An :class:`InputSource` belongs to the application, the :class:`XMLReader` is
68 not allowed to modify :class:`InputSource` objects passed to it from the
106 object, or an :class:`InputSource` object. When
259 InputSource Objects
263 .. method:: InputSource.setPublicId(id)
265 Sets the public identifier of this :class:`InputSource`.
268 .. method:: InputSource.getPublicId()
270 Returns the public identifier of this :class:`InputSource`.
273 .. method:: InputSource.setSystemId(id)
[all …]
Dxml.sax.utils.rst86 fully resolved :class:`~xml.sax.xmlreader.InputSource` object ready for
88 an :class:`~xml.sax.xmlreader.InputSource` object; parsers will use this
Dxml.sax.rst86 :class:`~xml.sax.xmlreader.InputSource`, :class:`~xml.sax.xmlreader.Locator`,
91 :class:`~xml.sax.xmlreader.InputSource` (which is often
Dxml.sax.handler.rst381 identifier to read from as a string, or an InputSource to read from. The default
/third_party/python/Lib/xml/sax/
D__init__.py22 from .xmlreader import InputSource
43 inpsrc = InputSource()
Dsaxutils.py345 source = xmlreader.InputSource(source)
348 source = xmlreader.InputSource()
Dxmlreader.py189 class InputSource: class
Dexpatreader.py92 self._source = xmlreader.InputSource()
/third_party/python/Lib/test/
Dtest_sax.py18 from xml.sax.xmlreader import InputSource, AttributesImpl, AttributesNSImpl
198 input = InputSource()
376 src = InputSource(self.file)
386 src = InputSource(self.file)
396 src = InputSource(self.file)
965 source = InputSource()
1020 inpsrc = InputSource()
1137 parser.parse(InputSource(TEST_XMLFILE))
1152 parser.parse(InputSource(fname))
1162 inpsrc = InputSource()
[all …]
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/coverage/
DJacocoReportCheck.java32 import org.xml.sax.InputSource;
148 public InputSource resolveEntity(String publicId, String systemId) { in parseReport()
149 return new InputSource(new StringReader("")); in parseReport()
/third_party/icu/tools/unicodetools/com/ibm/rbm/
DRBTMXImporter.java61 InputSource is = new InputSource(fis); in beginImport()
DRBxliffImporter.java57 InputSource is = new InputSource(fis); in beginImport()
DRBReporterScanner.java38 InputSource is = new InputSource(new FileInputStream(configFile)); in RBReporterScanner()
/third_party/libphonenumber/tools/java/common/test/com/google/i18n/phonenumbers/
DBuildMetadataFromXmlTest.java33 import org.xml.sax.InputSource;
48 InputSource inputSource = new InputSource(); in parseXmlString()
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/
DStableAPI.java48 import org.xml.sax.InputSource;
1021 InputSource inputSource = new InputSource(fis); in getDocument()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
DXLIFF2ICUConverter.java31 import org.xml.sax.InputSource;
419 doc = docBuilder.parse(new InputSource(urls)); in createRB()
/third_party/python/Misc/NEWS.d/
D3.5.0a4.rst386 SAX parsers now support a character stream of InputSource object.
/third_party/python/Doc/whatsnew/
D3.5.rst2077 :class:`xmlreader.InputSource <xml.sax.xmlreader.InputSource>` object.