Lines Matching defs:prefix

78     xmlChar *prefix;
1014 * @prefix: namespace prefix or NULL
1024 const xmlChar * prefix, const xmlChar * name,
1035 if (prefix != 0) {
1036 buf = xmlStrdup(prefix);
1050 if (prefix != 0) {
1052 buf = xmlStrcat(buf, prefix);
1740 * @prefix: namespace prefix or NULL
1750 const xmlChar * prefix, const xmlChar * name,
1762 if (prefix != 0) {
1763 buf = xmlStrdup(prefix);
1777 if (prefix != 0) {
1779 buf = xmlStrcat(buf, prefix);
1790 p->prefix = buf;
1855 xmlChar *prefix = NULL;
1862 prefix = xmlStrdup(np->prefix);
1869 xmlTextWriterWriteAttribute(writer, prefix,
1872 xmlFree(prefix);
1988 * @prefix: namespace prefix
2000 const xmlChar * prefix,
2010 rc = xmlTextWriterWriteVFormatAttributeNS(writer, prefix, name,
2020 * @prefix: namespace prefix
2032 const xmlChar * prefix,
2047 rc = xmlTextWriterWriteAttributeNS(writer, prefix, name, namespaceURI,
2057 * @prefix: namespace prefix
2068 const xmlChar * prefix, const xmlChar * name,
2080 if (prefix != NULL) {
2081 buf = xmlStrdup(prefix);
2096 if (prefix != NULL) {
2098 buf = xmlStrcat(buf, prefix);
2205 * @prefix: namespace prefix
2217 const xmlChar * prefix,
2227 rc = xmlTextWriterWriteVFormatElementNS(writer, prefix, name,
2237 * @prefix: namespace prefix
2249 const xmlChar * prefix,
2264 rc = xmlTextWriterWriteElementNS(writer, prefix, name, namespaceURI,
2274 * @prefix: namespace prefix
2285 const xmlChar * prefix, const xmlChar * name,
2297 xmlTextWriterStartElementNS(writer, prefix, name, namespaceURI);
4256 if (p->prefix != 0)
4257 xmlFree(p->prefix);
4292 rc = xmlStrcmp(p0->prefix, p1->prefix);