Searched refs:startPrefixMapping (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Lib/xml/sax/ |
D | saxutils.py | 157 def startPrefixMapping(self, prefix, uri): member in XMLGenerator 261 def startPrefixMapping(self, prefix, uri): member in XMLFilterBase 262 self._cont_handler.startPrefixMapping(prefix, uri)
|
D | handler.py | 96 def startPrefixMapping(self, prefix, uri): member in ContentHandler
|
D | expatreader.py | 392 self._cont_handler.startPrefixMapping(prefix, uri)
|
/third_party/python/Doc/library/ |
D | xml.sax.handler.rst | 211 .. method:: ContentHandler.startPrefixMapping(prefix, uri) 222 the :meth:`startPrefixMapping` and :meth:`endPrefixMapping` events supply the 228 Note that :meth:`startPrefixMapping` and :meth:`endPrefixMapping` events are not 230 :meth:`startPrefixMapping` events will occur before the corresponding 240 See :meth:`startPrefixMapping` for details. This event will always occur after
|
/third_party/python/Lib/test/ |
D | test_sax.py | 603 gen.startPrefixMapping("ns1", ns_uri) 621 gen.startPrefixMapping("ns1", ns_uri) 661 gen.startPrefixMapping(None, 'qux') 674 gen.startPrefixMapping(None, 'qux') 687 gen.startPrefixMapping('my', 'qux') 701 gen.startPrefixMapping('my', 'qux') 748 gen.startPrefixMapping('a', 'http://example.com/ns')
|
/third_party/python/Lib/xml/dom/ |
D | pulldom.py | 41 def startPrefixMapping(self, prefix, uri): member in PullDOM
|