ReactOS 0.4.16-dev-61-ge128cbc
|
Go to the source code of this file.
XML_DEPRECATED XMLPUBFUN void XMLCALL xmlDefaultSAXHandlerInit | ( | void | ) |
xmlDefaultSAXHandlerInit:
DEPRECATED: This function will be made private. Call xmlInitParser to initialize the library.
Initialize the default SAX2 handler
Definition at line 2934 of file SAX2.c.
Referenced by xmlInitParser().
XMLPUBFUN void XMLCALL xmlSAX2AttributeDecl | ( | void * | ctx, |
const xmlChar * | elem, | ||
const xmlChar * | fullname, | ||
int | type, | ||
int | def, | ||
const xmlChar * | defaultValue, | ||
xmlEnumerationPtr | tree | ||
) |
Definition at line 674 of file SAX2.c.
Referenced by 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 2816 of file SAX2.c.
Referenced by 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 2657 of file SAX2.c.
Referenced by xmlSAXVersion().
xmlSAX2Comment: @ctx: the user data (XML parser context) @value: the xmlSAX2Comment content
A xmlSAX2Comment has been parsed.
Definition at line 2754 of file SAX2.c.
Referenced by xmlSAXVersion().
XMLPUBFUN void XMLCALL xmlSAX2ElementDecl | ( | void * | ctx, |
const xmlChar * | name, | ||
int | type, | ||
xmlElementContentPtr | content | ||
) |
Definition at line 746 of file SAX2.c.
Referenced by xmlSAXVersion().
xmlSAX2EndDocument: @ctx: the user data (XML parser context)
called when the document end has been detected.
Definition at line 998 of file SAX2.c.
Referenced by xmlSAXVersion().
XMLPUBFUN void XMLCALL xmlSAX2EndElementNs | ( | void * | ctx, |
const xmlChar * | localname, | ||
const xmlChar * | prefix, | ||
const xmlChar * | URI | ||
) |
XMLPUBFUN void XMLCALL xmlSAX2EntityDecl | ( | void * | ctx, |
const xmlChar * | name, | ||
int | type, | ||
const xmlChar * | publicId, | ||
const xmlChar * | systemId, | ||
xmlChar * | content | ||
) |
Definition at line 604 of file SAX2.c.
Referenced by xmlParseEntityDecl(), and xmlSAXVersion().
XMLPUBFUN void XMLCALL xmlSAX2ExternalSubset | ( | void * | ctx, |
const xmlChar * | name, | ||
const xmlChar * | ExternalID, | ||
const xmlChar * | SystemID | ||
) |
Definition at line 362 of file SAX2.c.
Referenced by 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 xmlInitializeGlobalState().
Definition at line 526 of file SAX2.c.
Referenced by 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 xmlInitializeGlobalState().
Definition at line 576 of file SAX2.c.
Referenced by xmlSAXVersion().
Referenced by xmlInitializeGlobalState().
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 xmlInitializeGlobalState().
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 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 xmlSAXVersion().
Referenced by xmlCtxtUseOptionsInternal(), and xmlInitParserCtxt().
XMLPUBFUN void XMLCALL xmlSAX2InitDefaultSAXHandler | ( | xmlSAXHandler * | hdlr, |
int | warning | ||
) |
xmlSAX2InitDefaultSAXHandler: @hdlr: the SAX handler
Initialize the default XML SAX2 handler
Definition at line 2913 of file SAX2.c.
XMLPUBFUN void XMLCALL xmlSAX2InternalSubset | ( | void * | ctx, |
const xmlChar * | name, | ||
const xmlChar * | ExternalID, | ||
const xmlChar * | SystemID | ||
) |
Definition at line 324 of file SAX2.c.
Referenced by 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 xmlSAXVersion().
XMLPUBFUN void XMLCALL xmlSAX2NotationDecl | ( | void * | ctx, |
const xmlChar * | name, | ||
const xmlChar * | publicId, | ||
const xmlChar * | systemId | ||
) |
Definition at line 795 of file SAX2.c.
Referenced by xmlSAXVersion().
XMLPUBFUN void XMLCALL 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 2690 of file SAX2.c.
Referenced by xmlSAXVersion().
Definition at line 2488 of file SAX2.c.
Referenced by xmlSAXVersion().
XMLPUBFUN xmlParserInputPtr XMLCALL 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 489 of file SAX2.c.
Referenced by xmlSAXVersion().
XMLPUBFUN void XMLCALL xmlSAX2SetDocumentLocator | ( | void * | ctx, |
xmlSAXLocatorPtr | loc | ||
) |
xmlSAX2StartDocument: @ctx: the user data (XML parser context)
called when the document start being processed.
Definition at line 933 of file SAX2.c.
Referenced by xmlSAXVersion().
XMLPUBFUN void XMLCALL 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 2195 of file SAX2.c.
Referenced by xmlSAXVersion().
XMLPUBFUN void XMLCALL xmlSAX2UnparsedEntityDecl | ( | void * | ctx, |
const xmlChar * | name, | ||
const xmlChar * | publicId, | ||
const xmlChar * | systemId, | ||
const xmlChar * | notationName | ||
) |
Definition at line 849 of file SAX2.c.
Referenced by xmlSAXVersion().
XMLPUBFUN int XMLCALL xmlSAXVersion | ( | xmlSAXHandler * | hdlr, |
int | version | ||
) |
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 2858 of file SAX2.c.
Referenced by xmlDefaultSAXHandlerInit(), xmlInitParserCtxt(), and xmlSAX2InitDefaultSAXHandler().