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

  /external/pdfium/fpdfsdk/src/javascript/
JS_Object.cpp 22 int FXJS_MsgBox(CPDFDoc_Environment* pApp, CPDFSDK_PageView* pPageView, FX_LPCWSTR swMsg, FX_LPCWSTR swTitle, FX_UINT nType, FX_UINT nIcon)
31 nRet = pApp->JS_appAlert(swMsg, swTitle, nType, nIcon);
65 int CJS_EmbedObj::MsgBox(CPDFDoc_Environment* pApp, CPDFSDK_PageView* pPageView,FX_LPCWSTR swMsg,FX_LPCWSTR swTitle,FX_UINT nType,FX_UINT nIcon)
67 return FXJS_MsgBox(pApp, pPageView, swMsg, swTitle, nType, nIcon);
70 void CJS_EmbedObj::Alert(CJS_Context* pContext, FX_LPCWSTR swMsg)
72 CJS_Object::Alert(pContext, swMsg);
137 int CJS_Object::MsgBox(CPDFDoc_Environment* pApp, CPDFSDK_PageView* pPageView, FX_LPCWSTR swMsg, FX_LPCWSTR swTitle, FX_UINT nType, FX_UINT nIcon)
139 return FXJS_MsgBox(pApp, pPageView, swMsg, swTitle, nType, nIcon);
142 void CJS_Object::Alert(CJS_Context* pContext, FX_LPCWSTR swMsg)
150 pApp->JS_appAlert(swMsg, NULL, 0, 3)
    [all...]
app.cpp 317 CFX_WideString swMsg = L"";
331 swMsg = CJS_Value(isolate, pValue, VT_unknown).ToCFXWideString();
343 if (swMsg == L"")
358 swMsg += (*pValue).ToCFXWideString();
360 swMsg += L", ";
374 swMsg = L"true";
376 swMsg = L"false";
382 swMsg = params[0].ToCFXWideString();
392 swMsg = L"true";
394 swMsg = L"false"
    [all...]
PublicMethods.cpp 1542 CFX_WideString swMsg;
1543 swMsg.Format(JSGetStringFromID(pContext, IDS_STRING_JSPARSEDATE).c_str(), sFormat.c_str());
1544 Alert(pContext, swMsg.c_str());
    [all...]
  /external/pdfium/fpdfsdk/include/javascript/
JS_Object.h 35 int MsgBox(CPDFDoc_Environment* pApp, CPDFSDK_PageView* pPageView, FX_LPCWSTR swMsg, FX_LPCWSTR swTitle = NULL, FX_UINT nType = 0, FX_UINT nIcon = 0);
36 void Alert(CJS_Context* pContext, FX_LPCWSTR swMsg);
64 static int MsgBox(CPDFDoc_Environment* pApp, CPDFSDK_PageView* pPageView, FX_LPCWSTR swMsg, FX_LPCWSTR swTitle = NULL, FX_UINT nType = 0,FX_UINT nIcon = 0);
65 static void Alert(CJS_Context* pContext, FX_LPCWSTR swMsg);

Completed in 182 milliseconds