HomeSort by relevance Sort by last modified time
    Searched refs:tempStr (Results 1 - 20 of 20) sorted by null

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
IDNAConformanceTest.java 251 String tempStr = null;
256 while ((tempStr = in.readLine()) != null) {
259 if ("=====".equals(tempStr))
265 if ("".equals(tempStr)) {
273 int postion = tempStr.indexOf(":");
275 attr = tempStr.substring(0, postion).trim();
276 body = tempStr.substring(postion + 1).trim();
283 tempStr = in.readLine();
284 body += tempStr;
291 if ("=====".equals(tempStr)) {
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
IDNAConformanceTest.java 250 String tempStr = null;
255 while ((tempStr = in.readLine()) != null) {
258 if ("=====".equals(tempStr))
264 if ("".equals(tempStr)) {
272 int postion = tempStr.indexOf(":");
274 attr = tempStr.substring(0, postion).trim();
275 body = tempStr.substring(postion + 1).trim();
282 tempStr = in.readLine();
283 body += tempStr;
290 if ("=====".equals(tempStr)) {
    [all...]
  /external/pdfium/xfa/fxbarcode/oned/
BC_OnedUPCAWriter.cpp 138 CFX_ByteString tempStr = str.Mid(1, 5);
145 iLen = tempStr.GetLength();
189 CalcTextInfo(tempStr, pCharPos + 1, m_pFont, strWidth, iFontSize, blank);
210 tempStr = str.Mid(6, 5);
211 iLen = tempStr.GetLength();
212 CalcTextInfo(tempStr, pCharPos + 6, m_pFont, strWidth, iFontSize, blank);
233 tempStr = str.Mid(0, 1);
234 iLen = tempStr.GetLength();
239 CalcTextInfo(tempStr, pCharPos, m_pFont, strWidth, iFontSize, blank);
257 tempStr = str.Mid(11, 1)
    [all...]
BC_OnedEAN13Writer.cpp 193 CFX_ByteString tempStr = str.Mid(1, 6);
224 iLen = tempStr.GetLength();
228 CalcTextInfo(tempStr, pCharPos + 1, m_pFont, (FX_FLOAT)strWidth, iFontSize,
251 tempStr = str.Mid(7, 6);
252 iLen = tempStr.GetLength();
253 CalcTextInfo(tempStr, pCharPos + 7, m_pFont, (FX_FLOAT)strWidth, iFontSize,
275 tempStr = str.Mid(0, 1);
276 iLen = tempStr.GetLength();
281 CalcTextInfo(tempStr, pCharPos, m_pFont, (FX_FLOAT)strWidth, iFontSize,
BC_OnedEAN8Writer.cpp 185 CFX_ByteString tempStr = str.Mid(0, 4);
186 int32_t iLen = tempStr.GetLength();
218 CalcTextInfo(tempStr, pCharPos, m_pFont, (FX_FLOAT)strWidth, iFontSize,
238 tempStr = str.Mid(4, 4);
239 iLen = tempStr.GetLength();
240 CalcTextInfo(tempStr, pCharPos + 4, m_pFont, (FX_FLOAT)strWidth, iFontSize,
  /device/google/marlin/camera/usbcamcore/src/
QCameraUsbParm.cpp 178 char tempStr[FILENAME_LENGTH];
215 sprintf(tempStr, "%d", camHal->pictJpegQlty);
216 camHal->qCamParams.set(QCameraParameters::KEY_JPEG_QUALITY, tempStr);
223 sprintf(tempStr, "%d", camHal->thumbnailWidth);
225 tempStr);
226 sprintf(tempStr, "%d", camHal->thumbnailHeight);
228 tempStr);
231 sprintf(tempStr, "%d", camHal->thumbnailJpegQlty);
233 tempStr);
595 char tempStr[FILENAME_LENGTH]
    [all...]
  /hardware/qcom/camera/msm8998/usbcamcore/src/
QCameraUsbParm.cpp 178 char tempStr[FILENAME_LENGTH];
215 sprintf(tempStr, "%d", camHal->pictJpegQlty);
216 camHal->qCamParams.set(QCameraParameters::KEY_JPEG_QUALITY, tempStr);
223 sprintf(tempStr, "%d", camHal->thumbnailWidth);
225 tempStr);
226 sprintf(tempStr, "%d", camHal->thumbnailHeight);
228 tempStr);
231 sprintf(tempStr, "%d", camHal->thumbnailJpegQlty);
233 tempStr);
595 char tempStr[FILENAME_LENGTH]
    [all...]
  /external/pdfium/xfa/fxfa/fm2js/
xfa_simpleexpression.cpp 155 CFX_WideString tempStr(m_wsString);
156 if (tempStr.GetLength() > 2) {
159 for (int16_t i = 1; i < tempStr.GetLength() - 1; i++) {
160 oneChar = tempStr[i];
176 javascript << tempStr;
189 CFX_WideString tempStr(m_wsIdentifier);
190 if (tempStr == L"$") {
191 tempStr = L"this";
192 } else if (tempStr == L"!") {
193 tempStr = L"xfa.datasets"
    [all...]
xfa_fmparse.cpp 589 CFX_WideStringC tempStr = m_pToken->m_wstring;
617 tempStr);
643 tempLine, std::move(expr), TOKdot, tempStr, std::move(s));
649 line, std::move(expr), TOKdot, tempStr, std::move(s));
662 CFX_WideStringC tempStr = m_pToken->m_wstring;
671 tempLine, std::move(expr), TOKdotdot, tempStr, std::move(s));
677 line, std::move(expr), TOKdotdot, tempStr, std::move(s));
690 CFX_WideStringC tempStr = m_pToken->m_wstring;
699 tempLine, std::move(expr), TOKdotscream, tempStr, std::move(s));
705 line, std::move(expr), TOKdotscream, tempStr, std::move(s))
    [all...]
  /external/icu/icu4c/source/test/iotest/
iotest.cpp 209 UnicodeString tempStr;
245 tempStr=testCase->getString("format", errorCode);
246 tempStr.extract(format, UPRV_LENGTHOF(format), errorCode);
247 tempStr=testCase->getString("result", errorCode);
248 tempStr.extract(expectedResult, UPRV_LENGTHOF(expectedResult), errorCode);
249 tempStr=testCase->getString("argument", errorCode);
250 tempStr.extract(argument, UPRV_LENGTHOF(argument), errorCode);
374 UnicodeString tempStr;
410 tempStr=testCase->getString("format", errorCode);
411 tempStr.extract(format, UPRV_LENGTHOF(format), errorCode)
    [all...]
stream.cpp 100 string tempStr = outTestStream.str();
101 const char *testStreamBuf = tempStr.c_str();
140 tempStr = outFormatStream.str();
141 const char *testFormatStreamBuf = tempStr.c_str();
  /external/icu/icu4c/source/test/intltest/
loctest.cpp     [all...]
  /external/libjpeg-turbo/java/
TJBench.java 136 String qualStr = new String(""), sizeStr, tempStr;
235 tempStr = new String(fileName + "_" + sizeStr + ".bmp");
237 tempStr = new String(fileName + "_" + subName[subsamp] + qualStr +
240 saveImage(tempStr, dstBuf, scaledw, scaledh, pf);
241 int ndx = tempStr.lastIndexOf('.');
242 tempStr = new String(tempStr.substring(0, ndx) + "-err.bmp");
245 System.out.println("Compression error written to " + tempStr + ".");
269 saveImage(tempStr, dstBuf, w, h, pf);
400 String tempStr = fileName + "_" + subName[subsamp] + "_" + "Q"
    [all...]
TJUnitTest.java 639 String tempStr;
661 tempStr = baseName + "_enc_" + pfStr + "_" + buStr + "_" +
663 File file = new File(tempStr);
697 tempStr = baseName + "_enc_" + pfStr + "_" + buStr + "_" +
699 writeJPEG(dstBuf, size, tempStr);
700 System.out.println("Done.\n Result in " + tempStr);
709 String pfStr, pfStrLong, tempStr;
768 tempStr = baseName + "_dec_" + pfStr + "_" +
772 File file = new File(tempStr);
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
builder_misc.cpp 412 std::string tempStr(printStr);
413 pos = tempStr.find('%', pos);
425 if (toupper(tempStr[pos + 1]) == 'X')
427 tempStr[pos] = '0';
428 tempStr[pos + 1] = 'x';
429 tempStr.insert(pos + 2, "%08X ");
441 tempStr.insert(pos, vectorFormatStr);
444 else if ((tempStr[pos + 1] == 'f') && (pContainedType->isFloatTy()))
449 tempStr.insert(pos, std::string("%f "));
455 else if ((tempStr[pos + 1] == 'd') && (pContainedType->isIntegerTy())
    [all...]
  /external/libvncserver/test/
tjunittest.c 242 char tempStr[1024]; unsigned char *srcBuf=NULL;
260 snprintf(tempStr, 1024, "%s_enc_%s_%s_%s_Q%d.jpg", basename,
263 writeJPEG(*dstBuf, *dstSize, tempStr);
265 printf(" %f ms\n Result in %s\n", t*1000., tempStr);
  /external/icu/icu4c/source/i18n/
dcfmtsym.cpp 435 UnicodeString tempStr;
438 uprv_getStaticCurrencyName(curriso, locStr, tempStr, internalStatus);
441 fSymbols[kCurrencySymbol] = tempStr;
  /external/libjpeg-turbo/
tjunittest.c 399 char tempStr[1024]; unsigned char *srcBuf=NULL, *yuvBuf=NULL;
443 snprintf(tempStr, 1024, "%s_enc_%s_%s_%s_Q%d.jpg", basename, pfStr, buStr,
445 writeJPEG(*dstBuf, *dstSize, tempStr);
446 printf("Done.\n Result in %s\n", tempStr);
  /packages/services/BuiltInPrintService/jni/ipphelper/
ipphelper.c 702 char *tempStr = substring(upper, 1, strlen(upper) - 2);
703 media_dimensions->Upper = atof(tempStr);
704 free(tempStr);
706 tempStr = substring(upper, 1, strlen(upper) - 2);
707 LOGD("getMediaDimensions part4=%s", tempStr);
708 free(tempStr);
    [all...]
  /external/gptfdisk/
basicmbr.cc     [all...]

Completed in 380 milliseconds