Lines Matching full:cformat
238 std::basic_string<wchar_t> cFormat = p1.ToCFXWideString().c_str();
252 while ((iEnd = cFormat.find(fcTable[i].lpszJSMark, iStart)) != -1) {
253 cFormat.replace(iEnd, FXSYS_wcslen(fcTable[i].lpszJSMark),
295 while ((iEnd = cFormat.find(cTableAd[i].lpszJSMark, iStart)) != -1) {
297 if (cFormat[iEnd - 1] == L'%') {
302 cFormat.replace(iEnd, FXSYS_wcslen(cTableAd[i].lpszJSMark), tszValue);
309 strFormat = wcsftime(buf, 64, cFormat.c_str(), &time);
310 cFormat = buf;
311 vRet = cFormat.c_str();
321 std::wstring cFormat = cFormat2;
330 while ((iEnd = cFormat.find(fcTable[i].lpszJSMark, iStart)) != -1) {
331 cFormat.replace(iEnd, FXSYS_wcslen(fcTable[i].lpszJSMark),
353 // CString strFormat = cppTm.Format(cFormat.c_str());
366 // cFormat = strFormat.GetBuffer(strFormat.GetLength()+1);
376 while ((iEnd = cFormat.find(cTableAd[i].lpszJSMark, iStart)) != -1) {
378 if (cFormat[iEnd - 1] == L'%') {
383 cFormat.replace(iEnd, FXSYS_wcslen(cTableAd[i].lpszJSMark), tszValue);
390 strFormat = wcsftime(buf, 64, cFormat.c_str(), &time);
391 cFormat = buf;
392 cPurpose = cFormat;
404 std::string cFormat = CFX_ByteString::FromUnicode(sFormat).c_str();
407 printx(cFormat, cSource, cDest);
412 void util::printx(const std::string& cFormat,
421 for (int iIndex = 0; iIndex < (int)cFormat.size() && itSource < iSize;
423 char letter = cFormat[iIndex];