Home
last modified time | relevance | path

Searched refs:fmt1 (Results 1 – 19 of 19) sorted by relevance

/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/
DSPrintF.ll12 @fmt1 = constant [3 x i8] c"%s\00" ; <[3 x i8]*> [#uses=1]
25 %fmt1_p = getelementptr [3 x i8]* @fmt1, i32 0, i32 0 ; <i8*> [#uses=2]
/external/icu/icu4c/source/test/intltest/
Dtchcfmt.cpp476 ChoiceFormat fmt1(limits, closures, fmts, 6); in TestClosures() local
489 fmt1.toPattern(str); in TestClosures()
498 if (fmt1 != fmt2) { in TestClosures()
544 ChoiceFormat* FMT[] = { &fmt1, &fmt2 }; in TestClosures()
Dtzregts.cpp933 DateFormat* fmt1 = new SimpleDateFormat(UnicodeString("z"), status); in Test4176686() local
938 fmt1->setTimeZone(*z1); // Format uses standard zone in Test4176686()
968 "DateFormat.format(std)/std zone", fmt1->format(std, i), "GMT+1:30", in Test4176686()
969 "DateFormat.format(dst)/std zone", fmt1->format(dst, j), "GMT+1:30", in Test4176686()
981 delete fmt1; in Test4176686()
Dtmsgfmt.cpp1413 MessageFormat* fmt1 = new MessageFormat( formatStr, status ); in _testCopyConstructor2() local
1418 if (fmt1 == NULL) { in _testCopyConstructor2()
1423 fmt2 = new MessageFormat( *fmt1 ); in _testCopyConstructor2()
1424 result = fmt1->format( &fargs, 1, resultStr, fp, status ); in _testCopyConstructor2()
1431 fmt3 = (MessageFormat*) fmt1->clone(); in _testCopyConstructor2()
1443 result = fmt1->format( &fargs, 1, resultStr, fp, status ); in _testCopyConstructor2()
1449 delete fmt1; in _testCopyConstructor2()
Ddtfmttst.cpp3588 SimpleDateFormat *fmt1 = new SimpleDateFormat(UnicodeString("y-M-d"), Locale("ar"), status); in Test6338() local
3593 str1 = fmt1->format(dt1, str1); in Test6338()
3596 UDate dt11 = fmt1->parse(str1, status); in Test6338()
3600 str11 = fmt1->format(dt11, str11); in Test6338()
3607 delete fmt1; in Test6338()
3900 …SimpleDateFormat *fmt1 = new SimpleDateFormat(UnicodeString("GGG yyyy-MM-dd'T'HH:mm:ss'Z"), status… in TestISOEra() local
3903 if (fmt1 != NULL) { in TestISOEra()
3904 delete fmt1; in TestISOEra()
3913 UDate dt1 = fmt1->parse(in, status); in TestISOEra()
3918 out = fmt1->format(dt1, out); in TestISOEra()
[all …]
Dnumrgts.cpp1694 DecimalFormat *fmt1 = new DecimalFormat(pattern, *symbols, status); in Test4122840() local
1699 result1 = fmt1->format(1.111, result1, pos); in Test4122840()
1734 const UChar *currency = fmt1->getCurrency(); in Test4122840()
1760 delete fmt1; in Test4122840()
Dnumfmtst.cpp1712 DecimalFormat fmt1(UnicodeString("0.###E0"), US, status); in TestExponent() local
1717 expect2(fmt1, n, "1.234E3"); in TestExponent()
1719 expect(fmt1, "1.234E+3", n); // Either format should parse "E+3" in TestExponent()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DBigNumberFormatTest.java33 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US); in TestExponent() local
36 expect(fmt1, n, "1.234E3"); in TestExponent()
38 expect(fmt1, "1.234E3", n); in TestExponent()
39 expect(fmt1, "1.234E+3", n); // Either format should parse "E+3" in TestExponent()
DNumberRegressionTests.java1021 DecimalFormat fmt1 = new DecimalFormat(pattern, symbols); in Test4122840() local
1023 String result1 = fmt1.format(1.111); in Test4122840()
1047 fmt2.setMaximumFractionDigits(fmt1.getMaximumFractionDigits()); in Test4122840()
1048 fmt2.setMinimumFractionDigits(fmt1.getMinimumFractionDigits()); in Test4122840()
1049 fmt2.setRoundingIncrement(fmt1.getRoundingIncrement()); in Test4122840()
DRbnfTest.java113 RuleBasedNumberFormat fmt1 = (RuleBasedNumberFormat)fmt0.clone(); in TestCoverage() local
118 if (!fmt0.equals(fmt1)) { in TestCoverage()
DNumberFormatTest.java1447 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US); in TestExponent() local
1450 expect2(fmt1, n, "1.234E3"); in TestExponent()
1452 expect(fmt1, "1.234E+3", n); // Either format should parse "E+3" in TestExponent()
3846 DecimalFormat fmt1 = new DecimalFormat("#0"); in TestFormatToCharacterIteratorThread() local
3847 DecimalFormat fmt2 = (DecimalFormat)fmt1.clone(); in TestFormatToCharacterIteratorThread()
3852 Thread t1 = new Thread(new FormatCharItrTestThread(fmt1, 1, res1)); in TestFormatToCharacterIteratorThread()
DDateFormatTest.java3976 SimpleDateFormat fmt1 = new SimpleDateFormat("GGG yyyy-MM-dd'T'HH:mm:ss'Z"); in TestISOEra() local
3988 dt1 = fmt1.parse(in); in TestISOEra()
3997 out = fmt1.format(dt1); in TestISOEra()
4779 … DateFormat fmt1 = DateFormat.getDateTimeInstance(fmtCal, dateStylesList[i], DateFormat.DEFAULT); in Test10632() local
4783 String s1 = fmt1.format(testDates[j]); in Test10632()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DBigNumberFormatTest.java34 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US); in TestExponent() local
37 expect(fmt1, n, "1.234E3"); in TestExponent()
39 expect(fmt1, "1.234E3", n); in TestExponent()
40 expect(fmt1, "1.234E+3", n); // Either format should parse "E+3" in TestExponent()
DNumberRegressionTests.java1022 DecimalFormat fmt1 = new DecimalFormat(pattern, symbols); in Test4122840() local
1024 String result1 = fmt1.format(1.111); in Test4122840()
1048 fmt2.setMaximumFractionDigits(fmt1.getMaximumFractionDigits()); in Test4122840()
1049 fmt2.setMinimumFractionDigits(fmt1.getMinimumFractionDigits()); in Test4122840()
1050 fmt2.setRoundingIncrement(fmt1.getRoundingIncrement()); in Test4122840()
DRbnfTest.java114 RuleBasedNumberFormat fmt1 = (RuleBasedNumberFormat)fmt0.clone(); in TestCoverage() local
119 if (!fmt0.equals(fmt1)) { in TestCoverage()
DNumberFormatTest.java1448 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US); in TestExponent() local
1451 expect2(fmt1, n, "1.234E3"); in TestExponent()
1453 expect(fmt1, "1.234E+3", n); // Either format should parse "E+3" in TestExponent()
3847 DecimalFormat fmt1 = new DecimalFormat("#0"); in TestFormatToCharacterIteratorThread() local
3848 DecimalFormat fmt2 = (DecimalFormat)fmt1.clone(); in TestFormatToCharacterIteratorThread()
3853 Thread t1 = new Thread(new FormatCharItrTestThread(fmt1, 1, res1)); in TestFormatToCharacterIteratorThread()
DDateFormatTest.java3977 SimpleDateFormat fmt1 = new SimpleDateFormat("GGG yyyy-MM-dd'T'HH:mm:ss'Z"); in TestISOEra() local
3989 dt1 = fmt1.parse(in); in TestISOEra()
3998 out = fmt1.format(dt1); in TestISOEra()
4780 … DateFormat fmt1 = DateFormat.getDateTimeInstance(fmtCal, dateStylesList[i], DateFormat.DEFAULT); in Test10632() local
4784 String s1 = fmt1.format(testDates[j]); in Test10632()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
DTimeZoneRegressionTest.java859 DateFormat fmt1 = new SimpleDateFormat("z"); in Test4176686() local
860 fmt1.setTimeZone(z1); // Format uses standard zone in Test4176686()
888 "DateFormat.format(std)/std zone", fmt1.format(std), "GMT+1:30", in Test4176686()
889 "DateFormat.format(dst)/std zone", fmt1.format(dst), "GMT+1:30", in Test4176686()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
DTimeZoneRegressionTest.java860 DateFormat fmt1 = new SimpleDateFormat("z"); in Test4176686() local
861 fmt1.setTimeZone(z1); // Format uses standard zone in Test4176686()
889 "DateFormat.format(std)/std zone", fmt1.format(std), "GMT+1:30", in Test4176686()
890 "DateFormat.format(dst)/std zone", fmt1.format(dst), "GMT+1:30", in Test4176686()