• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/

Lines Matching +defs:content +defs:indent

88     int indent;                 /* enable indent */
89 int doindent; /* internal indent flag */
90 xmlChar *ichar; /* indent character */
258 ret->indent = 0;
632 * the content is flushed to the output.
702 if (!writer->indent) {
755 if (writer->indent) {
783 if (writer->indent) {
843 if (writer->indent) {
915 * @content: comment string
922 xmlTextWriterWriteComment(xmlTextWriterPtr writer, const xmlChar * content)
932 count = xmlTextWriterWriteString(writer, content);
991 if (writer->indent)
1021 if (writer->indent) {
1158 if (writer->indent) /* next element needs indent */
1166 if ((writer->indent) && (writer->doindent)) {
1190 if (writer->indent) {
1245 if (writer->indent)
1249 if ((writer->indent) && (writer->doindent)) {
1273 if (writer->indent) {
1340 * @content: text string
1349 xmlTextWriterWriteRawLen(xmlTextWriterPtr writer, const xmlChar * content,
1363 if ((content == NULL) || (len < 0)) {
1365 "xmlTextWriterWriteRawLen : invalid content!\n");
1379 if (writer->indent)
1382 if (content != NULL) {
1384 xmlOutputBufferWrite(writer->out, len, (const char *) content);
1396 * @content: text string
1403 xmlTextWriterWriteRaw(xmlTextWriterPtr writer, const xmlChar * content)
1405 return xmlTextWriterWriteRawLen(writer, content, xmlStrlen(content));
1469 * @content: text string
1476 xmlTextWriterWriteString(xmlTextWriterPtr writer, const xmlChar * content)
1484 if ((writer == NULL) || (content == NULL))
1488 buf = (xmlChar *) content;
1498 xmlOutputBufferWriteEscape(writer->out, content, NULL);
1500 buf = xmlEncodeSpecialChars(NULL, content);
1505 NULL, content);
1516 if (buf != content) /* buf was allocated by us, so free it */
1644 if (writer->indent)
1737 if (writer->indent)
2016 * @content: attribute content
2024 const xmlChar * content)
2034 count = xmlTextWriterWriteString(writer, content);
2121 * @content: attribute content
2131 const xmlChar * content)
2144 count = xmlTextWriterWriteString(writer, content);
2219 * @content: element content
2227 const xmlChar * content)
2237 count = xmlTextWriterWriteString(writer, content);
2324 * @content: element content
2334 const xmlChar * content)
2348 count = xmlTextWriterWriteString(writer, content);
2497 if (writer->indent) {
2570 * @content: PI content
2578 const xmlChar * content)
2588 if (content != 0) {
2589 count = xmlTextWriterWriteString(writer, content);
2782 * @content: CDATA content
2789 xmlTextWriterWriteCDATA(xmlTextWriterPtr writer, const xmlChar * content)
2799 if (content != 0) {
2800 count = xmlTextWriterWriteString(writer, content);
2880 if (writer->indent)
2912 if (writer->indent)
2924 if (writer->indent)
2992 if (writer->indent) {
3103 * @subset: string content of the DTD
3171 if (writer->indent) {
3206 if (writer->indent) {
3265 if (writer->indent) {
3339 * @content: content of the element
3347 const xmlChar * name, const xmlChar * content)
3352 if (content == NULL)
3361 count = xmlTextWriterWriteString(writer, content);
3408 if (writer->indent) {
3443 if (writer->indent) {
3502 if (writer->indent) {
3576 * @content: content of the ATTLIST
3584 const xmlChar * name, const xmlChar * content)
3589 if (content == NULL)
3598 count = xmlTextWriterWriteString(writer, content);
3645 if (writer->indent) {
3686 if (writer->indent) {
3758 if (writer->indent) {
3842 * @content: content of the entity
3855 const xmlChar * content)
3857 if ((content == NULL) && (pubid == NULL) && (sysid == NULL))
3864 content);
3875 * @content: content of the entity
3885 const xmlChar * content)
3890 if ((name == NULL) || (*name == '\0') || (content == NULL))
3899 count = xmlTextWriterWriteString(writer, content);
4132 if (writer->indent) {
4147 if (writer->indent) {
4565 * @indent: do indentation?
4567 * Set indentation output. indent = 0 do not indentation. indent > 0 do indentation.
4572 xmlTextWriterSetIndent(xmlTextWriterPtr writer, int indent)
4574 if ((writer == NULL) || (indent < 0))
4577 writer->indent = indent;
4612 * Write indent string.