Home
last modified time | relevance | path

Searched refs:formatString (Results 1 – 11 of 11) sorted by relevance

/external/google-breakpad/src/common/mac/testing/
DGTMSenTestCase.m62 withDescription:(NSString *)formatString, ... {
65 if (formatString) {
67 va_start(vl, formatString);
69 [[[NSString alloc] initWithFormat:formatString arguments:vl] autorelease];
82 withDescription:(NSString *)formatString, ... {
85 if (formatString) {
87 va_start(vl, formatString);
89 [[[NSString alloc] initWithFormat:formatString arguments:vl] autorelease];
103 withDescription:(NSString *)formatString, ... {
106 if (formatString) {
[all …]
DGTMSenTestCase.h1027 withDescription:(NSString *)formatString, ... NS_FORMAT_FUNCTION(3, 4);
1032 withDescription:(NSString *)formatString, ... NS_FORMAT_FUNCTION(5, 6);
1037 … withDescription:(NSString *)formatString, ... NS_FORMAT_FUNCTION(5, 6);
1043 … withDescription:(NSString *)formatString, ... NS_FORMAT_FUNCTION(6, 7);
1047 withDescription:(NSString *)formatString, ... NS_FORMAT_FUNCTION(4, 5);
1052 withDescription:(NSString *)formatString, ... NS_FORMAT_FUNCTION(5, 6);
/external/clang/test/SemaCXX/
Dprintf-cstr.cpp28 char formatString[] = "non-const %s %s"; in pod_test() local
38 …printf(formatString, hcs, hncs); // expected-warning{{cannot pass object of non-POD type 'HasCStr'… in pod_test()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DLongNameHandler.java52 String formatString = value.getString(); in put() local
53 output.put(plural, formatString); in put()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DLongNameHandler.java48 String formatString = value.getString(); in put() local
49 output.put(plural, formatString); in put()
/external/google-breakpad/src/client/mac/sender/
Dcrash_report_sender.m430 NSString *formatString;
439 formatString = NSLocalizedString(@"countdownMsgMinuteSingular", @"");
441 formatString = NSLocalizedString(@"countdownMsgMinutesPlural", @"");
446 formatString = NSLocalizedString(@"countdownMsgSecondSingular", @"");
448 formatString = NSLocalizedString(@"countdownMsgSecondsPlural", @"");
451 countdownMessage = [NSString stringWithFormat:formatString,
/external/brotli/research/
Dbrotlidump.py484 formatString = '{0}{3}'
487 formatString = '{0}{2}: {3}'
491 formatString = '{0}{1} {2}: {3}-{4}; {3}+{5}={6}'
494 return formatString.format(
1182 if self.NPOSTFIX: formatString = '1{0}{1}{2:0{3}b}{4:+d}'
1183 else: formatString = '1{0}{1}{4:+d}'
1184 return formatString.format(
/external/ImageMagick/coders/
Dmeta.c1713 static void formatString(Image *ofile, const char *s, int len) in formatString() function
1929 formatString( ofile, (char *)str, taglen ); in formatIPTC()
2062 formatString( ofile, (char *)str, taglen ); in formatIPTCfromBuffer()
2189 formatString(ofile, "IPTC", 4); in format8BIM()
2193 formatString(ofile, (char *)str, (ssize_t) count); in format8BIM()
/external/pdfium/fxjs/
Dcfxjse_formcalc_context.cpp1136 ByteString formatString; in Date2Num() local
1143 formatString = ValueToUTF8String(formatValue.get()); in Date2Num()
1158 formatString.AsStringView(), localString.AsStringView()); in Date2Num()
1370 ByteString formatString; in Num2Date() local
1377 formatString = ValueToUTF8String(formatValue.get()); in Num2Date()
1485 formatString.AsStringView(), localString.AsStringView()); in Num2Date()
1511 ByteString formatString; in Num2GMTime() local
1518 formatString = ValueToUTF8String(formatValue.get()); in Num2GMTime()
1532 Num2AllTime(pThis, iTime, formatString.AsStringView(), in Num2GMTime()
1558 ByteString formatString; in Num2Time() local
[all …]
/external/protobuf/conformance/third_party/jsoncpp/
Djsoncpp.cpp4111 char formatString[6]; in valueToString() local
4112 sprintf(formatString, "%%.%dg", precision); in valueToString()
4118 len = snprintf(buffer, sizeof(buffer), formatString, value); in valueToString()
/external/python/cpython2/Misc/
Dcheatsheet545 formatString % args--> evaluates to a string
547 * formatString uses C printf format codes : %, c, s, i, d, u, o, x, X, e, E,