/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
vfprintf.c | 90 static int __find_arguments(const char *fmt0, va_list ap, union arg **argtable, 257 vfprintf(FILE *fp, const char *fmt0, __va_list ap) 262 ret = __vfprintf(fp, fmt0, ap); 269 __vfprintf(FILE *fp, const char *fmt0, __va_list ap) 436 if (__find_arguments(fmt0, orgap, &argtable, \ 469 return (__sbprintf(fp, fmt0, ap)); 471 fmt = (char *)fmt0; 570 if (__find_arguments(fmt0, orgap, 599 if (__find_arguments(fmt0, orgap, 1139 __find_arguments(const char *fmt0, va_list ap, union arg **argtable [all...] |
vfwprintf.c | 87 static int __find_arguments(const wchar_t *fmt0, va_list ap, union arg **argtable, 279 __vfwprintf(FILE * __restrict fp, const wchar_t * __restrict fmt0, __va_list ap) 428 __find_arguments(fmt0, orgap, &argtable, &argtablesiz); \ 457 return (__sbprintf(fp, fmt0, ap)); 459 fmt = (wchar_t *)fmt0; 542 __find_arguments(fmt0, orgap, 568 __find_arguments(fmt0, orgap, 1054 vfwprintf(FILE * __restrict fp, const wchar_t * __restrict fmt0, __va_list ap) 1059 r = __vfwprintf(fp, fmt0, ap); 1108 __find_arguments(const wchar_t *fmt0, va_list ap, union arg **argtable [all...] |
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
vfwprintf.c | 551 WDECL(vf,printf)(FILE * __restrict fp, const CHAR_T * __restrict fmt0, va_list ap)
560 ret = WDECL(__vf,printf_unlocked)(fp, fmt0, ap);
613 WDECL(__vf,printf_unlocked)(FILE *fp, const CHAR_T *fmt0, va_list ap)
803 if (__find_arguments(fmt0, orgap, &argtable) == -1) \
815 _DIAGASSERT(fmt0 != NULL);
841 return (__sbprintf(fp, fmt0, ap));
843 fmt = (CHAR_T *)__UNCONST(fmt0);
955 if (__find_arguments(fmt0, orgap,
[all...] |
vfscanf.c | 140 __svfscanf(FILE *fp, char const *fmt0, va_list ap)
149 ret = __svfscanf_unlocked(fp, fmt0, ap);
158 __svfscanf_unlocked(FILE *fp, const char *fmt0, va_list ap)
160 const u_char *fmt = (const u_char *)fmt0;
183 _DIAGASSERT(fmt0 != NULL);
191 //Print(L"%a( %d, \"%a\", ...)\n", __func__, fp->_file, fmt0);
|
vsnprintf_ss.c | 120 vsnprintf_ss(char *sbuf, size_t slen, const char *fmt0, va_list ap)
153 fmt = fmt0;
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
RbnfTest.java | 113 RuleBasedNumberFormat fmt0 = new RuleBasedNumberFormat(RuleBasedNumberFormat.SPELLOUT); local 114 RuleBasedNumberFormat fmt1 = (RuleBasedNumberFormat)fmt0.clone(); 116 if (!fmt0.equals(fmt0)) { 119 if (!fmt0.equals(fmt1)) { 122 if (!fmt0.equals(fmt2)) { 125 String str = fmt0.toString(); 130 if (fmt0.equals(fmt3)) { [all...] |
DateFormatRegressionTest.java | 1495 SimpleDateFormat fmt0 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS"); local [all...] |
DateFormatTest.java | 4779 DateFormat fmt0 = DateFormat.getDateTimeInstance(dateStylesList[i], DateFormat.DEFAULT); local [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
RbnfTest.java | 112 RuleBasedNumberFormat fmt0 = new RuleBasedNumberFormat(RuleBasedNumberFormat.SPELLOUT); local 113 RuleBasedNumberFormat fmt1 = (RuleBasedNumberFormat)fmt0.clone(); 115 if (!fmt0.equals(fmt0)) { 118 if (!fmt0.equals(fmt1)) { 121 if (!fmt0.equals(fmt2)) { 124 String str = fmt0.toString(); 129 if (fmt0.equals(fmt3)) { [all...] |
DateFormatRegressionTest.java | 1494 SimpleDateFormat fmt0 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS"); local [all...] |
DateFormatTest.java | 4778 DateFormat fmt0 = DateFormat.getDateTimeInstance(dateStylesList[i], DateFormat.DEFAULT); local [all...] |
/bionic/libc/stdio/ |
vfscanf.c | 99 __svfscanf(FILE *fp, const char *fmt0, __va_list ap) 101 u_char *fmt = (u_char *)fmt0; 890 vfscanf(FILE *fp, const char *fmt0, __va_list ap) 895 r = __svfscanf(fp, fmt0, ap);
|
/external/icu/icu4c/source/test/intltest/ |
incaltst.cpp | 886 DateFormat *fmt0 = DateFormat::createDateTimeInstance(DateFormat::kFull, DateFormat::kFull); local [all...] |