Home
last modified time | relevance | path

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

/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DUtil.java110 StringBuilder strBuf = new StringBuilder(); in ReadUtf16StringFromDevice() local
115 strBuf.append(c); in ReadUtf16StringFromDevice()
119 return strBuf.toString(); in ReadUtf16StringFromDevice()
/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.java703 …String strBuf = curFmt.format(new CurrencyAmount(new Float(1234.56), Currency.getInstance("USD"))); in TestCurrency() local
706 CurrencyAmount parsedVal = (CurrencyAmount)curFmt.parseObject(strBuf); in TestCurrency()
781 String strBuf = numFmt.format(numberToBeFormat); in TestCurrencyIsoPluralFormat() local
789 if (!strBuf.equals(formatResult)) { in TestCurrencyIsoPluralFormat()
790 …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.java706 …String strBuf = curFmt.format(new CurrencyAmount(new Float(1234.56), Currency.getInstance("USD"))); in TestCurrency() local
709 CurrencyAmount parsedVal = (CurrencyAmount)curFmt.parseObject(strBuf); in TestCurrency()
784 String strBuf = numFmt.format(numberToBeFormat); in TestCurrencyIsoPluralFormat() local
792 if (!strBuf.equals(formatResult)) { in TestCurrencyIsoPluralFormat()
793 …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.cpp1628 char strBuf[1024]; in CallPrint() local
1629 vsnprintf_s(strBuf, _TRUNCATE, fmt, args); in CallPrint()
1630 OutputDebugStringA(strBuf); in CallPrint()
/external/icu/icu4c/source/test/intltest/
Dnumfmtst.cpp3697 UnicodeString strBuf; in TestCurrencyIsoPluralFormat() local
3698 numFmt->format(numberToBeFormat, strBuf); in TestCurrencyIsoPluralFormat()
3703 if (strBuf.compare(formatResult)) { in TestCurrencyIsoPluralFormat()
3704 errln("FAIL: Expected " + formatResult + " actual: " + strBuf); in TestCurrencyIsoPluralFormat()
3812 UnicodeString strBuf; in TestCurrencyParsing() local
3813 numFmt->format(numberToBeFormat, strBuf); in TestCurrencyParsing()
3818 if (strBuf.compare(formatResult)) { in TestCurrencyParsing()
3819 errln("FAIL: Expected " + formatResult + " actual: " + strBuf); in TestCurrencyParsing()
3848 errln((UnicodeString)" round-trip would be: " + strBuf); in TestCurrencyParsing()