Home
last modified time | relevance | path

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

/external/libxslt/libxslt/
Dkeys.c37 const xmlChar *nameURI);
55 xsltNewKeyDef(const xmlChar *name, const xmlChar *nameURI) { in xsltNewKeyDef() argument
67 if (nameURI != NULL) in xsltNewKeyDef()
68 cur->nameURI = xmlStrdup(nameURI); in xsltNewKeyDef()
89 if (keyd->nameURI != NULL) in xsltFreeKeyDef()
90 xmlFree(keyd->nameURI); in xsltFreeKeyDef()
128 xsltNewKeyTable(const xmlChar *name, const xmlChar *nameURI) { in xsltNewKeyTable() argument
140 if (nameURI != NULL) in xsltNewKeyTable()
141 cur->nameURI = xmlStrdup(nameURI); in xsltNewKeyTable()
158 if (keyt->nameURI != NULL) in xsltFreeKeyTable()
[all …]
Dimports.c395 const xmlChar *nameURI) { in xsltFindTemplate() argument
406 if (((nameURI == NULL) && (cur->nameURI == NULL)) || in xsltFindTemplate()
407 ((nameURI != NULL) && (cur->nameURI != NULL) && in xsltFindTemplate()
408 (xmlStrEqual(nameURI, cur->nameURI)))) { in xsltFindTemplate()
Dvariables.c522 cur->nameURI = elem->nameURI; in xsltCopyStackElem()
628 const xmlChar *nameURI) { in xsltStackLookup() argument
644 if ((cur->name == name) && (cur->nameURI == nameURI)) { in xsltStackLookup()
659 if (nameURI != NULL) in xsltStackLookup()
660 nameURI = xmlDictLookup(ctxt->dict, nameURI, -1); in xsltStackLookup()
665 if ((cur->name == name) && (cur->nameURI == nameURI)) { in xsltStackLookup()
694 const xmlChar *nameURI) { in xsltCheckStackElem() argument
700 cur = xsltStackLookup(ctxt, name, nameURI); in xsltCheckStackElem()
1262 elem->name, elem->nameURI); in xsltEvalGlobalVariables()
1267 elem->name, elem->nameURI, def); in xsltEvalGlobalVariables()
[all …]
Dkeys.h31 const xmlChar *nameURI,
38 const xmlChar *nameURI,
Dimports.h68 const xmlChar *nameURI);
DxsltInternals.h280 const xmlChar *nameURI; /* the URI part of the name QName */ member
352 xmlChar *nameURI; member
372 xmlChar *nameURI; member
1430 const xmlChar *nameURI; /* the URI part of the name QName */ member
Dxslt.c5049 xmlChar *nameURI = NULL; in xsltParseStylesheetKey() local
5071 nameURI = xmlStrdup(URI); in xsltParseStylesheetKey()
5103 xsltAddKey(style, name, nameURI, match, use, key); in xsltParseStylesheetKey()
5113 if (nameURI != NULL) in xsltParseStylesheetKey()
5114 xmlFree(nameURI); in xsltParseStylesheetKey()
5218 const xmlChar *nameURI; in xsltParseXSLTTemplate() local
5224 nameURI = xsltGetQNameURI(templNode, &prop); in xsltParseXSLTTemplate()
5239 if (nameURI != NULL) in xsltParseXSLTTemplate()
5240 templ->nameURI = xmlDictLookup(cctxt->style->dict, nameURI, -1); in xsltParseXSLTTemplate()
5243 if ((nameURI != NULL && xmlStrEqual(curTempl->name, templ->name) && in xsltParseXSLTTemplate()
[all …]
Dtransform.c3018 (tmpParam->nameURI == (iparam->ns))) in xsltApplyXSLTTemplate()