HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 1 - 25 of 1999) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/simulator/wrapsim/
Log.h 13 void wsLog(const char* format, ...)
15 __attribute__ ((format(printf, 1, 2)))
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
DecimalFormatTestICU.java 40 DecimalFormat format; field in class:DecimalFormatTestICU
43 format = (DecimalFormat) NumberFormat.getNumberInstance();
50 method = "format",
62 DecimalFormat format = (DecimalFormat) NumberFormat local
65 format.applyPattern("@@@");
66 assertEquals("sigDigit doesn't work", "12300", format.format(12345));
67 assertEquals("sigDigit doesn't work", "0.123", format.format(0.12345));
69 format.applyPattern("@@##")
    [all...]
  /hardware/ti/wlan/wl1271/external_drivers/sdio/linux/
SdioDrvDbg.h 54 #define PERR(format, args... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_ERR) printk(format , ##args)
55 #define PDEBUG(format, args... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_DEBUG) printk(format , ##args)
56 #define PINFO(format, ... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_INFO) printk( format , ##__VA_ARGS__)
57 #define PNOTICE(format, ... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_NOTICE) printk( format , ##__VA_ARGS__)
58 #define PWARNING(format, ... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_WARNING) printk(format , ##__VA_ARGS__
    [all...]
  /system/wlan/ti/wilink_6_1/external_drivers/sdio/linux/
SdioDrvDbg.h 36 #define PERR(format, args... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_ERR) printk(format , ##args)
37 #define PDEBUG(format, args... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_DEBUG) printk(format , ##args)
38 #define PINFO(format, ... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_INFO) printk( format , ##__VA_ARGS__)
39 #define PNOTICE(format, ... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_NOTICE) printk( format , ##__VA_ARGS__)
40 #define PWARNING(format, ... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_WARNING) printk(format , ##__VA_ARGS__
    [all...]
  /external/bluetooth/bluez/common/
logging.h 27 void info(const char *format, ...) __attribute__((format(printf, 1, 2)));
28 void error(const char *format, ...) __attribute__((format(printf, 1, 2)));
29 void debug(const char *format, ...) __attribute__((format(printf, 1, 2)));
  /external/bluetooth/glib/glib/gnulib/
printf.h 25 int _g_gnulib_printf (char const *format,
28 char const *format,
31 char const *format,
35 char const *format,
37 int _g_gnulib_vprintf (char const *format,
40 char const *format,
43 char const *format,
47 char const *format,
50 char const *format,
printf.c 37 int _g_gnulib_printf (char const *format, ...)
42 va_start (args, format);
43 retval = _g_gnulib_vprintf (format, args);
49 int _g_gnulib_fprintf (FILE *file, char const *format, ...)
54 va_start (args, format);
55 retval = _g_gnulib_vfprintf (file, format, args);
61 int _g_gnulib_sprintf (char *string, char const *format, ...)
66 va_start (args, format);
67 retval = _g_gnulib_vsprintf (string, format, args);
73 int _g_gnulib_snprintf (char *string, size_t n, char const *format, ...
    [all...]
asnprintf.c 31 asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...)
36 va_start (args, format);
37 result = vasnprintf (resultbuf, lengthp, format, args);
  /external/skia/src/ports/
SkDebug_android.cpp 26 const char* format, ...)
28 if (format[0] == '\n' && format[1] == '\0')
31 va_start(args, format);
34 vsnprintf(buffer, kBufferSize, format, args);
38 android_vprintLog(ANDROID_LOG_DEBUG, NULL, LOG_TAG, format, args);
  /external/webkit/WebKit/android/nav/
CachedDebug.h 35 #define DBG_NAV_LOGD(format, ...) LOGD("%s " format, __FUNCTION__, __VA_ARGS__)
39 #define DBG_NAV_LOGD(format, ...) ((void)0)
44 #define DBG_NAV_LOGV(format, ...) LOGD("%s " format, __FUNCTION__, __VA_ARGS__)
46 #define DBG_NAV_LOGV(format, ...) ((void)0)
60 #define DUMP_NAV_LOGX(format, ...) do { if (gNavCacheLogFile) \
61 fprintf(gNavCacheLogFile, format, __VA_ARGS__); \
62 else LOGD("%s " format, __FUNCTION__, __VA_ARGS__); } while (false)
65 #define DUMP_NAV_LOGX(format, ...) LOGD("%s " format, __FUNCTION__, __VA_ARGS__
    [all...]
  /external/bluetooth/glib/glib/
gprintf.c 38 * @format: a standard printf() format string, but notice
50 g_printf (gchar const *format,
56 va_start (args, format);
57 retval = g_vprintf (format, args);
66 * @format: a standard printf() format string, but notice
79 gchar const *format,
85 va_start (args, format);
86 retval = g_vfprintf (file, format, args)
    [all...]
  /cts/tools/vm-tests/src/dot/junit/format/f1/d/
T_f1_0.java 17 package dot.junit.format.f1.d;
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
PrivateKeyStub.java 36 String format = null; field in class:PrivateKeyStub
44 * @param format
47 public PrivateKeyStub(String algorithm, String format, byte[] encoded) {
49 this.format = format;
62 * Returns format
66 return format;
PublicKeyStub.java 39 String format = null; field in class:PublicKeyStub
45 public PublicKeyStub(String algorithm, String format, byte[] encoded) {
47 this.format = format;
59 * returns format
63 return format;
  /dalvik/libcore/luni/src/test/java/java/util/
FormatterTest.java 26 assertEquals("JAKOB ARJOUNI", String.format(Locale.US, "%S", "jakob arjouni"));
28 assertEquals("JAKOB ARJOUN\u0130", String.format(new Locale("tr", "TR"), "%S", "jakob arjouni"));
34 assertEquals("7.000000 7", String.format("%.6f %d", 7.0, 7));
40 assertEquals("null", String.format(Locale.US, "%s", (String) null));
41 assertEquals("null", String.format(Locale.US, "%d", (Integer) null));
43 assertEquals("%", String.format(Locale.US, "%%"));
  /external/bison/src/
complain.h 30 void warn (char const *format, ...)
33 void warn_at (location loc, char const *format, ...)
38 void complain (char const *format, ...)
41 void complain_at (location loc, char const *format, ...)
46 void fatal (char const *format, ...)
49 void fatal_at (location loc, char const *format, ...)
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_pixels.c 35 * Allocate a pixel format structure and fill it according to the given info.
40 SDL_PixelFormat *format; local
43 /* Allocate an empty pixel format structure */
44 format = SDL_malloc(sizeof(*format));
45 if ( format == NULL ) {
49 SDL_memset(format, 0, sizeof(*format));
50 format->alpha = SDL_ALPHA_OPAQUE;
52 /* Set up the format */
    [all...]
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
SourceDataLine.java 22 void open(AudioFormat format) throws LineUnavailableException;
24 void open(AudioFormat format, int bufferSize)
TargetDataLine.java 22 void open(AudioFormat format) throws LineUnavailableException;
24 void open(AudioFormat format, int bufferSize)
  /external/e2fsprogs/intl/
printf.c 1 /* Formatted output to strings, using POSIX/XSI format strings with positions.
80 libintl_vfprintf (FILE *stream, const char *format, va_list args)
82 if (strchr (format, '$') == NULL)
83 return vfprintf (stream, format, args);
87 char *result = libintl_vasnprintf (NULL, &length, format, args);
101 libintl_fprintf (FILE *stream, const char *format, ...)
106 va_start (args, format);
107 retval = libintl_vfprintf (stream, format, args);
114 libintl_vprintf (const char *format, va_list args)
116 return libintl_vfprintf (stdout, format, args)
    [all...]
  /external/guava/src/com/google/common/util/concurrent/
NamingThreadFactory.java 32 private final String format; field in class:NamingThreadFactory
40 * thread creation, then uses {@code format} to construct a name for the new
43 * @param format a {@link String#format(String, Object...)}-compatible format
48 public NamingThreadFactory(String format) {
49 this(format, DEFAULT_FACTORY);
54 * creation, then uses {@code format} to construct a name for the new thread.
56 * @param format a {@link String#format(String, Object...)}-compatible forma
    [all...]
  /external/opencore/fileformats/mp4/composer/src/
sampleentry.cpp 30 PVA_FF_SampleEntry::PVA_FF_SampleEntry(uint32 format)
31 : PVA_FF_Atom(format)
  /external/webkit/WebKit/mac/Misc/
OldWebAssertions.c 30 void WebReportError(const char *file, int line, const char *function, const char *format, ...);
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...)
  /frameworks/base/graphics/java/android/graphics/
ImageFormat.java 26 /** RGB format used for pictures encoded as RGB_565
38 /** YCrCb format used for images, which uses the NV21 encoding format.
39 * This is the default format for camera preview images, when not
46 /** YCbCr format used for images, which uses YUYV (YUY2) encoding format.
47 * This is an alternative format for camera preview images. Whether this
48 * format is supported by the camera hardware can be determined by
63 * @param format
64 * @return the number of bits per pixel of the given format or -1 if th
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/util/
MsgHelpTest.java 36 * Test method for 'org.apache.harmony.luni.util.MsgHelp.format(String,
42 method = "format",
46 assertEquals("empty", MsgHelp.format("empty", new Object[0]));
48 assertEquals("<null>", MsgHelp.format("{0}", new Object[1]));
49 assertEquals("<missing argument>", MsgHelp.format("{0}", new Object[0]));
50 assertEquals("fixture {} fixture", MsgHelp.format("{0} \\{} {0}",
53 assertEquals("<null> fixture", MsgHelp.format("{0} {1}", new Object[] {
55 assertEquals("<null> fixture <missing argument>", MsgHelp.format(
57 assertEquals("<null> fixture", MsgHelp.format("{0} {1}", new Object[] {
60 assertEquals("0 1 2 3 4 5 6 7 8 9", MsgHelp.format(
    [all...]

Completed in 889 milliseconds

1 2 3 4 5 6 7 8 91011>>