|
ReactOS 0.4.16-dev-1946-g52006dd
|


Go to the source code of this file.
Macros | |
| #define | NODE_IS_KEYED (1 >> 15) |
Functions | |
| XSLTPUBFUN int XSLTCALL | xsltAddKey (xsltStylesheetPtr style, const xmlChar *name, const xmlChar *nameURI, const xmlChar *match, const xmlChar *use, xmlNodePtr inst) |
| XSLTPUBFUN xmlNodeSetPtr XSLTCALL | xsltGetKey (xsltTransformContextPtr ctxt, const xmlChar *name, const xmlChar *nameURI, const xmlChar *value) |
| XSLTPUBFUN void XSLTCALL | xsltInitCtxtKeys (xsltTransformContextPtr ctxt, xsltDocumentPtr doc) |
| XSLTPUBFUN void XSLTCALL | xsltFreeKeys (xsltStylesheetPtr style) |
| XSLTPUBFUN void XSLTCALL | xsltFreeDocumentKeys (xsltDocumentPtr doc) |
| #define NODE_IS_KEYED (1 >> 15) |
| XSLTPUBFUN int XSLTCALL xsltAddKey | ( | xsltStylesheetPtr | style, |
| const xmlChar * | name, | ||
| const xmlChar * | nameURI, | ||
| const xmlChar * | match, | ||
| const xmlChar * | use, | ||
| xmlNodePtr | inst | ||
| ) |
Definition at line 263 of file keys.c.
Referenced by xsltParseStylesheetKey().
| XSLTPUBFUN void XSLTCALL xsltFreeDocumentKeys | ( | xsltDocumentPtr | idoc | ) |
xsltFreeDocumentKeys: @idoc: a XSLT document
Free the keys associated to a document
Definition at line 925 of file keys.c.
Referenced by xsltFreeDocuments(), xsltFreeRVTs(), xsltFreeStyleDocuments(), xsltReleaseRVT(), and xsltTransformCacheFree().
| XSLTPUBFUN void XSLTCALL xsltFreeKeys | ( | xsltStylesheetPtr | style | ) |
xsltFreeKeys: @style: an XSLT stylesheet
Free up the memory used by XSLT keys in a stylesheet
Definition at line 185 of file keys.c.
Referenced by xsltFreeStylesheet().
| XSLTPUBFUN xmlNodeSetPtr XSLTCALL xsltGetKey | ( | xsltTransformContextPtr | ctxt, |
| const xmlChar * | name, | ||
| const xmlChar * | nameURI, | ||
| const xmlChar * | value | ||
| ) |
Definition at line 417 of file keys.c.
Referenced by xsltKeyFunction(), and xsltTestStepMatch().
| XSLTPUBFUN void XSLTCALL xsltInitCtxtKeys | ( | xsltTransformContextPtr | ctxt, |
| xsltDocumentPtr | idoc | ||
| ) |
xsltInitCtxtKeys: @ctxt: an XSLT transformation context @idoc: a document info
Computes all the keys tables for the current input document. Should be done before global varibales are initialized. NOTE: Not used anymore in the refactored code.
Definition at line 884 of file keys.c.