Searched defs:ncname (Results 1 - 2 of 2) sorted by relevance

/external/libxslt/libxslt/
H A Dattributes.c290 const xmlChar *ncname; local
306 ncname = xsltSplitQName(style->dict, value, &prefix);
320 attrItems = xmlHashLookup2(style->attributeSets, ncname, prefix);
356 "add attribute to list %s\n", ncname);
390 "add attribute to list %s\n", ncname);
428 "xsl:attribute-set : %s adds use %s\n", ncname, curval);
454 xmlHashUpdateEntry2(style->attributeSets, ncname, prefix, attrItems, NULL);
457 "updated attribute list %s\n", ncname);
1043 const xmlChar *ncname = NULL; local
1091 ncname
[all...]
/external/libxml2/
H A Dtree.c201 * @ncname: the Name
206 * Builds the QName @prefix:@ncname in @memory if there is enough space
208 * If prefix is NULL or empty it returns ncname.
211 * @memory and @ncname or NULL in case of error
214 xmlBuildQName(const xmlChar *ncname, const xmlChar *prefix, argument
219 if (ncname == NULL) return(NULL);
220 if (prefix == NULL) return((xmlChar *) ncname);
222 lenn = strlen((char *) ncname);
236 memcpy(&ret[lenp + 1], ncname, lenn);

Completed in 75 milliseconds