Lines Matching defs:prefix

78     xmlChar *prefix;
1036 * @prefix: namespace prefix or NULL
1046 const xmlChar * prefix, const xmlChar * name,
1057 if (prefix != 0) {
1058 buf = xmlStrdup(prefix);
1080 if (prefix != 0) {
1082 buf = xmlStrcat(buf, prefix);
1085 p->prefix = buf;
1802 * @prefix: namespace prefix or NULL
1812 const xmlChar * prefix, const xmlChar * name,
1828 if (prefix != 0) {
1830 buf = xmlStrcat(buf, prefix);
1833 nsentry.prefix = buf;
1860 p->prefix = buf;
1875 if (prefix != 0) {
1876 buf = xmlStrdup(prefix);
2034 * @prefix: namespace prefix
2046 const xmlChar * prefix,
2056 rc = xmlTextWriterWriteVFormatAttributeNS(writer, prefix, name,
2066 * @prefix: namespace prefix
2078 const xmlChar * prefix,
2093 rc = xmlTextWriterWriteAttributeNS(writer, prefix, name, namespaceURI,
2103 * @prefix: namespace prefix
2114 const xmlChar * prefix, const xmlChar * name,
2125 count = xmlTextWriterStartAttributeNS(writer, prefix, name, namespaceURI);
2237 * @prefix: namespace prefix
2249 const xmlChar * prefix,
2259 rc = xmlTextWriterWriteVFormatElementNS(writer, prefix, name,
2269 * @prefix: namespace prefix
2281 const xmlChar * prefix,
2296 rc = xmlTextWriterWriteElementNS(writer, prefix, name, namespaceURI,
2306 * @prefix: namespace prefix
2317 const xmlChar * prefix, const xmlChar * name,
2329 xmlTextWriterStartElementNS(writer, prefix, name, namespaceURI);
4300 xmlChar *prefix = NULL;
4307 prefix = xmlStrdup(np->prefix);
4313 count = xmlTextWriterWriteAttribute(writer, prefix, namespaceURI);
4315 xmlFree(prefix);
4343 if (p->prefix != 0)
4344 xmlFree(p->prefix);
4379 rc = xmlStrcmp(p0->prefix, p1->prefix);