|
ReactOS 0.4.16-dev-2208-g6350669
|


Go to the source code of this file.
| XML_DEPRECATED XMLPUBFUN void xmlDefaultSAXHandlerInit | ( | void | ) |
| XMLPUBFUN void xmlSAX2AttributeDecl | ( | void * | ctx, |
| const xmlChar * | elem, | ||
| const xmlChar * | fullname, | ||
| int | type, | ||
| int | def, | ||
| const xmlChar * | defaultValue, | ||
| xmlEnumerationPtr | tree | ||
| ) |
Definition at line 653 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
xmlSAX2CDataBlock: @ctx: the user data (XML parser context) @value: The pcdata content @len: the block length
called when a pcdata block has been parsed
Definition at line 2660 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
xmlSAX2Characters: @ctx: the user data (XML parser context) @ch: a xmlChar string @len: the number of xmlChar
receiving some chars from the parser.
Definition at line 2539 of file SAX2.c.
Referenced by sax_characters(), and xmlSAXVersion().
xmlSAX2Comment: @ctx: the user data (XML parser context) @value: the xmlSAX2Comment content
A xmlSAX2Comment has been parsed.
Definition at line 2614 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
| XMLPUBFUN void xmlSAX2ElementDecl | ( | void * | ctx, |
| const xmlChar * | name, | ||
| int | type, | ||
| xmlElementContentPtr | content | ||
| ) |
Definition at line 720 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
xmlSAX2EndDocument: @ctx: the user data (XML parser context)
called when the document end has been detected.
Definition at line 944 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
| XMLPUBFUN void xmlSAX2EndElementNs | ( | void * | ctx, |
| const xmlChar * | localname, | ||
| const xmlChar * | prefix, | ||
| const xmlChar * | URI | ||
| ) |
Referenced by doparse().
| XMLPUBFUN void xmlSAX2EntityDecl | ( | void * | ctx, |
| const xmlChar * | name, | ||
| int | type, | ||
| const xmlChar * | publicId, | ||
| const xmlChar * | systemId, | ||
| xmlChar * | content | ||
| ) |
Definition at line 588 of file SAX2.c.
Referenced by doparse(), xmlParseEntityDecl(), and xmlSAXVersion().
| XMLPUBFUN void xmlSAX2ExternalSubset | ( | void * | ctx, |
| const xmlChar * | name, | ||
| const xmlChar * | ExternalID, | ||
| const xmlChar * | SystemID | ||
| ) |
Definition at line 357 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
xmlSAX2GetColumnNumber: @ctx: the user data (XML parser context)
Provide the column number of the current parsing point.
Returns an int
Definition at line 259 of file SAX2.c.
Referenced by update_position().
Definition at line 518 of file SAX2.c.
Referenced by doparse(), xmlParseEntityDecl(), xmlParseEntityRef(), xmlParseStringEntityRef(), and xmlSAXVersion().
xmlSAX2GetLineNumber: @ctx: the user data (XML parser context)
Provide the line number of the current parsing point.
Returns an int
Definition at line 243 of file SAX2.c.
Referenced by update_position().
Referenced by isaxlocator_getPublicId().
xmlSAX2GetSystemId: @ctx: the user data (XML parser context)
Provides the system ID, basically URL or filename e.g. http://www.sgmlsource.com/dtds/memo.dtd
Returns a xmlChar *
Definition at line 227 of file SAX2.c.
Referenced by isaxlocator_getSystemId().
xmlSAX2HasExternalSubset: @ctx: the user data (XML parser context)
Does this document has an external subset
Returns 1 if true
Definition at line 307 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
xmlSAX2HasInternalSubset: @ctx: the user data (XML parser context)
Does this document has an internal subset
Returns 1 if true
Definition at line 291 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
Referenced by xmlCtxtUseOptionsInternal(), and xmlInitSAXParserCtxt().
xmlSAX2InitDefaultSAXHandler: @hdlr: the SAX handler
Initialize the default XML SAX2 handler
Definition at line 2762 of file SAX2.c.
| XMLPUBFUN void xmlSAX2InternalSubset | ( | void * | ctx, |
| const xmlChar * | name, | ||
| const xmlChar * | ExternalID, | ||
| const xmlChar * | SystemID | ||
| ) |
Definition at line 324 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
xmlSAX2IsStandalone: @ctx: the user data (XML parser context)
Is this document tagged standalone ?
Returns 1 if true
Definition at line 275 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
| XMLPUBFUN void xmlSAX2NotationDecl | ( | void * | ctx, |
| const xmlChar * | name, | ||
| const xmlChar * | publicId, | ||
| const xmlChar * | systemId | ||
| ) |
Definition at line 764 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
| XMLPUBFUN void xmlSAX2ProcessingInstruction | ( | void * | ctx, |
| const xmlChar * | target, | ||
| const xmlChar * | data | ||
| ) |
xmlSAX2ProcessingInstruction: @ctx: the user data (XML parser context) @target: the target name @data: the PI data's
A processing instruction has been parsed.
Definition at line 2567 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
| XMLPUBFUN xmlParserInputPtr xmlSAX2ResolveEntity | ( | void * | ctx, |
| const xmlChar * | publicId, | ||
| const xmlChar * | systemId | ||
| ) |
xmlSAX2ResolveEntity: @ctx: the user data (XML parser context) @publicId: The public ID of the entity @systemId: The system ID of the entity
The entity loader, to control the loading of external entities, the application can either:
Returns the xmlParserInputPtr if inlined or NULL for DOM behaviour.
Definition at line 486 of file SAX2.c.
Referenced by doparse(), libxmlresolveentity(), and xmlSAXVersion().
Referenced by doparse().
xmlSAX2StartDocument: @ctx: the user data (XML parser context)
called when the document start being processed.
Definition at line 887 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
| XMLPUBFUN void xmlSAX2StartElementNs | ( | void * | ctx, |
| const xmlChar * | localname, | ||
| const xmlChar * | prefix, | ||
| const xmlChar * | URI, | ||
| int | nb_namespaces, | ||
| const xmlChar ** | namespaces, | ||
| int | nb_attributes, | ||
| int | nb_defaulted, | ||
| const xmlChar ** | attributes | ||
| ) |
xmlSAX2StartElementNs: @ctx: the user data (XML parser context) @localname: the local name of the element @prefix: the element namespace prefix if available @URI: the element namespace name if available @nb_namespaces: number of namespace definitions on that node @namespaces: pointer to the array of prefix/URI pairs namespace definitions @nb_attributes: the number of attributes on that node @nb_defaulted: the number of defaulted attributes. @attributes: pointer to the array of (localname/prefix/URI/value/end) attribute values.
SAX2 callback when an element start has been detected by the parser. It provides the namespace information for the element, as well as the new namespace declarations on the element.
Definition at line 2077 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
| XMLPUBFUN void xmlSAX2UnparsedEntityDecl | ( | void * | ctx, |
| const xmlChar * | name, | ||
| const xmlChar * | publicId, | ||
| const xmlChar * | systemId, | ||
| const xmlChar * | notationName | ||
| ) |
Definition at line 813 of file SAX2.c.
Referenced by doparse(), and xmlSAXVersion().
xmlSAXVersion: @hdlr: the SAX handler
Initialize the default XML SAX handler according to the version
Returns 0 in case of success and -1 in case of error.
Definition at line 2704 of file SAX2.c.
Referenced by xmlInitSAXParserCtxt(), and xmlSAX2InitDefaultSAXHandler().