• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching defs:format

85     int format;
410 ret->format = 1;
555 int format, level;
588 format = ctxt->format;
591 ctxt->format = 0;
595 ctxt->format = format;
659 if ((ctxt->format) && (xmlIndentTreeOutput) &&
668 if (ctxt->format) {
743 int format;
869 format = ctxt->format;
870 if (format == 1) {
876 ctxt->format = 0;
897 ctxt->format = format;
905 if (ctxt->format) xmlOutputBufferWrite(buf, 1, "\n");
909 if ((xmlIndentTreeOutput) && (ctxt->format))
923 ctxt->format = format;
1244 * @format: is formatting allowed
1248 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1258 if ((ctxt->format) && (xmlIndentTreeOutput) &&
1265 if (ctxt->format) {
1278 * @format: is formatting allowed
1285 int format, addmeta = 0;
1394 format = ctxt->format;
1395 if (format == 1) {
1400 format = 0;
1462 if (ctxt->format) {
1477 if (ctxt->format)
1497 if (ctxt->format) {
1540 int indent = ctxt->format;
1543 ctxt->format = 0;
1548 ctxt->format = indent;
1576 int indent = ctxt->format;
1579 ctxt->format = 0;
1582 ctxt->format = indent;
1590 int indent = ctxt->format;
1592 if (format) xmlOutputBufferWrite(buf, 1, "\n");
1594 ctxt->format = format;
1597 ctxt->format = indent;
1598 if ((xmlIndentTreeOutput) && (format))
2001 * @format: is formatting allowed
2004 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2011 int format)
2047 xmlNodeDumpOutput(outbuf, doc, cur, level, format, NULL);
2108 * @format: is formatting allowed
2112 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2117 int level, int format, const char *encoding)
2136 ctxt.format = format;
2162 * @format: should formatting spaces been added
2167 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2174 int format) {
2222 ctxt.format = format;
2266 * @format: should formatting spaces been added
2271 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2275 xmlDocDumpFormatMemory(xmlDocPtr cur, xmlChar**mem, int *size, int format) {
2276 xmlDocDumpFormatMemoryEnc(cur, mem, size, NULL, format);
2302 * @format: should formatting spaces been added
2307 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2311 xmlDocFormatDump(FILE *f, xmlDocPtr cur, int format) {
2341 ctxt.format = format;
2391 ctxt.format = 0;
2405 * @format: should formatting spaces been added
2415 const char *encoding, int format)
2431 ctxt.format = format;
2445 * @format: should formatting spaces be added.
2450 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2455 const char * encoding, int format ) {
2486 ctxt.format = format;
2517 * @format: should formatting spaces been added
2521 * used. If @format is set then the document will be indented on output.
2522 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2528 xmlSaveFormatFile(const char *filename, xmlDocPtr cur, int format) {
2529 return ( xmlSaveFormatFileEnc( filename, cur, NULL, format ) );