Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/shader_lib/
DDebugOutput.cpp43 char strBuf[1024]; in CallPrint() local
44 vsnprintf_s(strBuf, _TRUNCATE, fmt, args); in CallPrint()
45 OutputDebugStringA(strBuf); in CallPrint()
/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.java724 …String strBuf = curFmt.format(new CurrencyAmount(new Float(1234.56), Currency.getInstance("USD"))); in TestCurrency() local
727 CurrencyAmount parsedVal = (CurrencyAmount)curFmt.parseObject(strBuf); in TestCurrency()
802 String strBuf = numFmt.format(numberToBeFormat); in TestCurrencyIsoPluralFormat() local
810 if (!strBuf.equals(formatResult)) { in TestCurrencyIsoPluralFormat()
811 …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.java727 …String strBuf = curFmt.format(new CurrencyAmount(new Float(1234.56), Currency.getInstance("USD"))); in TestCurrency() local
730 CurrencyAmount parsedVal = (CurrencyAmount)curFmt.parseObject(strBuf); in TestCurrency()
805 String strBuf = numFmt.format(numberToBeFormat); in TestCurrencyIsoPluralFormat() local
813 if (!strBuf.equals(formatResult)) { in TestCurrencyIsoPluralFormat()
814 …Result.length() + "): \"" + formatResult + "\", actual(" + strBuf.length() + "): \"" + strBuf + "\… in TestCurrencyIsoPluralFormat()
/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp1209 std::ostringstream strBuf; in TrillionUS() local
1213 strBuf << pCapUnits[pData[iIndex] - '0']; in TrillionUS()
1214 strBuf << pComm[0]; in TrillionUS()
1217 strBuf << pCapUnits[pData[iIndex + 2] - '0']; in TrillionUS()
1220 strBuf << pLastTens[pData[iIndex + 1] - '2']; in TrillionUS()
1221 strBuf << "-"; in TrillionUS()
1222 strBuf << pUnits[pData[iIndex + 2] - '0']; in TrillionUS()
1224 strBuf << pTens[pData[iIndex + 2] - '0']; in TrillionUS()
1226 strBuf << pCapUnits[pData[iIndex + 2] - '0']; in TrillionUS()
1232 strBuf << pCapUnits[pData[iIndex + 1] - '0']; in TrillionUS()
[all …]
/external/icu/icu4c/source/test/intltest/
Dnumfmtst.cpp3817 UnicodeString strBuf; in TestCurrencyIsoPluralFormat() local
3818 numFmt->format(numberToBeFormat, strBuf); in TestCurrencyIsoPluralFormat()
3823 if (strBuf.compare(formatResult)) { in TestCurrencyIsoPluralFormat()
3824 errln("FAIL: Expected " + formatResult + " actual: " + strBuf); in TestCurrencyIsoPluralFormat()
3932 UnicodeString strBuf; in TestCurrencyParsing() local
3933 numFmt->format(numberToBeFormat, strBuf); in TestCurrencyParsing()
3938 if (strBuf.compare(formatResult)) { in TestCurrencyParsing()
3939 errln("FAIL: Expected " + formatResult + " actual: " + strBuf); in TestCurrencyParsing()
3968 errln((UnicodeString)" round-trip would be: " + strBuf); in TestCurrencyParsing()