/bionic/libc/bionic/ |
fdprintf.c | 34 int vfdprintf(int fd, const char * __restrict format, __va_list ap) 38 ret = vasprintf(&buf, format, ap); 48 int fdprintf(int fd, const char * __restrict format, ...) 53 va_start(ap, format); 54 ret = vfdprintf(fd, format, ap);
|
/sdk/monkeyrunner/scripts/ |
help.py | 23 print 'help.py: format output' 26 (format, saveto_path) = sys.argv[1:] 28 if not format.lower() in supported_formats: 29 print 'format %s is not a supported format' % format 32 output = mr.help(format=format) 34 print 'Error generating help format'
|
/external/bluetooth/glib/glib/ |
gprintf.h | 29 gint g_printf (gchar const *format, 32 gchar const *format, 35 gchar const *format, 38 gint g_vprintf (gchar const *format, 41 gchar const *format, 44 gchar const *format, 47 gchar const *format,
|
/external/clang/test/SemaCXX/ |
attr-format.cpp | 3 static void f(const char*, ...) __attribute__((format(printf, 1, 2))); 7 // the format argument is argument 2 here. 8 void g(const char*, ...) __attribute__((format(printf, 2, 3))); 11 void h(const char*, ...) __attribute__((format(printf, 1, 4))); // \ 12 expected-error{{implicit this argument as the format string}} 13 void h2(const char*, ...) __attribute__((format(printf, 2, 1))); // \ 20 struct A { void a(const char*,...) __attribute((format(printf,2,3))); }; 30 __attribute__((format(printf, 2, 3)));
|
/frameworks/media/libvideoeditor/osal/src/ |
M4OSA_CharStar.c | 307 M4OSA_Char *format, ...) 326 "M4OSA_Char* %x)",pStrOut,strOutMaxLen,format); 329 M4OSA_DEBUG_IF2(M4OSA_NULL == format, M4ERR_PARAMETER, 332 va_start(marker,format); 335 pTemp = format; 387 err= vsnprintf((char *)pStrOut, (size_t)strOutMaxLen + 1, (const char *)format, marker); 401 newFormatLength = strlen((const char *)format) + 1; 412 /* copy format to newFormat, replacing %[flags][width][.precision]ll[conversion] 414 while(*format) 416 nbChar = strcspn((const char *)format, "%") [all...] |
/hardware/ti/omap3/omx/system/src/openmax_il/common/inc/ |
OMX_TI_Debug.h | 44 *! that is, newest first. The date format is dd-Mon-yyyy. 90 Output format is: 285 * format, list - debug message 290 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \ 294 format OMX_DBG_FN OMX_DBG_LINE, ##list); \ 297 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \ 302 format OMX_DBG_FN OMX_DBG_LINE, ##list); \ 306 format OMX_DBG_FN OMX_DBG_LINE, ##list); \ 312 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \ 317 format OMX_DBG_FN OMX_DBG_LINE, ##list); [all...] |
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
DecimalFormatTest.java | 354 form.format(12.3); 406 form.format(12.3); 457 form.format(new Object(), new StringBuffer(), new FieldPosition(0)); 463 form.format(null, new StringBuffer(), new FieldPosition(0)); 472 form.format(new Double(1.9), null, new FieldPosition(0)); 479 form.format(new Double(1.3), new StringBuffer(), null); 486 form.format(new Double(1.4), null, null); 493 form.format(new Object(), null, null); 501 DecimalFormat format = (DecimalFormat) NumberFormat local 504 // format maxLon 688 DecimalFormat format = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local 700 DecimalFormat format = new DecimalFormat(); local 705 DecimalFormat format = new DecimalFormat(); local 710 DecimalFormat format = new DecimalFormat(); local 715 DecimalFormat format = new DecimalFormat(); local 720 DecimalFormat format = new DecimalFormat(); local 736 DecimalFormat format = new DecimalFormat("'$'0000.0000"); local 747 DecimalFormat format = new DecimalFormat("#.#"); local 771 DecimalFormat format = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local 1130 DecimalFormat format = (DecimalFormat) NumberFormat local 1274 DecimalFormat format = (DecimalFormat) NumberFormat local 1377 DecimalFormat format = new DecimalFormat(); local 1577 DecimalFormat format = (DecimalFormat) DecimalFormat.getInstance(); local 1590 DecimalFormat format = (DecimalFormat) DecimalFormat.getInstance(); local 1604 DecimalFormat format = (DecimalFormat)DecimalFormat.getInstance(); local [all...] |
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
Log.java | 30 public void debug(String format, Object... args) { 32 info(format, args); 36 public void info(String format, Object... args) { 37 String s = String.format(format, args); 41 public void error(String format, Object... args) { 42 String s = String.format(format, args); 46 public void exception(Throwable t, String format, Object... args) { 51 error(format + "\n" + sw.toString(), args) [all...] |
/system/media/mca/filterfw/java/android/filterfw/core/ |
SimpleFrameManager.java | 37 public Frame newFrame(FrameFormat format) { 38 return createNewFrame(format); 42 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) { 44 switch(format.getTarget()) { 46 GLFrame glFrame = new GLFrame(format, this, bindingType, bindingId); 54 + FrameFormat.targetToString(format.getTarget()) + "!"); 59 private Frame createNewFrame(FrameFormat format) { 61 switch(format.getTarget()) { 63 result = new SimpleFrame(format, this); 67 result = new NativeFrame(format, this) [all...] |
/external/libxml2/ |
trio.h | 80 int trio_printf TRIO_PROTO((TRIO_CONST char *format, ...)); 81 int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args)); 82 int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args)); 84 int trio_fprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...)); 85 int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args)); 86 int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args)); 88 int trio_dprintf TRIO_PROTO((int fd, TRIO_CONST char *format, ...)); 89 int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args)); 90 int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args)); 93 TRIO_CONST char *format, ...)) [all...] |
/external/libxslt/libxslt/ |
trio.h | 80 int trio_printf TRIO_PROTO((TRIO_CONST char *format, ...)); 81 int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args)); 82 int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args)); 84 int trio_fprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...)); 85 int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args)); 86 int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args)); 88 int trio_dprintf TRIO_PROTO((int fd, TRIO_CONST char *format, ...)); 89 int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args)); 90 int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args)); 93 TRIO_CONST char *format, ...)) [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldNumberFormatTest.java | 34 DecimalFormat format = (DecimalFormat) NumberFormat.getIntegerInstance(Locale.US); local 35 assertEquals("#,##0", format.toPattern()); 36 assertEquals("-36", format.format(-35.76)); 37 assertEquals(new Long(-36), format.parse("-36")); 38 assertEquals(new Long(-36), format.parseObject("-36")); 39 assertEquals(0, format.getMaximumFractionDigits()); 40 assertTrue(format.isParseIntegerOnly()); 45 format = (DecimalFormat) NumberFormat.getIntegerInstance(chLocale); 46 assertEquals("#,##0", format.toPattern()) 66 NumberFormat format = NumberFormat.getInstance(); local 78 NumberFormat format = NumberFormat.getInstance(new Locale("hu", "HU")); local 292 NumberFormat format = NumberFormat.getCurrencyInstance(); local 314 NumberFormat format = NumberFormat.getCurrencyInstance(usLocale); local 342 NumberFormat format = NumberFormat.getInstance(); local 363 NumberFormat format = NumberFormat.getInstance(testLocale); local 381 NumberFormat format = NumberFormat.getNumberInstance(); local 402 NumberFormat format = NumberFormat.getNumberInstance(deLocale); local 419 NumberFormat format = NumberFormat.getPercentInstance(); local 440 NumberFormat format = NumberFormat.getPercentInstance(csLocale); local 828 public StringBuffer format(double number, StringBuffer toAppendTo, method in class:OldNumberFormatTest.MyNumberFormat 839 public StringBuffer format(long number, StringBuffer toAppendTo, method in class:OldNumberFormatTest.MyNumberFormat [all...] |
/external/chromium/chrome/common/extensions/ |
extension_error_utils.cc | 10 const std::string& format, 12 std::string ret_val = format; 18 const std::string& format, 21 std::string ret_val = format; 28 const std::string& format, 32 std::string ret_val = format;
|
extension_error_utils.h | 14 static std::string FormatErrorMessage(const std::string& format, 17 static std::string FormatErrorMessage(const std::string& format, 21 static std::string FormatErrorMessage(const std::string& format,
|
/external/icu4c/tools/tzcode/ |
scheck.c | 17 scheck(string, format) 19 const char * const format; 29 if (string == NULL || format == NULL) 31 fbuf = imalloc((int) (2 * strlen(format) + 4)); 34 fp = format; 60 result = (char *) format;
|
/external/bluetooth/glib/glib/gnulib/ |
vasnprintf.h | 33 /* The __-protected variants of `format' and `printf' attributes 36 # define __format__ format 52 extern char * asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...) 54 extern char * vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args)
|
/external/e2fsprogs/intl/ |
vasnprintf.h | 33 /* The __-protected variants of `format' and `printf' attributes 36 # define __format__ format 52 extern char * asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...) 54 extern char * vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args)
|
/external/valgrind/main/coregrind/ |
pub_core_debuglog.h | 73 const HChar* format, ... ) 74 __attribute__((format(__printf__, 3, 4))); 83 const HChar *format,
|
/bionic/linker/ |
linker_format.h | 39 int format_buffer(char *buffer, size_t bufsize, const char *format, ...);
|
/development/tools/emulator/opengl/system/GLESv1_enc/ |
GLEncoderUtils.h | 20 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pack);
|
/external/bluetooth/bluez/src/ |
log.c | 36 void info(const char *format, ...) 40 va_start(ap, format); 42 vsyslog(LOG_INFO, format, ap); 47 void error(const char *format, ...) 51 va_start(ap, format); 53 vsyslog(LOG_ERR, format, ap); 58 void btd_debug(const char *format, ...) 62 va_start(ap, format); 64 vsyslog(LOG_DEBUG, format, ap);
|
/external/chromium/base/ |
stringprintf.h | 18 BASE_API std::string StringPrintf(const char* format, ...) PRINTF_FORMAT(1, 2); 19 BASE_API std::wstring StringPrintf(const wchar_t* format, ...) 23 BASE_API std::string StringPrintV(const char* format, va_list ap) 28 const char* format, ...) 31 const wchar_t* format, ...) 35 BASE_API void StringAppendF(std::string* dst, const char* format, ...) 39 BASE_API void StringAppendF(std::wstring* dst, const wchar_t* format, ...) 44 BASE_API void StringAppendV(std::string* dst, const char* format, va_list ap) 47 const wchar_t* format, va_list ap)
|
/external/chromium/third_party/libjingle/source/talk/base/ |
checks.h | 37 void Fatal(const char* file, int line, const char* format, ...);
|
/external/llvm/lib/Target/CBackend/ |
Makefile | 16 CompileCommonOpts += -Wno-format
|
/external/llvm/lib/Target/CppBackend/ |
Makefile | 16 CompileCommonOpts += -Wno-format
|