Lines Matching refs:format
108 static xmlChar *xmlTextWriterVSprintf(const char *format, va_list argptr);
857 * @format: format string (see printf)
858 * @...: extra parameters for the format
866 const char *format, ...)
871 va_start(ap, format);
873 rc = xmlTextWriterWriteVFormatComment(writer, format, ap);
882 * @format: format string (see printf)
891 const char *format, va_list argptr)
902 buf = xmlTextWriterVSprintf(format, argptr);
1285 * @format: format string (see printf)
1286 * @...: extra parameters for the format
1293 xmlTextWriterWriteFormatRaw(xmlTextWriterPtr writer, const char *format,
1299 va_start(ap, format);
1301 rc = xmlTextWriterWriteVFormatRaw(writer, format, ap);
1310 * @format: format string (see printf)
1318 xmlTextWriterWriteVFormatRaw(xmlTextWriterPtr writer, const char *format,
1327 buf = xmlTextWriterVSprintf(format, argptr);
1411 * @format: format string (see printf)
1412 * @...: extra parameters for the format
1419 xmlTextWriterWriteFormatString(xmlTextWriterPtr writer, const char *format,
1425 if ((writer == NULL) || (format == NULL))
1428 va_start(ap, format);
1430 rc = xmlTextWriterWriteVFormatString(writer, format, ap);
1439 * @format: format string (see printf)
1448 const char *format, va_list argptr)
1453 if ((writer == NULL) || (format == NULL))
1456 buf = xmlTextWriterVSprintf(format, argptr);
1957 * @format: format string (see printf)
1958 * @...: extra parameters for the format
1966 const xmlChar * name, const char *format,
1972 va_start(ap, format);
1974 rc = xmlTextWriterWriteVFormatAttribute(writer, name, format, ap);
1984 * @format: format string (see printf)
1994 const char *format, va_list argptr)
2002 buf = xmlTextWriterVSprintf(format, argptr);
2052 * @format: format string (see printf)
2053 * @...: extra parameters for the format
2064 const char *format, ...)
2069 va_start(ap, format);
2072 namespaceURI, format, ap);
2084 * @format: format string (see printf)
2096 const char *format, va_list argptr)
2104 buf = xmlTextWriterVSprintf(format, argptr);
2160 * @format: format string (see printf)
2161 * @...: extra parameters for the format
2169 const xmlChar * name, const char *format,
2175 va_start(ap, format);
2177 rc = xmlTextWriterWriteVFormatElement(writer, name, format, ap);
2187 * @format: format string (see printf)
2196 const xmlChar * name, const char *format,
2205 buf = xmlTextWriterVSprintf(format, argptr);
2255 * @format: format string (see printf)
2256 * @...: extra parameters for the format
2267 const char *format, ...)
2272 va_start(ap, format);
2275 namespaceURI, format, ap);
2287 * @format: format string (see printf)
2299 const char *format, va_list argptr)
2307 buf = xmlTextWriterVSprintf(format, argptr);
2512 * @format: format string (see printf)
2513 * @...: extra parameters for the format
2521 const char *format, ...)
2526 va_start(ap, format);
2528 rc = xmlTextWriterWriteVFormatPI(writer, target, format, ap);
2538 * @format: format string (see printf)
2547 const xmlChar * target, const char *format,
2556 buf = xmlTextWriterVSprintf(format, argptr);
2727 * @format: format string (see printf)
2728 * @...: extra parameters for the format
2735 xmlTextWriterWriteFormatCDATA(xmlTextWriterPtr writer, const char *format,
2741 va_start(ap, format);
2743 rc = xmlTextWriterWriteVFormatCDATA(writer, format, ap);
2752 * @format: format string (see printf)
2760 xmlTextWriterWriteVFormatCDATA(xmlTextWriterPtr writer, const char *format,
2769 buf = xmlTextWriterVSprintf(format, argptr);
3036 * @format: format string (see printf)
3037 * @...: extra parameters for the format
3047 const xmlChar * sysid, const char *format, ...)
3052 va_start(ap, format);
3054 rc = xmlTextWriterWriteVFormatDTD(writer, name, pubid, sysid, format,
3067 * @format: format string (see printf)
3079 const char *format, va_list argptr)
3087 buf = xmlTextWriterVSprintf(format, argptr);
3280 * @format: format string (see printf)
3281 * @...: extra parameters for the format
3290 const char *format, ...)
3295 va_start(ap, format);
3297 rc = xmlTextWriterWriteVFormatDTDElement(writer, name, format, ap);
3307 * @format: format string (see printf)
3317 const char *format, va_list argptr)
3325 buf = xmlTextWriterVSprintf(format, argptr);
3517 * @format: format string (see printf)
3518 * @...: extra parameters for the format
3527 const char *format, ...)
3532 va_start(ap, format);
3534 rc = xmlTextWriterWriteVFormatDTDAttlist(writer, name, format, ap);
3544 * @format: format string (see printf)
3554 const char *format, va_list argptr)
3562 buf = xmlTextWriterVSprintf(format, argptr);
3774 * @format: format string (see printf)
3775 * @...: extra parameters for the format
3785 const char *format, ...)
3790 va_start(ap, format);
3793 format, ap);
3804 * @format: format string (see printf)
3815 const char *format,
3824 buf = xmlTextWriterVSprintf(format, argptr);
4455 * @format: see printf
4463 xmlTextWriterVSprintf(const char *format, va_list argptr)
4479 while (((count = vsnprintf((char *) buf, size, format, locarg)) < 0)