mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-04 05:17:37 +03:00
19 lines
455 B
Plaintext
19 lines
455 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(EXAMPLE, (null), example.dtd)
|
|
SAX.resolveEntity( , example.dtd)
|
|
SAX.entityDecl(xml, 1, (null), (null), Extensible Markup Language)
|
|
SAX.getEntity(xml)
|
|
SAX.startElement(EXAMPLE)
|
|
SAX.characters(
|
|
Test of , 11)
|
|
SAX.getEntity(amp)
|
|
SAX.characters(&, 1)
|
|
SAX.characters(amp; behaviour a, 16)
|
|
SAX.getEntity(amp)
|
|
SAX.characters(&, 1)
|
|
SAX.characters(b .
|
|
, 4)
|
|
SAX.endElement(EXAMPLE)
|
|
SAX.endDocument()
|