Home | History | Annotate | Download | only in javascript

Lines Matching refs:CFX_WideString

335 	CFX_WideString swMsg = L"";

336 CFX_WideString swTitle = L"";
349 swMsg = CJS_Value(isolate,pValue,VT_unknown).operator CFX_WideString();
352 swTitle = CJS_Value(isolate, pValue,VT_unknown).operator CFX_WideString();
376 swMsg += (*pValue).operator CFX_WideString();
516 CFX_WideString script = params.size() > 0 ? (FX_LPCWSTR)(params[0].operator CFX_WideString()) : (FX_LPCWSTR)L"";
565 CFX_WideString script = params.size() > 0 ? (FX_LPCWSTR)(params[0].operator CFX_WideString()) : (FX_LPCWSTR)L"";
724 void app::RunJsScript(CJS_Runtime* pRuntime,const CFX_WideString& wsScript)
733 CFX_WideString wtInfo;
769 CFX_WideString cTo = L"";
770 CFX_WideString cCc = L"";
771 CFX_WideString cBcc = L"";
772 CFX_WideString cSubject = L"";
773 CFX_WideString cMsg = L"";
778 cTo = params.size()>=2?(const wchar_t*)(FX_LPCWSTR)params[1].operator CFX_WideString():L"";
779 cCc = params.size()>=3?(const wchar_t*)(FX_LPCWSTR)params[2].operator CFX_WideString():L"";
780 cBcc = params.size()>=4?(const wchar_t*)(FX_LPCWSTR)params[3].operator CFX_WideString():L"";
781 cSubject = params.size()>=5?(const wchar_t*)(FX_LPCWSTR)params[4].operator CFX_WideString():L"";
782 cMsg = params.size()>=6?(const wchar_t*)(FX_LPCWSTR)params[5].operator CFX_WideString():L"";
793 cTo = CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue)).operator CFX_WideString();
796 cCc = CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue)).operator CFX_WideString();
799 cBcc = CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue)).operator CFX_WideString();
802 cSubject = CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue)).operator CFX_WideString();
805 cMsg = CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue)).operator CFX_WideString();
835 CFX_WideString swURL = params[0].operator CFX_WideString();
930 CFX_WideString wsFileNameInit = CFX_WideString::FromLocal(cFilenameInit);
931 CFX_WideString wsFSInit = CFX_WideString::FromLocal(cFSInit);
932 CFX_WideString wsFilePath = pApp->JS_appbrowseForDoc(bSave, wsFileNameInit);
943 JS_PutObjectString(isolate,pRetObj, L"cFS", CFX_WideString::FromLocal(cFSInit.GetBuffer(cFSInit.GetLength())));
947 JS_PutObjectString(isolate,pRetObj, L"cFS", CFX_WideString::FromLocal("DOS"));
955 CFX_WideString app::SysPathToPDFPath(const CFX_WideString& sOldPath)
957 CFX_WideString sRet = L"/";
981 CFX_WideString app::PDFPathToSysPath(const CFX_WideString& sOldPath)
984 CFX_WideString strOPath = sOldPath;
1003 CFX_WideString app::RelativePathToSysPath(const CFX_WideString& sOldPath, const CFX_WideString& sFilePath)
1032 CFX_WideString swQuestion = L"";
1033 CFX_WideString swLabel = L"";
1035 CFX_WideString swTitle = L"Foxit";
1037 CFX_WideString swTitle = L"PDF";
1039 CFX_WideString swDefault = L"";
1040 CFX_WideString swResponse = L"";
1051 swQuestion = CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue)).operator CFX_WideString();
1054 swTitle = CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue)).operator CFX_WideString();
1057 swDefault = CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue)).operator CFX_WideString();
1060 swLabel = CJS_Value(isolate,pValue,GET_VALUE_TYPE(pValue)).operator CFX_WideString();
1117 swResponse = CFX_WideString::FromUTF16LE((unsigned short*)pBuff, nLength);