mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-24 21:33:51 +03:00
31 lines
636 B
Plaintext
31 lines
636 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(rnode, , )
|
|
SAX.elementDecl(rnode, 4, ...)
|
|
SAX.elementDecl(f, 3, ...)
|
|
SAX.attributeDecl(f, att1, 1, 4, J, ...)
|
|
SAX.entityDecl(f, 1, (null), (null),
|
|
<f>
|
|
hello world
|
|
</f>
|
|
)
|
|
SAX.getEntity(f)
|
|
SAX.externalSubset(rnode, , )
|
|
SAX.startElementNs(rnode, NULL, NULL, 0, 0, 0)
|
|
SAX.characters(
|
|
, 4)
|
|
SAX.getEntity(f)
|
|
SAX.characters(
|
|
, 4)
|
|
SAX.startElementNs(f, NULL, NULL, 0, 1, 1, att1='J...', 1)
|
|
SAX.characters(
|
|
hello world
|
|
, 19)
|
|
SAX.endElementNs(f, NULL, NULL)
|
|
SAX.characters(
|
|
, 4)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElementNs(rnode, NULL, NULL)
|
|
SAX.endDocument()
|