|
ReactOS 0.4.16-dev-1946-g52006dd
|

Go to the source code of this file.
Macros | |
| #define | DOCBOOK_XSL_HACK |
Functions | |
: the function name | |
xsltXPathFunctionLookup: @vctxt: a void * but the XSLT transformation context actually @ns_uri: the function namespace URI This is the entry point when a function is needed by the XPath interpretor. Returns the callback function or NULL if not found | |
| xmlXPathFunction | xsltXPathFunctionLookup (void *vctxt, const xmlChar *name, const xmlChar *ns_uri) |
| static void | xsltDocumentFunctionLoadDocument (xmlXPathParserContextPtr ctxt, xmlChar *URI) |
| void | xsltDocumentFunction (xmlXPathParserContextPtr ctxt, int nargs) |
| void | xsltKeyFunction (xmlXPathParserContextPtr ctxt, int nargs) |
| void | xsltUnparsedEntityURIFunction (xmlXPathParserContextPtr ctxt, int nargs) |
| void | xsltFormatNumberFunction (xmlXPathParserContextPtr ctxt, int nargs) |
| void | xsltGenerateIdFunction (xmlXPathParserContextPtr ctxt, int nargs) |
| void | xsltSystemPropertyFunction (xmlXPathParserContextPtr ctxt, int nargs) |
| void | xsltElementAvailableFunction (xmlXPathParserContextPtr ctxt, int nargs) |
| void | xsltFunctionAvailableFunction (xmlXPathParserContextPtr ctxt, int nargs) |
| static void | xsltCurrentFunction (xmlXPathParserContextPtr ctxt, int nargs) |
| void | xsltRegisterAllFunctions (xmlXPathContextPtr ctxt) |
| #define DOCBOOK_XSL_HACK |
Definition at line 26 of file functions.c.
xsltCurrentFunction: @ctxt: the XPath Parser context @nargs: the number of arguments
Implement the current() XSLT function node-set current()
Definition at line 927 of file functions.c.
Referenced by xsltRegisterAllFunctions().
xsltDocumentFunction: @ctxt: the XPath Parser context @nargs: the number of arguments
Implement the document() XSLT function node-set document(object, node-set?)
Definition at line 193 of file functions.c.
Referenced by xsltDocumentFunction(), and xsltRegisterAllFunctions().
|
static |
Definition at line 78 of file functions.c.
Referenced by xsltDocumentFunction().
xsltElementAvailableFunction: @ctxt: the XPath Parser context @nargs: the number of arguments
Implement the element-available() XSLT function boolean element-available(string)
Definition at line 807 of file functions.c.
Referenced by xsltRegisterAllFunctions().
xsltFormatNumberFunction: @ctxt: the XPath Parser context @nargs: the number of arguments
Implement the format-number() XSLT function string format-number(number, string, string?)
Definition at line 567 of file functions.c.
Referenced by xsltRegisterAllFunctions().
xsltFunctionAvailableFunction: @ctxt: the XPath Parser context @nargs: the number of arguments
Implement the function-available() XSLT function boolean function-available(string)
Definition at line 874 of file functions.c.
Referenced by xsltRegisterAllFunctions().
xsltGenerateIdFunction: @ctxt: the XPath Parser context @nargs: the number of arguments
Implement the generate-id() XSLT function string generate-id(node-set?)
Definition at line 653 of file functions.c.
Referenced by xsltRegisterAllFunctions().
xsltKeyFunction: @ctxt: the XPath Parser context @nargs: the number of arguments
Implement the key() XSLT function node-set key(string, object)
Definition at line 327 of file functions.c.
Referenced by xsltKeyFunction(), and xsltRegisterAllFunctions().
| void xsltRegisterAllFunctions | ( | xmlXPathContextPtr | ctxt | ) |
xsltRegisterAllFunctions: @ctxt: the XPath context
Registers all default XSLT functions in this context
Definition at line 959 of file functions.c.
xsltSystemPropertyFunction: @ctxt: the XPath Parser context @nargs: the number of arguments
Implement the system-property() XSLT function object system-property(string)
Definition at line 713 of file functions.c.
Referenced by xsltRegisterAllFunctions().
xsltUnparsedEntityURIFunction: @ctxt: the XPath Parser context @nargs: the number of arguments
Implement the unparsed-entity-uri() XSLT function string unparsed-entity-uri(string)
Definition at line 524 of file functions.c.
Referenced by xsltRegisterAllFunctions().
| xmlXPathFunction xsltXPathFunctionLookup | ( | void * | vctxt, |
| const xmlChar * | name, | ||
| const xmlChar * | ns_uri | ||
| ) |
Definition at line 40 of file functions.c.