mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-25 23:21:26 +03:00
370ba3d231
* parser.c: fixed the leak reported by Volker Roth on the list * test/ent10 result//ent10*: added a specific test for the problem Daniel
32 lines
572 B
Plaintext
32 lines
572 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.startElement(rnode)
|
|
SAX.characters(
|
|
, 4)
|
|
SAX.getEntity(f)
|
|
SAX.ignorableWhitespace(
|
|
, 4)
|
|
SAX.startElement(f)
|
|
SAX.characters(
|
|
hello world
|
|
, 19)
|
|
SAX.endElement(f)
|
|
SAX.characters(
|
|
, 4)
|
|
SAX.reference(f)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(rnode)
|
|
SAX.endDocument()
|