Searched refs:ncname (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dtree.h615 xmlBuildQName (const xmlChar *ncname,
/vbox/src/libs/libxml2-2.6.31/
H A Dtree.c197 * @ncname: the Name
202 * Builds the QName @prefix:@ncname in @memory if there is enough space
204 * If prefix is NULL or empty it returns ncname.
207 * @memory and @ncname or NULL in case of error
210 xmlBuildQName(const xmlChar *ncname, const xmlChar *prefix, argument
215 if (ncname == NULL) return(NULL);
216 if (prefix == NULL) return((xmlChar *) ncname);
218 lenn = strlen((char *) ncname);
232 memcpy(&ret[lenp + 1], ncname, lenn);
H A Dtestapi.c18927 xmlChar * ncname; /* the Name */ local
18941 ncname = gen_const_xmlChar_ptr(n_ncname, 0);
18946 ret_val = xmlBuildQName((const xmlChar *)ncname, (const xmlChar *)prefix, memory, len);
18947 if ((ret_val != NULL) && (ret_val != ncname) &&
18953 des_const_xmlChar_ptr(n_ncname, (const xmlChar *)ncname, 0);
[all...]
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml2-py.c11421 xmlChar * ncname; local
11426 if (!PyArg_ParseTuple(args, (char *)"zzzi:xmlBuildQName", &ncname, &prefix, &memory, &len))
11429 c_retval = xmlBuildQName(ncname, prefix, memory, len);

Completed in 253 milliseconds