• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/

Lines Matching refs:content

902  * @content:  comment string
909 xmlTextWriterWriteComment(xmlTextWriterPtr writer, const xmlChar * content)
919 count = xmlTextWriterWriteString(writer, content);
1274 * @content: text string
1283 xmlTextWriterWriteRawLen(xmlTextWriterPtr writer, const xmlChar * content,
1297 if ((content == NULL) || (len < 0)) {
1299 "xmlTextWriterWriteRawLen : invalid content!\n");
1316 if (content != NULL) {
1318 xmlOutputBufferWrite(writer->out, len, (const char *) content);
1330 * @content: text string
1337 xmlTextWriterWriteRaw(xmlTextWriterPtr writer, const xmlChar * content)
1339 return xmlTextWriterWriteRawLen(writer, content, xmlStrlen(content));
1403 * @content: text string
1410 xmlTextWriterWriteString(xmlTextWriterPtr writer, const xmlChar * content)
1418 if ((writer == NULL) || (content == NULL))
1422 buf = (xmlChar *) content;
1432 xmlOutputBufferWriteEscape(writer->out, content, NULL);
1434 buf = xmlEncodeSpecialChars(NULL, content);
1439 NULL, content);
1453 if (buf != content) /* buf was allocated by us, so free it */
1965 * @content: attribute content
1973 const xmlChar * content)
1983 count = xmlTextWriterWriteString(writer, content);
2070 * @content: attribute content
2080 const xmlChar * content)
2097 count = xmlTextWriterWriteAttribute(writer, buf, content);
2182 * @content: element content
2190 const xmlChar * content)
2200 count = xmlTextWriterWriteString(writer, content);
2287 * @content: element content
2297 const xmlChar * content)
2311 count = xmlTextWriterWriteString(writer, content);
2528 * @content: PI content
2536 const xmlChar * content)
2546 if (content != 0) {
2547 count = xmlTextWriterWriteString(writer, content);
2734 * @content: CDATA content
2741 xmlTextWriterWriteCDATA(xmlTextWriterPtr writer, const xmlChar * content)
2751 if (content != 0) {
2752 count = xmlTextWriterWriteString(writer, content);
3055 * @subset: string content of the DTD
3291 * @content: content of the element
3299 const xmlChar * name, const xmlChar * content)
3304 if (content == NULL)
3313 count = xmlTextWriterWriteString(writer, content);
3528 * @content: content of the ATTLIST
3536 const xmlChar * name, const xmlChar * content)
3541 if (content == NULL)
3550 count = xmlTextWriterWriteString(writer, content);
3794 * @content: content of the entity
3807 const xmlChar * content)
3809 if ((content == NULL) && (pubid == NULL) && (sysid == NULL))
3816 content);
3827 * @content: content of the entity
3837 const xmlChar * content)
3842 if ((name == NULL) || (*name == '\0') || (content == NULL))
3851 count = xmlTextWriterWriteString(writer, content);