Home
last modified time | relevance | path

Searched refs:strBuf (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/test/perf/howExpensiveIs/
DhowExpensiveIs.cpp442 char strBuf[200]; in warmup() local
443 u_strToUTF8(strBuf,200,NULL,buf,trial+1,&setupStatus); in warmup()
445 fFile,fLine,getName(),strBuf,fCStr, u_errorName(setupStatus)); in warmup()
566 char strBuf[200]; in warmup() local
567 u_strToUTF8(strBuf,200,NULL,buf,trial+1,&setupStatus); in warmup()
569 fFile,fLine,getName(),strBuf,trial,fCStr,fLen, u_errorName(setupStatus)); in warmup()
657 char strBuf[200]; in warmup() local
658 u_strToUTF8(strBuf,200,NULL,buf.getTerminatedBuffer(),buf.length()+1,&setupStatus); in warmup()
660 fFile,fLine,getName(),strBuf,buf.length(),fCStr,fLen, u_errorName(setupStatus)); in warmup()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DSelectFormatAPITest.java145 StringBuffer strBuf = new StringBuffer("AppendHere-"); in TestFormat() local
148 , (selFmt1.format("other", strBuf, new FieldPosition(0))).toString()); in TestFormat()
DNumberFormatTest.java674 …String strBuf = curFmt.format(new CurrencyAmount(new Float(1234.56), Currency.getInstance("USD"))); in TestCurrency() local
677 CurrencyAmount parsedVal = (CurrencyAmount)curFmt.parseObject(strBuf); in TestCurrency()
752 String strBuf = numFmt.format(numberToBeFormat); in TestCurrencyIsoPluralFormat() local
760 if (!strBuf.equals(formatResult)) { in TestCurrencyIsoPluralFormat()
761 …Result.length() + "): \"" + formatResult + "\", actual(" + strBuf.length() + "): \"" + strBuf + "\… in TestCurrencyIsoPluralFormat()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DSelectFormatAPITest.java148 StringBuffer strBuf = new StringBuffer("AppendHere-"); in TestFormat() local
151 , (selFmt1.format("other", strBuf, new FieldPosition(0))).toString()); in TestFormat()
DNumberFormatTest.java677 …String strBuf = curFmt.format(new CurrencyAmount(new Float(1234.56), Currency.getInstance("USD"))); in TestCurrency() local
680 CurrencyAmount parsedVal = (CurrencyAmount)curFmt.parseObject(strBuf); in TestCurrency()
755 String strBuf = numFmt.format(numberToBeFormat); in TestCurrencyIsoPluralFormat() local
763 if (!strBuf.equals(formatResult)) { in TestCurrencyIsoPluralFormat()
764 …Result.length() + "): \"" + formatResult + "\", actual(" + strBuf.length() + "): \"" + strBuf + "\… in TestCurrencyIsoPluralFormat()
/external/pdfium/fxjs/
Dcfxjse_formcalc_context.cpp4499 std::ostringstream strBuf; in TrillionUS() local
4530 strBuf << pCapUnits[pData[iIndex] - '0']; in TrillionUS()
4531 strBuf << pComm[0]; in TrillionUS()
4534 strBuf << pCapUnits[pData[iIndex + 2] - '0']; in TrillionUS()
4537 strBuf << pLastTens[pData[iIndex + 1] - '2']; in TrillionUS()
4538 strBuf << "-"; in TrillionUS()
4539 strBuf << pUnits[pData[iIndex + 2] - '0']; in TrillionUS()
4541 strBuf << pTens[pData[iIndex + 2] - '0']; in TrillionUS()
4543 strBuf << pCapUnits[pData[iIndex + 2] - '0']; in TrillionUS()
4549 strBuf << pCapUnits[pData[iIndex + 1] - '0']; in TrillionUS()
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_misc.cpp1580 char strBuf[1024]; in CallPrint() local
1581 vsnprintf_s(strBuf, _TRUNCATE, fmt, args); in CallPrint()
1582 OutputDebugString(strBuf); in CallPrint()
/external/icu/icu4c/source/test/intltest/
Dnumfmtst.cpp3952 UnicodeString strBuf; in TestCurrencyIsoPluralFormat() local
3953 numFmt->format(numberToBeFormat, strBuf); in TestCurrencyIsoPluralFormat()
3958 if (strBuf.compare(formatResult)) { in TestCurrencyIsoPluralFormat()
3959 errln("FAIL: Expected " + formatResult + " actual: " + strBuf); in TestCurrencyIsoPluralFormat()
4064 UnicodeString strBuf; in TestCurrencyParsing() local
4065 numFmt->format(numberToBeFormat, strBuf); in TestCurrencyParsing()
4100 errln((UnicodeString)" round-trip would be: " + strBuf); in TestCurrencyParsing()