• 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

108 static xmlChar *xmlTextWriterVSprintf(const char *format, va_list argptr);
844 * @format: format string (see printf)
845 * @...: extra parameters for the format
853 const char *format, ...)
858 va_start(ap, format);
860 rc = xmlTextWriterWriteVFormatComment(writer, format, ap);
869 * @format: format string (see printf)
878 const char *format, va_list argptr)
889 buf = xmlTextWriterVSprintf(format, argptr);
1219 * @format: format string (see printf)
1220 * @...: extra parameters for the format
1227 xmlTextWriterWriteFormatRaw(xmlTextWriterPtr writer, const char *format,
1233 va_start(ap, format);
1235 rc = xmlTextWriterWriteVFormatRaw(writer, format, ap);
1244 * @format: format string (see printf)
1252 xmlTextWriterWriteVFormatRaw(xmlTextWriterPtr writer, const char *format,
1261 buf = xmlTextWriterVSprintf(format, argptr);
1345 * @format: format string (see printf)
1346 * @...: extra parameters for the format
1353 xmlTextWriterWriteFormatString(xmlTextWriterPtr writer, const char *format,
1359 if ((writer == NULL) || (format == NULL))
1362 va_start(ap, format);
1364 rc = xmlTextWriterWriteVFormatString(writer, format, ap);
1373 * @format: format string (see printf)
1382 const char *format, va_list argptr)
1387 if ((writer == NULL) || (format == NULL))
1390 buf = xmlTextWriterVSprintf(format, argptr);
1906 * @format: format string (see printf)
1907 * @...: extra parameters for the format
1915 const xmlChar * name, const char *format,
1921 va_start(ap, format);
1923 rc = xmlTextWriterWriteVFormatAttribute(writer, name, format, ap);
1933 * @format: format string (see printf)
1943 const char *format, va_list argptr)
1951 buf = xmlTextWriterVSprintf(format, argptr);
2001 * @format: format string (see printf)
2002 * @...: extra parameters for the format
2013 const char *format, ...)
2018 va_start(ap, format);
2021 namespaceURI, format, ap);
2033 * @format: format string (see printf)
2045 const char *format, va_list argptr)
2053 buf = xmlTextWriterVSprintf(format, argptr);
2123 * @format: format string (see printf)
2124 * @...: extra parameters for the format
2132 const xmlChar * name, const char *format,
2138 va_start(ap, format);
2140 rc = xmlTextWriterWriteVFormatElement(writer, name, format, ap);
2150 * @format: format string (see printf)
2159 const xmlChar * name, const char *format,
2168 buf = xmlTextWriterVSprintf(format, argptr);
2218 * @format: format string (see printf)
2219 * @...: extra parameters for the format
2230 const char *format, ...)
2235 va_start(ap, format);
2238 namespaceURI, format, ap);
2250 * @format: format string (see printf)
2262 const char *format, va_list argptr)
2270 buf = xmlTextWriterVSprintf(format, argptr);
2470 * @format: format string (see printf)
2471 * @...: extra parameters for the format
2479 const char *format, ...)
2484 va_start(ap, format);
2486 rc = xmlTextWriterWriteVFormatPI(writer, target, format, ap);
2496 * @format: format string (see printf)
2505 const xmlChar * target, const char *format,
2514 buf = xmlTextWriterVSprintf(format, argptr);
2679 * @format: format string (see printf)
2680 * @...: extra parameters for the format
2687 xmlTextWriterWriteFormatCDATA(xmlTextWriterPtr writer, const char *format,
2693 va_start(ap, format);
2695 rc = xmlTextWriterWriteVFormatCDATA(writer, format, ap);
2704 * @format: format string (see printf)
2712 xmlTextWriterWriteVFormatCDATA(xmlTextWriterPtr writer, const char *format,
2721 buf = xmlTextWriterVSprintf(format, argptr);
2988 * @format: format string (see printf)
2989 * @...: extra parameters for the format
2999 const xmlChar * sysid, const char *format, ...)
3004 va_start(ap, format);
3006 rc = xmlTextWriterWriteVFormatDTD(writer, name, pubid, sysid, format,
3019 * @format: format string (see printf)
3031 const char *format, va_list argptr)
3039 buf = xmlTextWriterVSprintf(format, argptr);
3232 * @format: format string (see printf)
3233 * @...: extra parameters for the format
3242 const char *format, ...)
3247 va_start(ap, format);
3249 rc = xmlTextWriterWriteVFormatDTDElement(writer, name, format, ap);
3259 * @format: format string (see printf)
3269 const char *format, va_list argptr)
3277 buf = xmlTextWriterVSprintf(format, argptr);
3469 * @format: format string (see printf)
3470 * @...: extra parameters for the format
3479 const char *format, ...)
3484 va_start(ap, format);
3486 rc = xmlTextWriterWriteVFormatDTDAttlist(writer, name, format, ap);
3496 * @format: format string (see printf)
3506 const char *format, va_list argptr)
3514 buf = xmlTextWriterVSprintf(format, argptr);
3726 * @format: format string (see printf)
3727 * @...: extra parameters for the format
3737 const char *format, ...)
3742 va_start(ap, format);
3745 format, ap);
3756 * @format: format string (see printf)
3767 const char *format,
3776 buf = xmlTextWriterVSprintf(format, argptr);
4362 * @format: see printf
4370 xmlTextWriterVSprintf(const char *format, va_list argptr)
4386 while (((count = vsnprintf((char *) buf, size, format, locarg)) < 0)