Home | History | Annotate | Download | only in libxml2

Lines Matching refs:ncname

210  * @ncname:  the Name
215 * Builds the QName @prefix:@ncname in @memory if there is enough space
217 * If prefix is NULL or empty it returns ncname.
220 * @memory and @ncname or NULL in case of error
223 xmlBuildQName(const xmlChar *ncname, const xmlChar *prefix,
228 if (ncname == NULL) return(NULL);
229 if (prefix == NULL) return((xmlChar *) ncname);
231 lenn = strlen((char *) ncname);
245 memcpy(&ret[lenp + 1], ncname, lenn);
259 * [NS 6] Prefix ::= NCName
261 * [NS 7] LocalPart ::= NCName
355 * Check Name, NCName and QName strings *
367 * Check that a value conforms to the lexical space of NCName