• 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 defs:format

85     int format;
410 ret->format = 1;
521 int format, level;
554 format = ctxt->format;
557 ctxt->format = 0;
561 ctxt->format = format;
625 if ((ctxt->format) && (xmlIndentTreeOutput) &&
632 if (ctxt->format) {
647 int format;
760 format = ctxt->format;
761 if (format == 1) {
767 ctxt->format = 0;
788 ctxt->format = format;
796 if (ctxt->format) xmlOutputBufferWrite(buf, 1, "\n");
800 if ((xmlIndentTreeOutput) && (ctxt->format))
814 ctxt->format = format;
1115 * @format: is formatting allowed
1119 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1129 if ((ctxt->format) && (xmlIndentTreeOutput) &&
1136 if (ctxt->format) {
1149 * @format: is formatting allowed
1156 int format, addmeta = 0;
1257 format = ctxt->format;
1258 if (format == 1) {
1263 format = 0;
1325 if (ctxt->format) {
1340 if (ctxt->format)
1360 if (ctxt->format) {
1403 int indent = ctxt->format;
1406 ctxt->format = 0;
1411 ctxt->format = indent;
1439 int indent = ctxt->format;
1442 ctxt->format = 0;
1445 ctxt->format = indent;
1453 int indent = ctxt->format;
1455 if (format) xmlOutputBufferWrite(buf, 1, "\n");
1457 ctxt->format = format;
1460 ctxt->format = indent;
1461 if ((xmlIndentTreeOutput) && (format))
1864 * @format: is formatting allowed
1867 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1874 int format)
1910 xmlNodeDumpOutput(outbuf, doc, cur, level, format, NULL);
1971 * @format: is formatting allowed
1975 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1980 int level, int format, const char *encoding)
1999 ctxt.format = format;
2024 * @format: should formatting spaces been added
2029 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2036 int format) {
2084 ctxt.format = format;
2127 * @format: should formatting spaces been added
2132 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2136 xmlDocDumpFormatMemory(xmlDocPtr cur, xmlChar**mem, int *size, int format) {
2137 xmlDocDumpFormatMemoryEnc(cur, mem, size, NULL, format);
2163 * @format: should formatting spaces been added
2168 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2172 xmlDocFormatDump(FILE *f, xmlDocPtr cur, int format) {
2201 ctxt.format = format;
2250 ctxt.format = 0;
2263 * @format: should formatting spaces been added
2273 const char *encoding, int format)
2289 ctxt.format = format;
2302 * @format: should formatting spaces be added.
2307 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2312 const char * encoding, int format ) {
2343 ctxt.format = format;
2373 * @format: should formatting spaces been added
2377 * used. If @format is set then the document will be indented on output.
2378 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2384 xmlSaveFormatFile(const char *filename, xmlDocPtr cur, int format) {
2385 return ( xmlSaveFormatFileEnc( filename, cur, NULL, format ) );