Searched defs:fmt1 (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtmsgfmt.cpp1373 MessageFormat* fmt1 = new MessageFormat( formatStr, status ); local
1374 MessageFormat* fmt2 = new MessageFormat( *fmt1 );
1378 if (fmt1 == NULL) it_err("testCopyConstructor2: (fmt1 != NULL)");
1380 result = fmt1->format( &fargs, 1, resultStr, fp, status );
1384 fmt3 = (MessageFormat*) fmt1->clone();
1390 result = fmt1->format( &fargs, 1, resultStr, fp, status );
1394 delete fmt1;
H A Dtzregts.cpp929 DateFormat* fmt1 = new SimpleDateFormat(UnicodeString("z"), status); local
934 fmt1->setTimeZone(*z1); // Format uses standard zone
964 "DateFormat.format(std)/std zone", fmt1->format(std, i), "GMT+01:30",
965 "DateFormat.format(dst)/std zone", fmt1->format(dst, j), "GMT+01:30",
977 delete fmt1;
H A Dnumrgts.cpp1672 DecimalFormat *fmt1 = new DecimalFormat(pattern, *symbols, status); local
1677 result1 = fmt1->format(1.111, result1, pos);
1712 const UChar *currency = fmt1->getCurrency();
1738 delete fmt1;
H A Ddtfmttst.cpp3124 SimpleDateFormat *fmt1 = new SimpleDateFormat(UnicodeString("y-M-d"), Locale("ar"), status); local
3129 str1 = fmt1->format(dt1, str1);
3132 UDate dt11 = fmt1->parse(str1, status);
3136 str11 = fmt1->format(dt11, str11);
3143 delete fmt1;
3366 SimpleDateFormat *fmt1 = new SimpleDateFormat(UnicodeString("GGG yyyy-MM-dd'T'HH:mm:ss'Z"), status); local
3374 UDate dt1 = fmt1->parse(in, status);
3379 out = fmt1->format(dt1, out);
3389 delete fmt1;
H A Dnumfmtst.cpp989 DecimalFormat fmt1(UnicodeString("0.###E0"), US, status);
994 expect2(fmt1, n, "1.234E3");
996 expect(fmt1, "1.234E+3", n); // Either format should parse "E+3"
2681 NumberFormat* fmt1= NumberFormat::createInstance(loc1, ec); local
2707 if (U_SUCCESS(ec) && fmt1 != NULL && fmt2 != NULL && fmt3 != NULL &&
2709 expect2(*fmt1, 1234.567, CharsToUnicodeString("\\u0E51,\\u0E52\\u0E53\\u0E54.\\u0E55\\u0E56\\u0E57"));
2743 delete fmt1;
/external/icu4c/test/intltest/
H A Dtmsgfmt.cpp1410 MessageFormat* fmt1 = new MessageFormat( formatStr, status ); local
1415 if (fmt1 == NULL) {
1416 it_err("testCopyConstructor2: (fmt1 != NULL)");
1420 fmt2 = new MessageFormat( *fmt1 );
1421 result = fmt1->format( &fargs, 1, resultStr, fp, status );
1428 fmt3 = (MessageFormat*) fmt1->clone();
1440 result = fmt1->format( &fargs, 1, resultStr, fp, status );
1446 delete fmt1;
H A Dtzregts.cpp933 DateFormat* fmt1 = new SimpleDateFormat(UnicodeString("z"), status); local
938 fmt1->setTimeZone(*z1); // Format uses standard zone
968 "DateFormat.format(std)/std zone", fmt1->format(std, i), "GMT+1:30",
969 "DateFormat.format(dst)/std zone", fmt1->format(dst, j), "GMT+1:30",
981 delete fmt1;
H A Dnumrgts.cpp1676 DecimalFormat *fmt1 = new DecimalFormat(pattern, *symbols, status); local
1681 result1 = fmt1->format(1.111, result1, pos);
1716 const UChar *currency = fmt1->getCurrency();
1742 delete fmt1;
H A Ddtfmttst.cpp3416 SimpleDateFormat *fmt1 = new SimpleDateFormat(UnicodeString("y-M-d"), Locale("ar"), status); local
3421 str1 = fmt1->format(dt1, str1);
3424 UDate dt11 = fmt1->parse(str1, status);
3428 str11 = fmt1->format(dt11, str11);
3435 delete fmt1;
3727 SimpleDateFormat *fmt1 = new SimpleDateFormat(UnicodeString("GGG yyyy-MM-dd'T'HH:mm:ss'Z"), status); local
3730 if (fmt1 != NULL) {
3731 delete fmt1;
3740 UDate dt1 = fmt1->parse(in, status);
3745 out = fmt1
[all...]

Completed in 858 milliseconds