Home
last modified time | relevance | path

Searched refs:ns_uri (Results 1 – 8 of 8) sorted by relevance

/external/libxslt/libxslt/
Dvariables.c1315 const xmlChar *ns_uri, const xmlChar *sel, in xsltRegisterGlobalVariable() argument
1341 if (ns_uri) in xsltRegisterGlobalVariable()
1342 elem->nameURI = xmlDictLookup(style->dict, ns_uri, -1); in xsltRegisterGlobalVariable()
1830 const xmlChar *ns_uri) { in xsltGlobalVariableLookup() argument
1840 xmlHashLookup2(ctxt->globalVars, name, ns_uri); in xsltGlobalVariableLookup()
1877 const xmlChar *ns_uri) { in xsltVariableLookup() argument
1883 elem = xsltStackLookup(ctxt, name, ns_uri); in xsltVariableLookup()
1885 return(xsltGlobalVariableLookup(ctxt, name, ns_uri)); in xsltVariableLookup()
2200 const xmlChar *ns_uri) { in xsltXPathVariableLookup() argument
2227 if ((cur->name == name) && (cur->nameURI == ns_uri)) { in xsltXPathVariableLookup()
[all …]
Dvariables.h81 const xmlChar *ns_uri);
85 const xmlChar *ns_uri);
Dfunctions.h35 const xmlChar *ns_uri);
Dfunctions.c69 const xmlChar *name, const xmlChar *ns_uri) { in xsltXPathFunctionLookup() argument
72 if ((ctxt == NULL) || (name == NULL) || (ns_uri == NULL)) in xsltXPathFunctionLookup()
77 "Lookup function {%s}%s\n", ns_uri, name); in xsltXPathFunctionLookup()
84 XML_CAST_FPTR(ret) = xmlHashLookup2(ctxt->funcHash, name, ns_uri); in xsltXPathFunctionLookup()
87 ret = xsltExtModuleFunctionLookup(name, ns_uri); in xsltXPathFunctionLookup()
/external/libxml2/include/libxml/
DxpathInternals.h425 const xmlChar *ns_uri);
439 const xmlChar *ns_uri,
448 const xmlChar *ns_uri,
456 const xmlChar *ns_uri);
465 const xmlChar *ns_uri);
Dxpath.h235 const xmlChar *ns_uri);
250 const xmlChar *ns_uri);
/external/libxml2/
Dc14n.c208 xmlC14NErrRelativeNamespace(const char *ns_uri) in xmlC14NErrRelativeNamespace() argument
213 "Relative namespace UR is invalid here : %s\n", ns_uri); in xmlC14NErrRelativeNamespace()
Dxpath.c4744 const xmlChar *ns_uri, xmlXPathFunction f) { in xmlXPathRegisterFuncNS() argument
4755 return(xmlHashRemoveEntry2(ctxt->funcHash, name, ns_uri, NULL)); in xmlXPathRegisterFuncNS()
4756 return(xmlHashAddEntry2(ctxt->funcHash, name, ns_uri, XML_CAST_FPTR(f))); in xmlXPathRegisterFuncNS()
4817 const xmlChar *ns_uri) { in xmlXPathFunctionLookupNS() argument
4829 ret = f(ctxt->funcLookupData, name, ns_uri); in xmlXPathFunctionLookupNS()
4837 XML_CAST_FPTR(ret) = xmlHashLookup2(ctxt->funcHash, name, ns_uri); in xmlXPathFunctionLookupNS()
4893 const xmlChar *ns_uri, in xmlXPathRegisterVariableNS() argument
4905 return(xmlHashRemoveEntry2(ctxt->varHash, name, ns_uri, in xmlXPathRegisterVariableNS()
4907 return(xmlHashUpdateEntry2(ctxt->varHash, name, ns_uri, in xmlXPathRegisterVariableNS()
4967 const xmlChar *ns_uri) { in xmlXPathVariableLookupNS() argument
[all …]