/external/pdfium/xfa/fxfa/fm2js/ |
D | xfa_simpleexpression.cpp | 155 CFX_WideString tempStr(m_wsString); in ToJavaScript() local 156 if (tempStr.GetLength() > 2) { in ToJavaScript() 159 for (int16_t i = 1; i < tempStr.GetLength() - 1; i++) { in ToJavaScript() 160 oneChar = tempStr[i]; in ToJavaScript() 176 javascript << tempStr; in ToJavaScript() 189 CFX_WideString tempStr(m_wsIdentifier); in ToJavaScript() local 190 if (tempStr == L"$") { in ToJavaScript() 191 tempStr = L"this"; in ToJavaScript() 192 } else if (tempStr == L"!") { in ToJavaScript() 193 tempStr = L"xfa.datasets"; in ToJavaScript() [all …]
|
D | xfa_fmparse.cpp | 589 CFX_WideStringC tempStr = m_pToken->m_wstring; in ParsePostExpression() local 617 tempStr); in ParsePostExpression() 643 tempLine, std::move(expr), TOKdot, tempStr, std::move(s)); in ParsePostExpression() 649 line, std::move(expr), TOKdot, tempStr, std::move(s)); in ParsePostExpression() 662 CFX_WideStringC tempStr = m_pToken->m_wstring; in ParsePostExpression() local 671 tempLine, std::move(expr), TOKdotdot, tempStr, std::move(s)); in ParsePostExpression() 677 line, std::move(expr), TOKdotdot, tempStr, std::move(s)); in ParsePostExpression() 690 CFX_WideStringC tempStr = m_pToken->m_wstring; in ParsePostExpression() local 699 tempLine, std::move(expr), TOKdotscream, tempStr, std::move(s)); in ParsePostExpression() 705 line, std::move(expr), TOKdotscream, tempStr, std::move(s)); in ParsePostExpression()
|
/external/icu/icu4c/source/test/iotest/ |
D | iotest.cpp | 209 UnicodeString tempStr; in DataDrivenPrintf() local 245 tempStr=testCase->getString("format", errorCode); in DataDrivenPrintf() 246 tempStr.extract(format, UPRV_LENGTHOF(format), errorCode); in DataDrivenPrintf() 247 tempStr=testCase->getString("result", errorCode); in DataDrivenPrintf() 248 tempStr.extract(expectedResult, UPRV_LENGTHOF(expectedResult), errorCode); in DataDrivenPrintf() 249 tempStr=testCase->getString("argument", errorCode); in DataDrivenPrintf() 250 tempStr.extract(argument, UPRV_LENGTHOF(argument), errorCode); in DataDrivenPrintf() 374 UnicodeString tempStr; in DataDrivenScanf() local 410 tempStr=testCase->getString("format", errorCode); in DataDrivenScanf() 411 tempStr.extract(format, UPRV_LENGTHOF(format), errorCode); in DataDrivenScanf() [all …]
|
D | stream.cpp | 100 string tempStr = outTestStream.str(); in TestStream() local 101 const char *testStreamBuf = tempStr.c_str(); in TestStream() 140 tempStr = outFormatStream.str(); in TestStream() 141 const char *testFormatStreamBuf = tempStr.c_str(); in TestStream()
|
/external/pdfium/xfa/fxbarcode/oned/ |
D | BC_OnedUPCAWriter.cpp | 138 CFX_ByteString tempStr = str.Mid(1, 5); in ShowChars() local 145 iLen = tempStr.GetLength(); in ShowChars() 189 CalcTextInfo(tempStr, pCharPos + 1, m_pFont, strWidth, iFontSize, blank); in ShowChars() 210 tempStr = str.Mid(6, 5); in ShowChars() 211 iLen = tempStr.GetLength(); in ShowChars() 212 CalcTextInfo(tempStr, pCharPos + 6, m_pFont, strWidth, iFontSize, blank); in ShowChars() 233 tempStr = str.Mid(0, 1); in ShowChars() 234 iLen = tempStr.GetLength(); in ShowChars() 239 CalcTextInfo(tempStr, pCharPos, m_pFont, strWidth, iFontSize, blank); in ShowChars() 257 tempStr = str.Mid(11, 1); in ShowChars() [all …]
|
D | BC_OnedEAN13Writer.cpp | 193 CFX_ByteString tempStr = str.Mid(1, 6); in ShowChars() local 224 iLen = tempStr.GetLength(); in ShowChars() 228 CalcTextInfo(tempStr, pCharPos + 1, m_pFont, (FX_FLOAT)strWidth, iFontSize, in ShowChars() 251 tempStr = str.Mid(7, 6); in ShowChars() 252 iLen = tempStr.GetLength(); in ShowChars() 253 CalcTextInfo(tempStr, pCharPos + 7, m_pFont, (FX_FLOAT)strWidth, iFontSize, in ShowChars() 275 tempStr = str.Mid(0, 1); in ShowChars() 276 iLen = tempStr.GetLength(); in ShowChars() 281 CalcTextInfo(tempStr, pCharPos, m_pFont, (FX_FLOAT)strWidth, iFontSize, in ShowChars()
|
D | BC_OnedEAN8Writer.cpp | 185 CFX_ByteString tempStr = str.Mid(0, 4); in ShowChars() local 186 int32_t iLen = tempStr.GetLength(); in ShowChars() 218 CalcTextInfo(tempStr, pCharPos, m_pFont, (FX_FLOAT)strWidth, iFontSize, in ShowChars() 238 tempStr = str.Mid(4, 4); in ShowChars() 239 iLen = tempStr.GetLength(); in ShowChars() 240 CalcTextInfo(tempStr, pCharPos + 4, m_pFont, (FX_FLOAT)strWidth, iFontSize, in ShowChars()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
D | IDNAConformanceTest.java | 250 String tempStr = null; in getInputData() local 255 while ((tempStr = in.readLine()) != null) { in getInputData() 258 if ("=====".equals(tempStr)) in getInputData() 264 if ("".equals(tempStr)) { in getInputData() 272 int postion = tempStr.indexOf(":"); in getInputData() 274 attr = tempStr.substring(0, postion).trim(); in getInputData() 275 body = tempStr.substring(postion + 1).trim(); in getInputData() 282 tempStr = in.readLine(); in getInputData() 283 body += tempStr; in getInputData() 290 if ("=====".equals(tempStr)) { in getInputData()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/ |
D | IDNAConformanceTest.java | 251 String tempStr = null; in getInputData() local 256 while ((tempStr = in.readLine()) != null) { in getInputData() 259 if ("=====".equals(tempStr)) in getInputData() 265 if ("".equals(tempStr)) { in getInputData() 273 int postion = tempStr.indexOf(":"); in getInputData() 275 attr = tempStr.substring(0, postion).trim(); in getInputData() 276 body = tempStr.substring(postion + 1).trim(); in getInputData() 283 tempStr = in.readLine(); in getInputData() 284 body += tempStr; in getInputData() 291 if ("=====".equals(tempStr)) { in getInputData()
|
/external/pdfium/fpdfsdk/ |
D | cpdfsdk_datetime.cpp | 281 char tempStr[32]; in ToPDFDateTimeString() local 282 memset(tempStr, 0, sizeof(tempStr)); in ToPDFDateTimeString() 283 FXSYS_snprintf(tempStr, sizeof(tempStr) - 1, "D:%04d%02u%02u%02u%02u%02u", in ToPDFDateTimeString() 285 dtStr = CFX_ByteString(tempStr); in ToPDFDateTimeString() 290 memset(tempStr, 0, sizeof(tempStr)); in ToPDFDateTimeString() 291 FXSYS_snprintf(tempStr, sizeof(tempStr) - 1, "%02d'%02u'", in ToPDFDateTimeString() 293 dtStr += CFX_ByteString(tempStr); in ToPDFDateTimeString()
|
/external/icu/icu4c/source/test/intltest/ |
D | loctest.cpp | 2352 UnicodeString tempStr, resultStr; in TestCurrencyByDate() local 2374 tempStr.setTo(TMP); in TestCurrencyByDate() 2376 if (resultStr != tempStr) { in TestCurrencyByDate() 2387 tempStr.setTo(TMP); in TestCurrencyByDate() 2389 if (resultStr != tempStr) { in TestCurrencyByDate() 2400 tempStr.setTo(TMP); in TestCurrencyByDate() 2402 if (resultStr != tempStr) { in TestCurrencyByDate() 2414 tempStr.setTo(TMP); in TestCurrencyByDate() 2416 if (resultStr != tempStr) { in TestCurrencyByDate() 2420 tempStr.setTo(TMP); in TestCurrencyByDate() [all …]
|
/external/libjpeg-turbo/java/ |
D | TJBench.java | 138 String qualStr = new String(""), sizeStr, tempStr; in decomp() local 240 tempStr = new String(fileName + "_" + sizeStr + ".bmp"); in decomp() 242 tempStr = new String(fileName + "_" + subName[subsamp] + qualStr + in decomp() 245 saveImage(tempStr, dstBuf, scaledw, scaledh, pf); in decomp() 246 int ndx = tempStr.lastIndexOf('.'); in decomp() 247 tempStr = new String(tempStr.substring(0, ndx) + "-err.bmp"); in decomp() 250 System.out.println("Compression error written to " + tempStr + "."); in decomp() 274 saveImage(tempStr, dstBuf, w, h, pf); in decomp() 407 String tempStr = fileName + "_" + subName[subsamp] + "_" + "Q" + in fullTest() local 409 FileOutputStream fos = new FileOutputStream(tempStr); in fullTest() [all …]
|
D | TJUnitTest.java | 639 String tempStr; in compTest() local 661 tempStr = baseName + "_enc_" + pfStr + "_" + buStr + "_" + in compTest() 663 File file = new File(tempStr); in compTest() 697 tempStr = baseName + "_enc_" + pfStr + "_" + buStr + "_" + in compTest() 699 writeJPEG(dstBuf, size, tempStr); in compTest() 700 System.out.println("Done.\n Result in " + tempStr); in compTest() 709 String pfStr, pfStrLong, tempStr; in decompTest() local 768 tempStr = baseName + "_dec_" + pfStr + "_" + in decompTest() 772 File file = new File(tempStr); in decompTest()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | builder_misc.cpp | 412 std::string tempStr(printStr); in PRINT() local 413 pos = tempStr.find('%', pos); in PRINT() 425 if (toupper(tempStr[pos + 1]) == 'X') in PRINT() 427 tempStr[pos] = '0'; in PRINT() 428 tempStr[pos + 1] = 'x'; in PRINT() 429 tempStr.insert(pos + 2, "%08X "); in PRINT() 441 tempStr.insert(pos, vectorFormatStr); in PRINT() 444 else if ((tempStr[pos + 1] == 'f') && (pContainedType->isFloatTy())) in PRINT() 449 tempStr.insert(pos, std::string("%f ")); in PRINT() 455 else if ((tempStr[pos + 1] == 'd') && (pContainedType->isIntegerTy())) in PRINT() [all …]
|
/external/libvncserver/test/ |
D | tjunittest.c | 242 char tempStr[1024]; unsigned char *srcBuf=NULL; in compTest() local 260 snprintf(tempStr, 1024, "%s_enc_%s_%s_%s_Q%d.jpg", basename, in compTest() 263 writeJPEG(*dstBuf, *dstSize, tempStr); in compTest() 265 printf(" %f ms\n Result in %s\n", t*1000., tempStr); in compTest()
|
/external/icu/icu4c/source/i18n/ |
D | dcfmtsym.cpp | 435 UnicodeString tempStr; in initialize() local 438 uprv_getStaticCurrencyName(curriso, locStr, tempStr, internalStatus); in initialize() 441 fSymbols[kCurrencySymbol] = tempStr; in initialize()
|
/external/libjpeg-turbo/ |
D | tjunittest.c | 399 char tempStr[1024]; unsigned char *srcBuf=NULL, *yuvBuf=NULL; in compTest() local 443 snprintf(tempStr, 1024, "%s_enc_%s_%s_%s_Q%d.jpg", basename, pfStr, buStr, in compTest() 445 writeJPEG(*dstBuf, *dstSize, tempStr); in compTest() 446 printf("Done.\n Result in %s\n", tempStr); in compTest()
|
/external/gptfdisk/ |
D | basicmbr.cc | 1551 string tempStr; in DoMenu() local 1606 tempStr = ReadString(); in DoMenu() 1607 if (IsHex(tempStr)) in DoMenu() 1608 sscanf(tempStr.c_str(), "%x", &hexCode); in DoMenu()
|