ReactOS 0.4.16-dev-1067-ge98bba2
|
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
#include "xsltexports.h"
#include "xsltInternals.h"
Go to the source code of this file.
Macros | |
#define | XSLT_REGISTER_FUNCTION_LOOKUP(ctxt) |
Functions | |
XSLTPUBFUN xmlXPathFunction XSLTCALL | xsltXPathFunctionLookup (void *vctxt, const xmlChar *name, const xmlChar *ns_uri) |
XSLTPUBFUN void XSLTCALL | xsltDocumentFunction (xmlXPathParserContextPtr ctxt, int nargs) |
XSLTPUBFUN void XSLTCALL | xsltKeyFunction (xmlXPathParserContextPtr ctxt, int nargs) |
XSLTPUBFUN void XSLTCALL | xsltUnparsedEntityURIFunction (xmlXPathParserContextPtr ctxt, int nargs) |
XSLTPUBFUN void XSLTCALL | xsltFormatNumberFunction (xmlXPathParserContextPtr ctxt, int nargs) |
XSLTPUBFUN void XSLTCALL | xsltGenerateIdFunction (xmlXPathParserContextPtr ctxt, int nargs) |
XSLTPUBFUN void XSLTCALL | xsltSystemPropertyFunction (xmlXPathParserContextPtr ctxt, int nargs) |
XSLTPUBFUN void XSLTCALL | xsltElementAvailableFunction (xmlXPathParserContextPtr ctxt, int nargs) |
XSLTPUBFUN void XSLTCALL | xsltFunctionAvailableFunction (xmlXPathParserContextPtr ctxt, int nargs) |
XSLTPUBFUN void XSLTCALL | xsltRegisterAllFunctions (xmlXPathContextPtr ctxt) |
#define XSLT_REGISTER_FUNCTION_LOOKUP | ( | ctxt | ) |
XSLT_REGISTER_FUNCTION_LOOKUP:
Registering macro, not general purpose at all but used in different modules.
Definition at line 27 of file functions.h.
XSLTPUBFUN void XSLTCALL xsltDocumentFunction | ( | xmlXPathParserContextPtr | ctxt, |
int | nargs | ||
) |
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().
XSLTPUBFUN void XSLTCALL xsltElementAvailableFunction | ( | xmlXPathParserContextPtr | ctxt, |
int | nargs | ||
) |
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().
XSLTPUBFUN void XSLTCALL xsltFormatNumberFunction | ( | xmlXPathParserContextPtr | ctxt, |
int | nargs | ||
) |
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().
XSLTPUBFUN void XSLTCALL xsltFunctionAvailableFunction | ( | xmlXPathParserContextPtr | ctxt, |
int | nargs | ||
) |
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().
XSLTPUBFUN void XSLTCALL xsltGenerateIdFunction | ( | xmlXPathParserContextPtr | ctxt, |
int | nargs | ||
) |
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().
XSLTPUBFUN void XSLTCALL xsltKeyFunction | ( | xmlXPathParserContextPtr | ctxt, |
int | nargs | ||
) |
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().
XSLTPUBFUN void XSLTCALL xsltRegisterAllFunctions | ( | xmlXPathContextPtr | ctxt | ) |
xsltRegisterAllFunctions: @ctxt: the XPath context
Registers all default XSLT functions in this context
Definition at line 959 of file functions.c.
XSLTPUBFUN void XSLTCALL xsltSystemPropertyFunction | ( | xmlXPathParserContextPtr | ctxt, |
int | nargs | ||
) |
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().
XSLTPUBFUN void XSLTCALL xsltUnparsedEntityURIFunction | ( | xmlXPathParserContextPtr | ctxt, |
int | nargs | ||
) |
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().
XSLTPUBFUN xmlXPathFunction XSLTCALL xsltXPathFunctionLookup | ( | void * | vctxt, |
const xmlChar * | name, | ||
const xmlChar * | ns_uri | ||
) |
Definition at line 40 of file functions.c.