Searched refs:fmt (Results 51 - 75 of 1087) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_printf.h39 const char *fmt, ...);
/external/qemu/include/qapi/
H A Derror.h30 void error_set(Error **err, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(3, 4);
37 void error_set_errno(Error **err, int os_error, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(4, 5);
45 void error_set_win32(Error **err, int win32_err, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(4, 5);
51 #define error_setg(err, fmt, ...) \
52 error_set(err, ERROR_CLASS_GENERIC_ERROR, fmt, ## __VA_ARGS__)
53 #define error_setg_errno(err, os_error, fmt, ...) \
54 error_set_errno(err, os_error, ERROR_CLASS_GENERIC_ERROR, fmt, ## __VA_ARGS__)
56 #define error_setg_win32(err, win32_err, fmt, ...) \
57 error_set_win32(err, win32_err, ERROR_CLASS_GENERIC_ERROR, fmt, ## __VA_ARGS__)
/external/icu/icu4c/source/test/intltest/
H A Dnumfmtst.h188 void expectParseCurrency(const NumberFormat &fmt, const UChar* currency, double amount, const char *text);
198 void expect2(NumberFormat& fmt, const Formattable& n, const UnicodeString& str);
200 void expect3(NumberFormat& fmt, const Formattable& n, const UnicodeString& str);
202 void expect2(NumberFormat& fmt, const Formattable& n, const char* str) { argument
203 expect2(fmt, n, UnicodeString(str, ""));
206 void expect2(NumberFormat* fmt, const Formattable& n, const UnicodeString& str, UErrorCode ec);
208 void expect2(NumberFormat* fmt, const Formattable& n, const char* str, UErrorCode ec) { argument
209 expect2(fmt, n, UnicodeString(str, ""), ec);
212 void expect(NumberFormat& fmt, const UnicodeString& str, const Formattable& n);
214 void expect(NumberFormat& fmt, cons argument
221 expect(NumberFormat& fmt, const Formattable& n, const char *exp, UBool rt=TRUE) argument
229 expect(NumberFormat* fmt, const Formattable& n, const char *exp, UBool rt, UErrorCode errorCode) argument
234 expect(NumberFormat* fmt, const Formattable& n, const UnicodeString& exp, UErrorCode errorCode) argument
239 expect(NumberFormat* fmt, const Formattable& n, const char *exp, UErrorCode errorCode) argument
250 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, UChar pad) argument
258 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, const UnicodeString& pad) argument
265 expectPat(DecimalFormat& fmt, const char *exp) argument
272 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos) argument
[all...]
H A Dsimplepatternformattertest.cpp38 SimplePatternFormatter fmt("This doesn''t have templates '{0}");
39 assertEquals("PlaceholderCount", 0, fmt.getPlaceholderCount());
44 fmt.format("unused", appendTo, status));
45 fmt.compile("This has {} bad {012d placeholders", status);
46 assertEquals("PlaceholderCount", 0, fmt.getPlaceholderCount());
51 fmt.format("unused", appendTo, status));
57 SimplePatternFormatter fmt; local
58 fmt.compile("{0} meter", status);
59 assertEquals("PlaceholderCount", 1, fmt.getPlaceholderCount());
64 fmt
88 SimplePatternFormatter fmt; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/
H A DSDL_error.c50 void SDL_SetError (const char *fmt, ...) argument
58 SDL_strlcpy((char *)error->key, fmt, sizeof(error->key));
60 va_start(ap, fmt);
62 while ( *fmt ) {
63 if ( *fmt++ == '%' ) {
64 while ( *fmt == '.' || (*fmt >= '0' && *fmt <= '9') ) {
65 ++fmt;
67 switch (*fmt
128 const char *fmt; local
[all...]
/external/clang/test/SemaCXX/
H A Dformat-strings.cpp26 const char *gettext(const char *fmt) __attribute__((format_arg(2)));
32 static const char *gettext_static(const char *fmt) __attribute__((format_arg(1)));
33 static int printf_static(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
59 int Foo::printf(const char *fmt, ...) { argument
61 va_start(ap,fmt);
62 const char * const format = fmt;
65 const char *format2 = fmt;
71 int Foo::printf2(const char *fmt, ...) { argument
73 va_start(ap,fmt);
74 vprintf(fmt, a
[all...]
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_debug.cpp22 void LogArgs(const char* fmt, va_list args, bool print_error, int error) { argument
27 ret = vsnprintf(buffer, buffer_size, fmt, args);
49 void Log(const char* fmt, ...) { argument
52 va_start(args, fmt);
53 LogArgs(fmt, args, false, -1);
58 void LogErrno(const char* fmt, ...) { argument
61 va_start(args, fmt);
62 LogArgs(fmt, args, true, old_errno);
H A Dcrazy_linker_debug.h19 void Log(const char* fmt, ...);
20 void LogErrno(const char* fmt, ...);
H A Dcrazy_linker_error.h33 void Format(const char* fmt, ...);
37 void AppendFormat(const char* fmt, ...);
/external/chromium_org/third_party/webrtc/modules/video_render/mac/
H A Dcocoa_render_view.h27 -(void)initCocoaRenderView:(NSOpenGLPixelFormat*)fmt;
28 -(void)initCocoaRenderViewFullScreen:(NSOpenGLPixelFormat*)fmt;
H A Dcocoa_render_view.mm20 -(void)initCocoaRenderView:(NSOpenGLPixelFormat*)fmt{
22 self = [super initWithFrame:[self frame] pixelFormat:fmt];
37 -(void)initCocoaRenderViewFullScreen:(NSOpenGLPixelFormat*)fmt{
42 self = [super initWithFrame:screenRect pixelFormat:fmt];
/external/clang/test/Sema/
H A Dbuiltin-object-size.c24 void f4(const char *fmt, ...) { argument
26 __builtin___vsnprintf_chk (0, 42, 0, 11, fmt, args);
/external/libcxx/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/
H A Dget_many.pass.cpp16 // const char_type *fmt, const char_type *fmtend) const;
42 const char fmt[] = "%Y %b %d, %I:%M%p"; local
45 I i = f.get(I(in), I(in+sizeof(in)-1), ios, err, &t, fmt, fmt+sizeof(fmt)-1);
56 const char fmt[] = "%I:%M%p %b %d, %Y"; local
59 I i = f.get(I(in), I(in+sizeof(in)-1), ios, err, &t, fmt, fmt+sizeof(fmt)-1);
/external/qemu/android/utils/
H A Dpanic.h22 void __attribute__((noreturn)) android_panic ( const char* fmt, ... );
25 void __attribute__((noreturn)) android_vpanic( const char* fmt, va_list args );
/external/sonivox/arm-fm-22k/host_src/
H A Deas_report.h65 extern void EAS_Report (int severity, const char* fmt, ...);
66 extern void EAS_ReportX (int severity, const char* fmt, ...);
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_report.h65 extern void EAS_Report (int severity, const char* fmt, ...);
66 extern void EAS_ReportX (int severity, const char* fmt, ...);
/external/sonivox/arm-wt-22k/host_src/
H A Deas_report.h65 extern void EAS_Report (int severity, const char* fmt, ...);
66 extern void EAS_ReportX (int severity, const char* fmt, ...);
/external/chromium_org/third_party/icu/source/common/
H A Dutracimp.h113 * @param fmt The trace format string.
118 utrace_data(int32_t utraceFnNumber, int32_t level, const char *fmt, ...);
235 #define UTRACE_DATA0(level, fmt) \
237 utrace_data(utraceFnNumber & ~UTRACE_TRACED_ENTRY, (level), (fmt)); \
248 #define UTRACE_DATA1(level, fmt, a) \
250 utrace_data(utraceFnNumber & ~UTRACE_TRACED_ENTRY , (level), (fmt), (a)); \
261 #define UTRACE_DATA2(level, fmt, a, b) \
263 utrace_data(utraceFnNumber & ~UTRACE_TRACED_ENTRY , (level), (fmt), (a), (b)); \
274 #define UTRACE_DATA3(level, fmt, a, b, c) \
276 utrace_data(utraceFnNumber & ~UTRACE_TRACED_ENTRY, (level), (fmt), (
[all...]
/external/icu/icu4c/source/common/
H A Dutracimp.h113 * @param fmt The trace format string.
118 utrace_data(int32_t utraceFnNumber, int32_t level, const char *fmt, ...);
235 #define UTRACE_DATA0(level, fmt) \
237 utrace_data(utraceFnNumber & ~UTRACE_TRACED_ENTRY, (level), (fmt)); \
248 #define UTRACE_DATA1(level, fmt, a) \
250 utrace_data(utraceFnNumber & ~UTRACE_TRACED_ENTRY , (level), (fmt), (a)); \
261 #define UTRACE_DATA2(level, fmt, a, b) \
263 utrace_data(utraceFnNumber & ~UTRACE_TRACED_ENTRY , (level), (fmt), (a), (b)); \
274 #define UTRACE_DATA3(level, fmt, a, b, c) \
276 utrace_data(utraceFnNumber & ~UTRACE_TRACED_ENTRY, (level), (fmt), (
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnumfmtst.h163 void expect2(NumberFormat& fmt, const Formattable& n, const UnicodeString& str);
165 void expect3(NumberFormat& fmt, const Formattable& n, const UnicodeString& str);
167 void expect2(NumberFormat& fmt, const Formattable& n, const char* str) { argument
168 expect2(fmt, n, UnicodeString(str, ""));
171 void expect2(NumberFormat* fmt, const Formattable& n, const UnicodeString& str, UErrorCode ec);
173 void expect2(NumberFormat* fmt, const Formattable& n, const char* str, UErrorCode ec) { argument
174 expect2(fmt, n, UnicodeString(str, ""), ec);
177 void expect(NumberFormat& fmt, const UnicodeString& str, const Formattable& n);
179 void expect(NumberFormat& fmt, const char *str, const Formattable& n) { argument
180 expect(fmt, UnicodeStrin
186 expect(NumberFormat& fmt, const Formattable& n, const char *exp, UBool rt=TRUE) argument
194 expect(NumberFormat* fmt, const Formattable& n, const char *exp, UErrorCode errorCode) argument
205 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, UChar pad) argument
213 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, const UnicodeString& pad) argument
220 expectPat(DecimalFormat& fmt, const char *exp) argument
227 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos) argument
[all...]
/external/deqp/framework/opengl/
H A DgluCallLogWrapper.cpp72 inline std::ostream& operator<< (std::ostream& str, StringFmt fmt) argument
74 return str << (fmt.str ? (const char*)fmt.str : "NULL");
91 std::ostream& operator<< (std::ostream& str, FboParamPtrFmt fmt) argument
93 if (fmt.value)
95 switch (fmt.param)
98 return str << tcu::Format::Enum(getFramebufferAttachmentTypeName, *fmt.value);
101 return str << tcu::Format::Enum(getCubeMapFaceName, *fmt.value);
104 return str << tcu::Format::Enum(getTypeName, *fmt.value);
107 return str << tcu::Format::Enum(getFramebufferColorEncodingName, *fmt
[all...]
/external/fonttools/Lib/fontTools/misc/
H A Dsstruct.py8 Just like struct, we use fmt strings to describe a data
15 is not allowed but 'myString:5s' is). The 'x' fmt character
25 pack(fmt, object):
32 unpack(fmt, data, object=None)
40 unpack2(fmt, data, object=None)
44 calcsize(fmt)
45 like struct.calcsize(), but uses our own fmt strings:
62 def pack(fmt, obj):
63 formatstring, names, fixes = getformat(fmt)
78 def unpack(fmt, dat
[all...]
/external/fonttools/Tools/fontTools/misc/
H A Dsstruct.py8 Just like struct, we use fmt strings to describe a data
15 is not allowed but 'myString:5s' is). The 'x' fmt character
25 pack(fmt, object):
32 unpack(fmt, data, object=None)
40 unpack2(fmt, data, object=None)
44 calcsize(fmt)
45 like struct.calcsize(), but uses our own fmt strings:
62 def pack(fmt, obj):
63 formatstring, names, fixes = getformat(fmt)
78 def unpack(fmt, dat
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcolor.h36 const char *fmt, va_list args);
37 int color_vfprintf(FILE *fp, const char *color, const char *fmt, va_list args);
38 int color_fprintf(FILE *fp, const char *color, const char *fmt, ...);
39 int color_snprintf(char *bf, size_t size, const char *color, const char *fmt, ...);
40 int color_fprintf_ln(FILE *fp, const char *color, const char *fmt, ...);
42 int percent_color_snprintf(char *bf, size_t size, const char *fmt, double percent);
43 int percent_color_fprintf(FILE *fp, const char *fmt, double percent);
H A Ddebug.c19 int eprintf(int level, const char *fmt, ...) argument
25 va_start(args, fmt);
27 ui_helpline__vshow(fmt, args);
29 ret = vfprintf(stderr, fmt, args);
36 int dump_printf(const char *fmt, ...) argument
42 va_start(args, fmt);
43 ret = vprintf(fmt, args);

Completed in 623 milliseconds

1234567891011>>