Searched refs:fmt (Results 226 - 250 of 1087) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
H A Dyasm-options.h67 void (*print_error) (const char *fmt, ...));
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-methods.cpp9 void vararg_method(const char *fmt, ...) {} argument
/external/iputils/ninfod/
H A Dninfod.h88 # define DEBUG(pri, fmt, args...) do { \
92 syslog(pri, fmt, ## args); \
94 stderrlog(pri, fmt, ## args); \
100 # define DEBUG(pri, fmt, args...) do { ; } while(0)
/external/libnl/src/lib/
H A Dutils.c47 void nl_cli_fatal(int err, const char *fmt, ...) argument
53 if (fmt) {
54 va_start(ap, fmt);
55 vfprintf(stderr, fmt, ap);
/external/qemu/android/
H A Dmultitouch-port.h93 * fmt - Framebuffer update descriptor.
105 MTFrameHeader* fmt,
H A Dcore-init-utils.c72 android_core_init_failure(const char* fmt, ...) argument
80 va_start(args, fmt);
81 vbufprint(msg + strlen(msg), msg + sizeof(msg), fmt, args);
/external/qemu/include/qemu/
H A Dlog.h55 void GCC_FMT_ATTR(1, 2) qemu_log(const char *fmt, ...);
60 qemu_log_vprintf(const char *fmt, va_list va) argument
63 vfprintf(qemu_logfile, fmt, va);
69 void GCC_FMT_ATTR(2, 3) qemu_log_mask(int mask, const char *fmt, ...);
/external/wpa_supplicant_8/hs20/server/
H A Dspp_server.h22 void debug_print(struct hs20_svc *ctx, int print, const char *fmt, ...)
/external/chromium_org/base/strings/
H A Dsafe_sprintf_unittest.cc126 const char fmt[] = "hello%cworld"; local
132 EXPECT_EQ(-1, SafeSNPrintf(buf, -1, fmt, ' '));
136 EXPECT_EQ(-1, SafeSNPrintf(buf, 0, fmt, ' '));
141 SafeSNPrintf(buf, 1, fmt, ' '));
149 SafeSNPrintf(buf, 2, fmt, ' '));
158 SafeSNPrintf(buf, sizeof(buf), fmt, ' '));
165 EXPECT_EQ(static_cast<ssize_t>(sizeof(text))-1, SafeSPrintf(buf, fmt, ' '));
511 char buf[40], fmt[40]; local
522 SafeSPrintf(fmt, "%%%dc", std::numeric_limits<ssize_t>::max() - 1);
523 EXPECT_EQ(std::numeric_limits<ssize_t>::max()-1, SafeSPrintf(buf, fmt, '
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_screen.h104 const char * fmt, ...)
108 va_start(va, fmt);
109 vfprintf(stderr, fmt, va);
103 SCREEN_DBG(struct r300_screen * screen, unsigned flags, const char * fmt, ...) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Devergreen_compute.h54 static inline void COMPUTE_DBG(const char *fmt, ...) argument
64 va_start(ap, fmt);
65 _debug_vprintf(fmt, ap);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/
H A Dxvmc_private.h109 static INLINE void XVMC_MSG(unsigned int level, const char *fmt, ...) argument
119 va_start(ap, fmt);
120 _debug_vprintf(fmt, ap);
/external/e2fsprogs/lib/ss/
H A Derror.c59 void ss_error (int sci_idx, long code, const char * fmt, ...) argument
64 va_start (pvar, fmt);
66 com_err_va (whoami, code, fmt, pvar);
/external/elfutils/0.153/host-darwin-fixup/
H A DAndroidFixup.h59 static inline void __attribute__((noreturn)) error(int status, int errnum, const char *fmt, ...) argument
62 va_start(lst, fmt);
63 vfprintf(stderr, fmt, lst);
/external/fsck_msdos/
H A Dmain.c132 ask(int def, const char *fmt, ...) argument
147 va_start(ap, fmt);
148 vsnprintf(prompt, sizeof(prompt), fmt, ap);
/external/icu/icu4c/source/samples/datefmt/answers/
H A Dmain_2.cpp39 DateFormat *fmt; local
73 fmt = DateFormat::createDateInstance(DateFormat::kFull, loc);
77 fmt->format(date, str, status);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcache.h67 extern char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
68 extern char *perf_path(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
70 extern char *perf_pathdup(const char *fmt, ...)
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_screen.h104 const char * fmt, ...)
108 va_start(va, fmt);
109 vfprintf(stderr, fmt, va);
103 SCREEN_DBG(struct r300_screen * screen, unsigned flags, const char * fmt, ...) argument
/external/mesa3d/src/gallium/drivers/r600/
H A Devergreen_compute.h54 static inline void COMPUTE_DBG(const char *fmt, ...) argument
64 va_start(ap, fmt);
65 _debug_vprintf(fmt, ap);
/external/mesa3d/src/gallium/state_trackers/xvmc/
H A Dxvmc_private.h109 static INLINE void XVMC_MSG(unsigned int level, const char *fmt, ...) argument
119 va_start(ap, fmt);
120 _debug_vprintf(fmt, ap);
/external/qemu/android/utils/
H A Dstralloc.h48 extern void stralloc_format( stralloc_t* s, const char* fmt, ... );
49 extern void stralloc_formatv( stralloc_t* s, const char* fmt, va_list args );
50 extern void stralloc_add_format( stralloc_t* s, const char* fmt, ... );
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dralloc.c375 ralloc_asprintf(const void *ctx, const char *fmt, ...) argument
379 va_start(args, fmt);
380 ptr = ralloc_vasprintf(ctx, fmt, args);
389 printf_length(const char *fmt, va_list untouched_args) argument
402 size = _vscprintf(fmt, args);
405 size = vsnprintf(&junk, 1, fmt, args);
415 ralloc_vasprintf(const void *ctx, const char *fmt, va_list args) argument
417 size_t size = printf_length(fmt, args) + 1;
421 vsnprintf(ptr, size, fmt, args);
427 ralloc_asprintf_append(char **str, const char *fmt, argument
438 ralloc_vasprintf_append(char **str, const char *fmt, va_list args) argument
447 ralloc_asprintf_rewrite_tail(char **str, size_t *start, const char *fmt, ...) argument
458 ralloc_vasprintf_rewrite_tail(char **str, size_t *start, const char *fmt, va_list args) argument
[all...]
/external/mesa3d/src/glsl/
H A Dralloc.c375 ralloc_asprintf(const void *ctx, const char *fmt, ...) argument
379 va_start(args, fmt);
380 ptr = ralloc_vasprintf(ctx, fmt, args);
389 printf_length(const char *fmt, va_list untouched_args) argument
402 size = _vscprintf(fmt, args);
405 size = vsnprintf(&junk, 1, fmt, args);
415 ralloc_vasprintf(const void *ctx, const char *fmt, va_list args) argument
417 size_t size = printf_length(fmt, args) + 1;
421 vsnprintf(ptr, size, fmt, args);
427 ralloc_asprintf_append(char **str, const char *fmt, argument
438 ralloc_vasprintf_append(char **str, const char *fmt, va_list args) argument
447 ralloc_asprintf_rewrite_tail(char **str, size_t *start, const char *fmt, ...) argument
458 ralloc_vasprintf_rewrite_tail(char **str, size_t *start, const char *fmt, va_list args) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dmsfmrgts.cpp156 MessageFormat *fmt = new MessageFormat("{0,choice,0#no files|1#one file|1< {0,number,integer} files}", status); local
160 pat = fmt->toPattern(pat);
168 delete fmt;
205 NumberFormat *fmt = 0; local
216 fmt = NumberFormat::createInstance(status);
218 case Formattable::kLong: fmt->format(obj.getLong(), temp); break;
219 case Formattable::kInt64: fmt->format(obj.getInt64(), temp); break;
220 case Formattable::kDouble: fmt->format(obj.getDouble(), temp); break;
231 fmt = NumberFormat::createInstance(status);
233 case Formattable::kLong: fmt
285 MessageFormat *fmt = new MessageFormat("There are {0} apples growing on the {1} tree.", status); local
584 ChoiceFormat *fmt = new ChoiceFormat( local
642 ChoiceFormat *fmt = new ChoiceFormat(pattern, status); local
982 MessageFormat *fmt = new MessageFormat("",status); local
[all...]
H A Dnumfmtst.cpp218 DecimalFormat fmt(pat[i], sym, status);
220 UnicodeString newp; fmt.toPattern(newp);
225 UnicodeString s; (*(NumberFormat*)&fmt).format((int32_t)0, s);
230 logln((UnicodeString)"Min integer digits = " + fmt.getMinimumIntegerDigits());
353 DecimalFormat fmt(pat[p], sym, status);
357 fmt.toPattern(pattern) + "\"");
361 UnicodeString s; (*(NumberFormat*)&fmt).format(val[v], s);
368 fmt.parse(s, af, pos);
409 (*(NumberFormat*)&fmt).format(lval[v], s);
416 fmt
444 DecimalFormat* fmt = (DecimalFormat*)NumberFormat::createCurrencyInstance("en_US", status); local
587 DecimalFormat *fmt = new DecimalFormat(*pat, *sym, status); local
629 DecimalFormat *fmt = new DecimalFormat(pat, *sym, status); local
772 NumberFormat* fmt = local
1861 parseCurrencyAmount(const UnicodeString& str, const NumberFormat& fmt, UChar delim, Formattable& result, UErrorCode& ec) argument
1885 DecimalFormat *ref = 0, *fmt = 0; local
2113 expect3(NumberFormat& fmt, const Formattable& n, const UnicodeString& str) argument
2119 expect2(NumberFormat& fmt, const Formattable& n, const UnicodeString& str) argument
2125 expect2(NumberFormat* fmt, const Formattable& n, const UnicodeString& exp, UErrorCode status) argument
2136 expect(NumberFormat& fmt, const UnicodeString& str, const Formattable& n) argument
2157 expect_rbnf(NumberFormat& fmt, const UnicodeString& str, const Formattable& n) argument
2174 expect_rbnf(NumberFormat& fmt, const Formattable& n, const UnicodeString& exp, UBool rt) argument
2210 expect(NumberFormat& fmt, const Formattable& n, const UnicodeString& exp, UBool rt) argument
2248 expect(NumberFormat* fmt, const Formattable& n, const UnicodeString& exp, UErrorCode status) argument
2262 DecimalFormat& fmt = * (DecimalFormat*) &nf; local
2300 expectPat(DecimalFormat& fmt, const UnicodeString& exp) argument
2310 expectPad(DecimalFormat& fmt, const UnicodeString& pat, int32_t pos) argument
2314 expectPad(DecimalFormat& fmt, const UnicodeString& pat, int32_t pos, int32_t width, UChar pad) argument
2318 expectPad(DecimalFormat& fmt, const UnicodeString& pat, int32_t pos, int32_t width, const UnicodeString& pad) argument
2796 DecimalFormat* fmt = new DecimalFormat(pat, new DecimalFormatSymbols(*sym), status); local
2898 DecimalFormat* fmt = new DecimalFormat(pat, sym, status); local
6173 NumberFormat* fmt = NumberFormat::createCurrencyInstance("ja_JP", status); local
[all...]

Completed in 1638 milliseconds

1234567891011>>