Home
last modified time | relevance | path

Searched refs:ncname (Results 1 – 3 of 3) sorted by relevance

/external/libxslt/libxslt/
Dattributes.c290 const xmlChar *ncname; in xsltParseStylesheetAttributeSet() local
306 ncname = xsltSplitQName(style->dict, value, &prefix); in xsltParseStylesheetAttributeSet()
320 attrItems = xmlHashLookup2(style->attributeSets, ncname, prefix); in xsltParseStylesheetAttributeSet()
356 "add attribute to list %s\n", ncname); in xsltParseStylesheetAttributeSet()
390 "add attribute to list %s\n", ncname); in xsltParseStylesheetAttributeSet()
428 "xsl:attribute-set : %s adds use %s\n", ncname, curval); in xsltParseStylesheetAttributeSet()
454 xmlHashUpdateEntry2(style->attributeSets, ncname, prefix, attrItems, NULL); in xsltParseStylesheetAttributeSet()
457 "updated attribute list %s\n", ncname); in xsltParseStylesheetAttributeSet()
1043 const xmlChar *ncname = NULL; in xsltApplyAttributeSet() local
1091 ncname = xsltSplitQName(ctxt->dict, curstr, &prefix); in xsltApplyAttributeSet()
[all …]
/external/libxml2/include/libxml/
Dtree.h638 xmlBuildQName (const xmlChar *ncname,
/external/libxml2/
Dtree.c214 xmlBuildQName(const xmlChar *ncname, const xmlChar *prefix, in xmlBuildQName() argument
219 if (ncname == NULL) return(NULL); in xmlBuildQName()
220 if (prefix == NULL) return((xmlChar *) ncname); in xmlBuildQName()
222 lenn = strlen((char *) ncname); in xmlBuildQName()
236 memcpy(&ret[lenp + 1], ncname, lenn); in xmlBuildQName()