mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-24 21:33:51 +03:00
4a5a964c66
* result/*.sax2 MAkefile.am: added SAXv2 regression tests apparently missing. * runtest.c: added SAX1/SAX2 checks. Daniel
18 lines
511 B
Plaintext
18 lines
511 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(doc, , )
|
|
SAX.entityDecl(lt, 1, (null), (null), <)
|
|
SAX.getEntity(lt)
|
|
SAX.entityDecl(gt, 1, (null), (null), >)
|
|
SAX.getEntity(gt)
|
|
SAX.entityDecl(amp, 1, (null), (null), &)
|
|
SAX.getEntity(amp)
|
|
SAX.entityDecl(apos, 1, (null), (null), ')
|
|
SAX.getEntity(apos)
|
|
SAX.entityDecl(quot, 1, (null), (null), ")
|
|
SAX.getEntity(quot)
|
|
SAX.externalSubset(doc, , )
|
|
SAX.startElementNs(doc, NULL, NULL, 0, 0, 0)
|
|
SAX.endElementNs(doc, NULL, NULL)
|
|
SAX.endDocument()
|