Lines Matching refs:Format
33 const wchar_t * __restrict format, ...);
35 const wchar_t * __restrict format, ...);
37 const wchar_t * __restrict format, ...);
39 const wchar_t * __restrict format, ...);
41 const wchar_t * __restrict format, va_list arg);
43 const wchar_t * __restrict format, va_list arg);
45 const wchar_t * __restrict format, va_list arg);
47 const wchar_t * __restrict format, va_list arg);
48 int vwprintf (const wchar_t * __restrict format, va_list arg);
49 int vwscanf (const wchar_t * __restrict format, va_list arg);
50 int wprintf (const wchar_t * __restrict format, ...);
51 int wscanf (const wchar_t * __restrict format, ...);
124 const wchar_t * __restrict format,
245 under control of the wide string pointed to by format that specifies how
247 arguments for the format, the behavior is undefined. If the format is
250 when the end of the format string is encountered.
252 The format is composed of zero or more directives: ordinary wide characters
449 @param[in] format A wide character sequence containing characters
452 @param ... Variable number of parameters as required by format.
458 int fwprintf(FILE * __restrict stream, const wchar_t * __restrict format, ...);
461 under control of the wide string pointed to by format that specifies
465 the format, the behavior is undefined. If the format is exhausted while
469 The format is composed of zero or more directives: one or more white-space
481 The fwscanf function executes each directive of the format in turn. If a
518 pointed to by the first argument following the format argument that has
555 d Matches an optionally signed decimal integer, whose format is the
559 i Matches an optionally signed integer, whose format is the same as
563 format is the
567 u Matches an optionally signed decimal integer, whose format is the
571 x Matches an optionally signed hexadecimal integer, whose format is
576 NaN, whose format is the same as expected for the subject sequence
619 in the format string, up to and including the matching right
657 @param[in] format A wide character sequence containing characters
661 @param ... Variable number of parameters, as required by format,
670 int fwscanf(FILE * __restrict stream, const wchar_t * __restrict format, ...);
682 @param[in] format A wide character sequence containing characters
687 @param ... Variable number of parameters as required by format.
694 int swprintf(wchar_t * __restrict s, size_t n, const wchar_t * __restrict format, ...);
704 @param[in] Format A wide character sequence containing characters
707 @param[out] ... Variable number of parameters, as required by format,
716 int swscanf(const wchar_t * __restrict Buff, const wchar_t * __restrict Format, ...);
726 @param[in] Format A wide character sequence containing characters
731 the directives in the Format string.
737 int vfwprintf(FILE * __restrict Stream, const wchar_t * __restrict Format, va_list Args);
747 @param[in] Format A wide character sequence containing characters
752 the directives in the Format string.
760 int vfwscanf(FILE * __restrict Stream, const wchar_t * __restrict Format, va_list Args);
771 @param[in] Format A wide character sequence containing characters
776 the directives in the Format string.
783 int vswprintf(wchar_t * __restrict S, size_t N, const wchar_t * __restrict Format, va_list Args);
792 @param[in] Format A wide character sequence containing characters
797 the directives in the Format string.
805 int vswscanf(const wchar_t * __restrict S, const wchar_t * __restrict Format, va_list Args);
813 @param[in] Format A wide character sequence containing characters
818 the directives in the Format string.
824 int vwprintf(const wchar_t * __restrict Format, va_list Args);
832 @param[in] Format
837 the directives in the Format string.
845 int vwscanf(const wchar_t * __restrict Format, va_list Args);
852 @param[in] format A wide character sequence containing characters
855 @param ... Variable number of parameters as required by format.
861 int wprintf(const wchar_t * __restrict Format, ...);
868 @param[in] format A wide character sequence containing characters
872 @param ... Variable number of parameters, as required by format,
881 int wscanf(const wchar_t * __restrict format, ...);
1365 - The argument format is a wide string and the conversion specifiers are replaced by
1375 size_t wcsftime(wchar_t * __restrict S, size_t maxsize, const wchar_t * __restrict format, const struct tm * __restrict timeptr);