/external/bison/darwin-lib/ |
stdio.h | 66 The __-protected variants of the attributes 'format' and 'printf' are 78 indicates to GCC that the function takes a format string and arguments, 79 where the format string directives are the ones standardized by ISO C99 90 except that it indicates to GCC that the supported format string directives 97 indicates to GCC that the function takes a format string and arguments, 98 where the format string directives are the ones standardized by ISO C99 109 except that it indicates to GCC that the supported format string directives 450 _GL_FUNCDECL_RPL (dprintf, int, (int fd, const char *format, ...) 453 _GL_CXXALIAS_RPL (dprintf, int, (int fd, const char *format, ...)); 456 _GL_FUNCDECL_SYS (dprintf, int, (int fd, const char *format, ... [all...] |
/external/bison/linux-lib/ |
stdio.h | 66 The __-protected variants of the attributes 'format' and 'printf' are 78 indicates to GCC that the function takes a format string and arguments, 79 where the format string directives are the ones standardized by ISO C99 90 except that it indicates to GCC that the supported format string directives 97 indicates to GCC that the function takes a format string and arguments, 98 where the format string directives are the ones standardized by ISO C99 109 except that it indicates to GCC that the supported format string directives 450 _GL_FUNCDECL_RPL (dprintf, int, (int fd, const char *format, ...) 453 _GL_CXXALIAS_RPL (dprintf, int, (int fd, const char *format, ...)); 456 _GL_FUNCDECL_SYS (dprintf, int, (int fd, const char *format, ... [all...] |
/bionic/libc/bionic/ |
libc_logging.cpp | 128 /* Parse a decimal string from 'format + *ppos', 134 static unsigned parse_decimal(const char *format, int *ppos) { 135 const char* p = format + *ppos; 149 *ppos = p - format; 229 static void out_vformat(Out& o, const char* format, va_list args) { 241 char buffer[32]; /* temporary buffer used to format numbers */ 249 c = format[mm]; 256 o.Send(format+nn, mm-nn); 269 c = format[nn++]; 293 width = (int)parse_decimal(format, &nn) [all...] |
/external/valgrind/main/VEX/priv/ |
main_util.c | 319 HChar* format, 343 if (!format) 345 if (*format == 0) 348 if (*format != '%') { 349 PUT(*format); 350 format++; 354 saved_format = format; 359 format++; 361 if (*format == '-') { 362 format++ [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldMessageFormatTest.java | 23 import java.text.Format; 48 MessageFormat format = new MessageFormat("test"); local 49 format.setLocale(Locale.FRENCH); // use French since English has the 51 format.applyPattern("{0,time, Full}"); 52 assertEquals("Wrong full time pattern", "{0,time,full}", format 114 * java.text.MessageFormat#setFormat(int, Format) Test of method 115 * java.text.MessageFormat#setFormat(int, Format). Case 1: Compare 130 Format[] formats = f1.getFormats(); 133 Format[] correctFormats = new Format[] { 166 MessageFormat format = new MessageFormat("{1,number,integer}"); local 285 MessageFormat format = new MessageFormat(pattern, Locale.US); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
JDKAlgorithmParameters.java | 27 protected boolean isASN1FormatString(String format) 29 return format == null || format.equals("ASN.1"); 65 String format) 67 if (isASN1FormatString(format)) 112 String format) 115 if (isASN1FormatString(format)) 121 throw new IOException("Unknown parameters format in PWRIKEK parameters object"); 148 String format) 150 if (isASN1FormatString(format)) [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/ |
SoftMPEG4.cpp | 114 def.format.video.cMIMEType = 119 def.format.video.pNativeRender = NULL; 120 def.format.video.nFrameWidth = mWidth; 121 def.format.video.nFrameHeight = mHeight; 122 def.format.video.nStride = def.format.video.nFrameWidth; 123 def.format.video.nSliceHeight = def.format.video.nFrameHeight; 124 def.format.video.nBitrate = 0; 125 def.format.video.xFramerate = 0 [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/ |
SoftAVC.cpp | 118 def.format.video.cMIMEType = const_cast<char *>(MEDIA_MIMETYPE_VIDEO_AVC); 119 def.format.video.pNativeRender = NULL; 120 def.format.video.nFrameWidth = mWidth; 121 def.format.video.nFrameHeight = mHeight; 122 def.format.video.nStride = def.format.video.nFrameWidth; 123 def.format.video.nSliceHeight = def.format.video.nFrameHeight; 124 def.format.video.nBitrate = 0; 125 def.format.video.xFramerate = 0 [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
AlgorithmParametersSpi.java | 26 protected boolean isASN1FormatString(String format) 28 return format == null || format.equals("ASN.1"); 79 String format) 81 if (isASN1FormatString(format) || format.equalsIgnoreCase("X.509")) 139 String format) 142 if (format.equalsIgnoreCase("X.509") 143 || format.equalsIgnoreCase("ASN.1")) 149 throw new IOException("Unknown parameter format " + format) [all...] |
/external/valgrind/main/exp-sgcheck/tests/ |
bad_percentify.c | 35 const HChar* format, 85 const HChar *format, va_list vargs ) 90 ( add_to__printf_buf, b, format, vargs ); 97 const HChar *format, va_list vargs ) 102 ret = vprintf_to_buf(&myprintf_buf, format, vargs); 113 UInt VG_(vprintf) ( const HChar *format, va_list vargs ) 115 return vprintf_WRK( &VG_(log_output_sink), format, vargs ); 119 UInt VG_(printf) ( const HChar *format, ... ) 123 va_start(vargs, format); 124 ret = VG_(vprintf)(format, vargs) [all...] |
/external/valgrind/main/coregrind/ |
m_options.c | 129 Char* VG_(expand_file_name)(Char* option_name, Char* format) 138 if (VG_STREQ(format, "")) { 144 // If 'format' starts with a '~', abort -- the user probably expected the 148 if (format[0] == '~') { 159 // If 'format' starts with a '/', do not prefix with startup dir. 160 if (format[0] != '/') { 165 len = j + VG_(strlen)(format) + 10; 167 if (format[0] != '/') { 178 while (format[i]) { 179 if (format[i] != '%') [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...] |
/external/icu4c/i18n/unicode/ |
smpdtfmt.h | 31 * \brief C++ API: Format and parse dates in a language-independent manner. 63 * Date/Time format syntax: 65 * The date/time format is specified by means of a string time pattern. In this 113 * The count of pattern letters determine the format. 141 * Format Pattern Result 159 * // Format the current time. 166 * formatter->format( currentTime_1, dateString, fp ); 176 * marker 'a' is left out from the format pattern while the "hour in am/pm" 205 * parsed specially. For example, the format "HHmmss" parses the input text 220 * There is one common number format to handle all the numbers; the digit coun 1242 SimpleDateFormat::format(const Formattable& obj, function in class:SimpleDateFormat 1251 SimpleDateFormat::format(const Formattable& obj, function in class:SimpleDateFormat 1262 SimpleDateFormat::format(const Formattable& obj, function in class:SimpleDateFormat 1273 SimpleDateFormat::format(UDate date, function in class:SimpleDateFormat 1282 SimpleDateFormat::format(UDate date, function in class:SimpleDateFormat 1292 SimpleDateFormat::format(UDate date, UnicodeString& appendTo) const { function in class:SimpleDateFormat [all...] |
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
DateFormatTest.java | 34 DateFormat format = DateFormat.getInstance(); local 35 DateFormat clone = (DateFormat) format.clone(); 36 assertTrue("Clone not equal", format.equals(clone)); 38 assertTrue("Clone shares NumberFormat", !format.equals(clone)); 56 f1.format(new Date()).getClass() == String.class); 65 DateFormat format = DateFormat.getInstance(); local 66 Calendar cal1 = format.getCalendar(); 67 Calendar cal2 = format.getCalendar(); 82 f2.format(new Date()).getClass() == String.class); 100 f2.format(new Date()).getClass() == String.class) 315 DateFormat format = DateFormat.getInstance(); local 434 DateFormat format = DateFormat.getInstance(); local 444 DateFormat format = DateFormat.getInstance(); local 454 DateFormat format = DateFormat.getInstance(); local [all...] |
/bootable/recovery/minadbd/ |
utils.h | 56 char* buff_add (char* buff, char* buffEnd, const char* format, ... );
|
/cts/tests/src/android/text/format/cts/ |
LocaleUtils.java | 17 package android.text.format.cts;
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaCodecTest.java | 50 * <br> calling createInputSurface() with a non-Surface color format throws exception 53 MediaFormat format = createMediaFormat(); local 57 // Replace color format with something that isn't COLOR_FormatSurface. 60 format.setInteger(MediaFormat.KEY_COLOR_FORMAT, colorFormat); 70 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); 104 MediaFormat format = createMediaFormat(); local 110 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); 152 MediaFormat format = createMediaFormat(); local 158 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); 186 MediaFormat format = createMediaFormat() local 229 MediaFormat format = MediaFormat.createVideoFormat(MIME_TYPE, WIDTH, HEIGHT); local [all...] |
/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/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/ |
TestCaseOutputAST.java | 54 return String.format(" -> %s", treeString);
|
TestCaseOutputReturn.java | 39 return String.format(" returns [%s]", script);
|
TestCaseOutputStdOut.java | 43 return String.format(" -> \"%s\"", script);
|
/external/chromium/net/disk_cache/ |
trace.h | 36 void Trace(const char* format, ...);
|