Home | History | Annotate | Download | only in javascript

Lines Matching full:cformat

274 		std::basic_string<wchar_t> cFormat = (wchar_t*)(FX_LPCWSTR)p1.operator CFX_WideString();		

293 while((iEnd = cFormat.find((CFX_WideString)fcTable[iIndex].lpszJSMark, iStart)) != -1)
295 cFormat.replace(iEnd, FXSYS_wcslen(fcTable[iIndex].lpszJSMark), (CFX_WideString)fcTable[iIndex].lpszCppMark);
316 //CString strFormat = cppTm.Format(cFormat.c_str());
333 //cFormat = strFormat.GetBuffer(strFormat.GetLength()+1);
347 while((iEnd = cFormat.find((CFX_WideString)cTableAd[iIndex].lpszJSMark,iStart)) != -1)
351 if (cFormat[iEnd-1] == L'%')
357 cFormat.replace(iEnd, FXSYS_wcslen(cTableAd[iIndex].lpszJSMark), tszValue);
364 // CString strFormat = cppTm.Format(cFormat.c_str());
366 strFormat = wcsftime(buf, 64, cFormat.c_str(), &time);
367 cFormat = buf;
368 vRet = (FX_LPCWSTR)cFormat.c_str();
377 std::wstring cFormat = cFormat2;
389 while((iEnd = cFormat.find((CFX_WideString)fcTable[iIndex].lpszJSMark,iStart)) != -1)
391 cFormat.replace(iEnd,FXSYS_wcslen(fcTable[iIndex].lpszJSMark), (CFX_WideString)fcTable[iIndex].lpszCppMark);
412 //CString strFormat = cppTm.Format(cFormat.c_str());
429 //cFormat = strFormat.GetBuffer(strFormat.GetLength()+1);
443 while((iEnd = cFormat.find((CFX_WideString)cTableAd[iIndex].lpszJSMark,iStart)) != -1)
447 if (cFormat[iEnd-1] == L'%')
453 cFormat.replace(iEnd,FXSYS_wcslen(cTableAd[iIndex].lpszJSMark),tszValue);
460 // CString strFormat = cppTm.Format(cFormat.c_str());
462 strFormat = wcsftime(buf, 64, cFormat.c_str(), &time);
463 cFormat = buf;
464 cPurpose = cFormat;
474 std::string cFormat = (FX_LPCSTR)CFX_ByteString::FromUnicode(sFormat);
477 printx(cFormat,cSource,cDest);
482 void util::printx(const std::string &cFormat,const std::string &cSource2,std::string &cPurpose)
490 for(int iIndex = 0; iIndex < (int)cFormat.size() && itSource<iSize; iIndex++)
492 char letter = cFormat[iIndex];