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

1 2 3 4 56 7 8 91011>>

  /ndk/build/platforms/android-8/arch-arm/usr/include/android/
log.h 101 __attribute__ ((format(printf, 3, 4)))
120 __attribute__ ((format(printf, 3, 4)))
  /ndk/build/platforms/android-8/arch-x86/usr/include/android/
log.h 101 __attribute__ ((format(printf, 3, 4)))
120 __attribute__ ((format(printf, 3, 4)))
  /packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
GalaxyView.java 33 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
34 super.surfaceChanged(holder, format, w, h);
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
GrassView.java 33 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
34 super.surfaceChanged(holder, format, w, h);
  /system/core/include/android/
log.h 101 __attribute__ ((format(printf, 3, 4)))
120 __attribute__ ((format(printf, 3, 4)))
  /system/wlan/ti/wilink_6_1/platforms/os/common/inc/
tracebuf_api.h 54 int tb_sprintf(const char *format ,...);
68 #define tb_sprintf(format ,...)
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JDKAlgorithmParameters.java 67 String format)
70 if (format == null)
75 if (format.equals("RAW"))
82 else if (format.equals("ASN.1"))
137 String format)
140 if (format.equals("RAW"))
145 else if (format.equals("ASN.1"))
163 throw new IOException("Unknown parameters format in IV parameters object");
185 // String format)
188 // if (format == null
    [all...]
  /hardware/ti/omap3/liboverlay/
v4l2_utils.c 134 struct v4l2_format format; local
139 format.type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
140 ret = ioctl(fd, VIDIOC_G_FMT, &format);
144 dump_pixfmt(&format.fmt.pix);
146 format.type = V4L2_BUF_TYPE_VIDEO_OVERLAY;
147 ret = ioctl(fd, VIDIOC_G_FMT, &format);
151 dump_window(&format.fmt.win);
224 void get_window(struct v4l2_format *format, int32_t *x,
229 *x = format->fmt.win.w.left;
230 *y = format->fmt.win.w.top
239 struct v4l2_format format; local
276 struct v4l2_format format; local
294 struct v4l2_format format; local
322 struct v4l2_format format; local
    [all...]
  /external/icu4c/i18n/unicode/
rbnf.h 15 * \brief C++ API: Rule Based Number Format
86 * <p>For larger numbers, we can use the preceding set of rules to format the ones place, and
102 * isolate the number's ones digit, format it using this same set of rules, and place the
178 * <p>The above syntax suffices only to format positive integers. To format negative numbers,
184 * where the base value would be. This rule is used to format all negative numbers. the
185 * &gt;&gt; token here means &quot;find the number's absolute value, format it with these
213 * are <em>public:</em> the caller can specify that they be used to format and parse numbers.
288 * on whether it is used to format a number's integral part (or the whole number) or a
289 * number's fractional part. Using a rule set to format a rule's fractional part makes it
1006 RuleBasedNumberFormat::format(const Formattable& obj, function in class:RuleBasedNumberFormat
1019 RuleBasedNumberFormat::format(double number, UnicodeString& output) const { function in class:RuleBasedNumberFormat
1025 RuleBasedNumberFormat::format(int32_t number, UnicodeString& output) const { function in class:RuleBasedNumberFormat
    [all...]
  /external/v8/src/
platform-posix.cc 123 void OS::Print(const char* format, ...) {
125 va_start(args, format);
126 VPrint(format, args);
131 void OS::VPrint(const char* format, va_list args) {
133 LOG_PRI_VA(ANDROID_LOG_INFO, LOG_TAG, format, args);
135 vprintf(format, args);
140 void OS::PrintError(const char* format, ...) {
142 va_start(args, format);
143 VPrintError(format, args);
148 void OS::VPrintError(const char* format, va_list args)
    [all...]
  /external/icu4c/io/
uprntf_p.c 66 /* C K is old format */
68 /* S U is old format */
77 * format specification, for example 'd' or 's'.
80 * information on the format specification.
98 * Struct encapsulating a single uprintf format specification.
119 /* Sets the sign of a format based on u_printf_spec_info */
122 u_printf_set_sign(UNumberFormat *format,
129 *prefixBufLen = unum_getTextAttribute(format,
136 /* unum_setSymbol(format, UNUM_PLUS_SIGN_SYMBOL, gSpaceStr, 1, &status); */
137 unum_setTextAttribute(format, UNUM_POSITIVE_PREFIX, gSpaceStr, 1, status)
278 UNumberFormat *format; local
354 UNumberFormat *format; local
489 UNumberFormat *format; local
558 UNumberFormat *format; local
678 UNumberFormat *format; local
803 UNumberFormat *format; local
876 UNumberFormat *format; local
    [all...]
  /external/libpcap/missing/
snprintf.c 290 const unsigned char *format = (const unsigned char *)char_format; local
293 while((c = *format++)) {
302 while((c = *format++)){
327 c = *format++;
331 c = *format++;
337 c = *format++;
341 c = *format++;
345 c = *format++;
353 c = *format++;
356 c = *format++
    [all...]
  /external/tcpdump/missing/
snprintf.c 290 const unsigned char *format = (const unsigned char *)char_format; local
293 while((c = *format++)) {
302 while((c = *format++)){
327 c = *format++;
331 c = *format++;
337 c = *format++;
341 c = *format++;
345 c = *format++;
353 c = *format++;
356 c = *format++
    [all...]
  /build/core/combo/
HOST_linux-x86.mk 22 stat --format "%s" "$(1)" | tr -d '\n'
  /cts/tests/tests/jni/libjnitest/
helper.h 46 * @param format printf format string
50 char *failure(const char *format, ...);
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
Msg.java 136 String format = msg; local
142 format = bundle.getString(msg);
147 return MsgHelp.format(format, args);
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
FormattableTest.java 45 arg0.format(sb.toString());
64 assertTrue(fmt.format("%1.1s", mf).toString().equals("single precision "));
65 assertTrue(fmt.format("%2.1s", mf).toString().equals("single precision single precision "));
66 assertTrue(fmt.format("%2.2s", mf).toString().equals("single precision single precision double precision "));
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
Clip.java 31 void open(AudioFormat format, byte[] data, int offset, int bufferSize)
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyUtils.java 38 return DATE_FORMATTER.format(DATE);
  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
TestHelper.java 34 String.format("Source comparison failure: expected:<%s> but was:<%s>", expected, actual),
  /external/bluetooth/glib/glib/
gerror.h 43 const gchar *format,
57 /* if (err) *err = g_error_new(domain, code, format, ...), also has
63 const gchar *format,
81 const gchar *format,
87 const gchar *format,
  /external/icu4c/i18n/
windtfmt.h 21 #include "unicode/format.h"
29 * \brief C++ API: Format dates using Windows API.
49 virtual Format *clone(void) const;
53 UnicodeString &format(Calendar &cal, UnicodeString &appendTo, FieldPosition &pos) const;
55 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
60 * Set the calendar to be used by this date format. Initially, the default
70 * Set the calendar to be used by this date format. Initially, the default
139 inline UnicodeString &Win32DateFormat::format(UDate date, UnicodeString& appendTo) const { function in class:Win32DateFormat
140 return DateFormat::format(date, appendTo);
  /external/opencore/protocols/systems/3g-324m_pvterminal/h245/se/src/
sebase.cpp 73 OSCL_EXPORT_REF void SEBase::Print(const char *format, ...)
75 OSCL_UNUSED_ARG(format);
77 PVLOGGER_LOG_USE_ONLY(va_start(args, format));
78 PVLOGGER_LOGMSG_V(PVLOGMSG_INST_LLDBG, Logger, PVLOGMSG_VERBOSE, (0, format, args));
  /external/qemu/distrib/sdl-1.2.12/src/audio/dsp/
SDL_dspaudio.c 166 int format; local
202 SDL_SetError("Couldn't get audio format list");
207 /* Try for a closest match on audio format */
208 format = 0;
209 for ( test_format = SDL_FirstAudioFormat(spec->format);
210 ! format && test_format; ) {
212 fprintf(stderr, "Trying format 0x%4.4x\n", test_format);
217 format = AFMT_U8;
222 format = AFMT_S16_LE;
227 format = AFMT_S16_BE
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11modes_c.h 36 extern SDL_Rect **X11_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags);

Completed in 498 milliseconds

1 2 3 4 56 7 8 91011>>