Index: xfa/fxfa/fm2js/xfa_fm2jscontext.cpp |
diff --git a/xfa/fxfa/fm2js/xfa_fm2jscontext.cpp b/xfa/fxfa/fm2js/xfa_fm2jscontext.cpp |
index 174596992752531118202ebe3cab043405179cbb..e778d429948df19ebcaa50d4e3e25203666f74fe 100644 |
--- a/xfa/fxfa/fm2js/xfa_fm2jscontext.cpp |
+++ b/xfa/fxfa/fm2js/xfa_fm2jscontext.cpp |
@@ -502,7 +502,7 @@ void CXFA_FM2JSContext::Abs(CFXJSE_Value* pThis, |
CFXJSE_Arguments& args) { |
if (args.GetLength() != 1) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Abs"); |
return; |
@@ -532,7 +532,7 @@ void CXFA_FM2JSContext::Avg(CFXJSE_Value* pThis, |
} |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
uint32_t uCount = 0; |
FX_DOUBLE dSum = 0.0; |
@@ -603,7 +603,7 @@ void CXFA_FM2JSContext::Ceil(CFXJSE_Value* pThis, |
CFXJSE_Arguments& args) { |
if (args.GetLength() != 1) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Ceil"); |
return; |
@@ -624,7 +624,7 @@ void CXFA_FM2JSContext::Count(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
int32_t iCount = 0; |
for (int32_t i = 0; i < args.GetLength(); i++) { |
@@ -687,7 +687,7 @@ void CXFA_FM2JSContext::Floor(CFXJSE_Value* pThis, |
CFXJSE_Arguments& args) { |
if (args.GetLength() != 1) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Floor"); |
return; |
@@ -708,7 +708,7 @@ void CXFA_FM2JSContext::Max(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
uint32_t uCount = 0; |
FX_DOUBLE dMaxValue = 0.0; |
@@ -790,7 +790,7 @@ void CXFA_FM2JSContext::Min(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
uint32_t uCount = 0; |
FX_DOUBLE dMinValue = 0.0; |
@@ -891,7 +891,7 @@ void CXFA_FM2JSContext::Mod(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
if (args.GetLength() == 2) { |
std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); |
@@ -978,7 +978,7 @@ void CXFA_FM2JSContext::Round(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
int32_t argc = args.GetLength(); |
uint8_t uPrecision = 0; |
@@ -1084,7 +1084,7 @@ void CXFA_FM2JSContext::Sum(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
int32_t argc = args.GetLength(); |
uint32_t uCount = 0; |
@@ -1177,7 +1177,7 @@ void CXFA_FM2JSContext::Date(CFXJSE_Value* pThis, |
FXJSE_Value_SetInteger(args.GetReturnValue(), dDays); |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Date"); |
} |
@@ -1232,7 +1232,7 @@ void CXFA_FM2JSContext::Date2Num(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Date2Num"); |
} |
@@ -1277,7 +1277,7 @@ void CXFA_FM2JSContext::DateFmt(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Date2Num"); |
} |
@@ -1299,7 +1299,7 @@ void CXFA_FM2JSContext::IsoDate2Num(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"IsoDate2Num"); |
} |
@@ -1310,7 +1310,7 @@ void CXFA_FM2JSContext::IsoTime2Num(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 1) { |
std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); |
if (ValueIsNull(pThis, argOne.get())) { |
@@ -1401,7 +1401,7 @@ void CXFA_FM2JSContext::LocalDateFmt(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"LocalDateFmt"); |
} |
@@ -1446,7 +1446,7 @@ void CXFA_FM2JSContext::LocalTimeFmt(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"LocalTimeFmt"); |
} |
@@ -1595,7 +1595,7 @@ void CXFA_FM2JSContext::Num2Date(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Num2Date"); |
} |
@@ -1651,7 +1651,7 @@ void CXFA_FM2JSContext::Num2GMTime(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Num2GMTime"); |
} |
@@ -1707,7 +1707,7 @@ void CXFA_FM2JSContext::Num2Time(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Num2Time"); |
} |
@@ -1728,7 +1728,7 @@ void CXFA_FM2JSContext::Time(CFXJSE_Value* pThis, |
((iGMHour * 3600 + iGMMin * 60 + iGMSec) * 1000)); |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Time"); |
} |
@@ -1769,7 +1769,7 @@ void CXFA_FM2JSContext::Time2Num(CFXJSE_Value* pThis, |
} |
if (!bFlags) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
CXFA_Document* pDoc = pContext->GetDocument(); |
IFX_LocaleMgr* pMgr = (IFX_LocaleMgr*)pDoc->GetLocalMgr(); |
IFX_Locale* pLocale = nullptr; |
@@ -1826,7 +1826,7 @@ void CXFA_FM2JSContext::Time2Num(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Time2Num"); |
} |
@@ -1871,7 +1871,7 @@ void CXFA_FM2JSContext::TimeFmt(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"TimeFmt"); |
} |
@@ -2209,7 +2209,7 @@ FX_BOOL CXFA_FM2JSContext::Local2IsoDate(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szLocale, |
CFX_ByteString& strIsoDate) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
CXFA_Document* pDoc = pContext->GetDocument(); |
if (!pDoc) { |
return FALSE; |
@@ -2247,7 +2247,7 @@ FX_BOOL CXFA_FM2JSContext::Local2IsoTime(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szLocale, |
CFX_ByteString& strIsoTime) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
CXFA_Document* pDoc = pContext->GetDocument(); |
if (!pDoc) { |
return FALSE; |
@@ -2288,7 +2288,7 @@ FX_BOOL CXFA_FM2JSContext::IsoDate2Local(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szLocale, |
CFX_ByteString& strLocalDate) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
CXFA_Document* pDoc = pContext->GetDocument(); |
if (!pDoc) { |
return FALSE; |
@@ -2328,7 +2328,7 @@ FX_BOOL CXFA_FM2JSContext::IsoTime2Local(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szLocale, |
CFX_ByteString& strLocalTime) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
CXFA_Document* pDoc = pContext->GetDocument(); |
if (!pDoc) { |
return FALSE; |
@@ -2370,7 +2370,7 @@ FX_BOOL CXFA_FM2JSContext::GetGMTTime(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szLocale, |
CFX_ByteString& strGMTTime) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
CXFA_Document* pDoc = pContext->GetDocument(); |
if (!pDoc) { |
return FALSE; |
@@ -2507,7 +2507,7 @@ void CXFA_FM2JSContext::GetLocalDateFormat(CFXJSE_Value* pThis, |
break; |
} |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
CXFA_Document* pDoc = pContext->GetDocument(); |
if (!pDoc) { |
return; |
@@ -2563,7 +2563,7 @@ void CXFA_FM2JSContext::GetLocalTimeFormat(CFXJSE_Value* pThis, |
break; |
} |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
CXFA_Document* pDoc = pContext->GetDocument(); |
if (!pDoc) { |
return; |
@@ -2668,7 +2668,7 @@ void CXFA_FM2JSContext::Apr(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 3) { |
FX_BOOL bFlags = FALSE; |
FX_DOUBLE nPrincipal = 0; |
@@ -2733,7 +2733,7 @@ void CXFA_FM2JSContext::CTerm(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 3) { |
FX_BOOL bFlags = FALSE; |
FX_FLOAT nRate = 0; |
@@ -2771,7 +2771,7 @@ void CXFA_FM2JSContext::FV(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 3) { |
FX_BOOL bFlags = FALSE; |
FX_DOUBLE nAmount = 0; |
@@ -2817,7 +2817,7 @@ void CXFA_FM2JSContext::IPmt(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 5) { |
FX_BOOL bFlags = FALSE; |
FX_FLOAT nPrincpalAmount = 0; |
@@ -2889,7 +2889,7 @@ void CXFA_FM2JSContext::NPV(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
int32_t argc = args.GetLength(); |
if (argc > 2) { |
FX_BOOL bFlags = FALSE; |
@@ -2938,7 +2938,7 @@ void CXFA_FM2JSContext::Pmt(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 3) { |
FX_BOOL bFlags = FALSE; |
FX_FLOAT nPrincipal = 0; |
@@ -2981,7 +2981,7 @@ void CXFA_FM2JSContext::PPmt(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 5) { |
FX_BOOL bFlags = FALSE; |
FX_FLOAT nPrincpalAmount = 0; |
@@ -3054,7 +3054,7 @@ void CXFA_FM2JSContext::PV(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 3) { |
FX_BOOL bFlags = FALSE; |
FX_DOUBLE nAmount = 0; |
@@ -3096,7 +3096,7 @@ void CXFA_FM2JSContext::Rate(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 3) { |
FX_BOOL bFlags = FALSE; |
FX_FLOAT nFuture = 0; |
@@ -3135,7 +3135,7 @@ void CXFA_FM2JSContext::Term(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 3) { |
FX_BOOL bFlags = FALSE; |
FX_FLOAT nMount = 0; |
@@ -3174,7 +3174,7 @@ void CXFA_FM2JSContext::Choose(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
int32_t argc = args.GetLength(); |
if (argc > 1) { |
@@ -3251,7 +3251,7 @@ void CXFA_FM2JSContext::Choose(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Choose"); |
} |
@@ -3267,7 +3267,7 @@ void CXFA_FM2JSContext::Exists(CFXJSE_Value* pThis, |
FXJSE_Value_IsObject(argOne.get())); |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Exists"); |
} |
@@ -3292,7 +3292,7 @@ void CXFA_FM2JSContext::HasValue(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"HasValue"); |
} |
@@ -3321,7 +3321,7 @@ void CXFA_FM2JSContext::Oneof(CFXJSE_Value* pThis, |
FX_Free(parametersValue); |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Oneof"); |
} |
@@ -3360,7 +3360,7 @@ void CXFA_FM2JSContext::Within(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Within"); |
} |
@@ -3381,7 +3381,7 @@ void CXFA_FM2JSContext::If(CFXJSE_Value* pThis, |
bCondition ? argFirstValue.get() : argSecondValue.get()); |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"If"); |
} |
@@ -3392,7 +3392,7 @@ void CXFA_FM2JSContext::Eval(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
if (args.GetLength() == 1) { |
std::unique_ptr<CFXJSE_Value> scriptValue = GetSimpleValue(pThis, args, 0); |
@@ -3429,7 +3429,7 @@ void CXFA_FM2JSContext::Ref(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
if (args.GetLength() == 1) { |
std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); |
@@ -3610,7 +3610,7 @@ void CXFA_FM2JSContext::UnitType(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"UnitType"); |
} |
@@ -3768,7 +3768,7 @@ void CXFA_FM2JSContext::UnitValue(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"UnitValue"); |
} |
@@ -3797,7 +3797,7 @@ void CXFA_FM2JSContext::At(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"At"); |
} |
@@ -3830,7 +3830,7 @@ void CXFA_FM2JSContext::Concat(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Concat"); |
} |
@@ -3874,7 +3874,7 @@ void CXFA_FM2JSContext::Decode(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Decode"); |
} |
@@ -4150,7 +4150,7 @@ void CXFA_FM2JSContext::Encode(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Encode"); |
} |
@@ -4453,7 +4453,7 @@ void CXFA_FM2JSContext::Format(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() >= 2) { |
std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); |
std::unique_ptr<CFXJSE_Value> argTwo = GetSimpleValue(pThis, args, 1); |
@@ -4559,7 +4559,7 @@ void CXFA_FM2JSContext::Left(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Left"); |
} |
@@ -4580,7 +4580,7 @@ void CXFA_FM2JSContext::Len(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Len"); |
} |
@@ -4625,7 +4625,7 @@ void CXFA_FM2JSContext::Lower(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Lower"); |
} |
@@ -4648,7 +4648,7 @@ void CXFA_FM2JSContext::Ltrim(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Ltrim"); |
} |
@@ -4659,7 +4659,7 @@ void CXFA_FM2JSContext::Parse(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 2) { |
std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); |
std::unique_ptr<CFXJSE_Value> argTwo = GetSimpleValue(pThis, args, 1); |
@@ -4851,7 +4851,7 @@ void CXFA_FM2JSContext::Replace(CFXJSE_Value* pThis, |
FXJSE_Value_SetUTF8String(args.GetReturnValue(), resultString.AsStringC()); |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Replace"); |
} |
@@ -4883,7 +4883,7 @@ void CXFA_FM2JSContext::Right(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Right"); |
} |
@@ -4906,7 +4906,7 @@ void CXFA_FM2JSContext::Rtrim(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Rtrim"); |
} |
@@ -4935,7 +4935,7 @@ void CXFA_FM2JSContext::Space(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Space"); |
} |
@@ -5055,7 +5055,7 @@ void CXFA_FM2JSContext::Str(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Str"); |
} |
@@ -5114,7 +5114,7 @@ void CXFA_FM2JSContext::Stuff(CFXJSE_Value* pThis, |
FXJSE_Value_SetUTF8String(args.GetReturnValue(), resultString.AsStringC()); |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Stuff"); |
} |
@@ -5159,7 +5159,7 @@ void CXFA_FM2JSContext::Substr(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Substr"); |
} |
@@ -5183,7 +5183,7 @@ void CXFA_FM2JSContext::Uuid(CFXJSE_Value* pThis, |
FXJSE_Value_SetUTF8String(args.GetReturnValue(), bsUId.AsStringC()); |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Uuid"); |
} |
@@ -5228,7 +5228,7 @@ void CXFA_FM2JSContext::Upper(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"Upper"); |
} |
@@ -5283,7 +5283,7 @@ void CXFA_FM2JSContext::WordNum(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, |
L"WordNum"); |
} |
@@ -5493,7 +5493,7 @@ void CXFA_FM2JSContext::Get(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 1) { |
CXFA_Document* pDoc = pContext->GetDocument(); |
if (!pDoc) { |
@@ -5529,7 +5529,7 @@ void CXFA_FM2JSContext::Post(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
int32_t argc = args.GetLength(); |
if ((argc >= 2) && (argc <= 5)) { |
CXFA_Document* pDoc = pContext->GetDocument(); |
@@ -5588,7 +5588,7 @@ void CXFA_FM2JSContext::Put(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
int32_t argc = args.GetLength(); |
if ((argc == 2) || (argc == 3)) { |
CXFA_Document* pDoc = pContext->GetDocument(); |
@@ -5631,7 +5631,7 @@ void CXFA_FM2JSContext::assign_value_operator(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
if (args.GetLength() == 2) { |
std::unique_ptr<CFXJSE_Value> lValue = args.GetValue(0); |
@@ -5691,7 +5691,7 @@ void CXFA_FM2JSContext::logical_or_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -5713,7 +5713,7 @@ void CXFA_FM2JSContext::logical_and_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -5752,7 +5752,7 @@ void CXFA_FM2JSContext::equality_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -5790,7 +5790,7 @@ void CXFA_FM2JSContext::notequality_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -5800,7 +5800,7 @@ FX_BOOL CXFA_FM2JSContext::fm_ref_equal(CFXJSE_Value* pThis, |
CFXJSE_Arguments& args) { |
FX_BOOL bRet = FALSE; |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
std::unique_ptr<CFXJSE_Value> argFirst = args.GetValue(0); |
std::unique_ptr<CFXJSE_Value> argSecond = args.GetValue(1); |
@@ -5852,7 +5852,7 @@ void CXFA_FM2JSContext::less_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -5887,7 +5887,7 @@ void CXFA_FM2JSContext::lessequal_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -5918,7 +5918,7 @@ void CXFA_FM2JSContext::greater_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -5953,7 +5953,7 @@ void CXFA_FM2JSContext::greaterequal_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -5975,7 +5975,7 @@ void CXFA_FM2JSContext::plus_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -5997,7 +5997,7 @@ void CXFA_FM2JSContext::minus_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -6019,7 +6019,7 @@ void CXFA_FM2JSContext::multiple_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -6029,7 +6029,7 @@ void CXFA_FM2JSContext::divide_operator(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 2) { |
std::unique_ptr<CFXJSE_Value> argFirst = GetSimpleValue(pThis, args, 0); |
std::unique_ptr<CFXJSE_Value> argSecond = GetSimpleValue(pThis, args, 1); |
@@ -6064,7 +6064,7 @@ void CXFA_FM2JSContext::positive_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -6083,7 +6083,7 @@ void CXFA_FM2JSContext::negative_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -6102,7 +6102,7 @@ void CXFA_FM2JSContext::logical_not_operator(CFXJSE_Value* pThis, |
} |
} else { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
pContext->ThrowScriptErrorMessage(XFA_IDS_COMPILER_ERROR); |
} |
} |
@@ -6112,7 +6112,7 @@ void CXFA_FM2JSContext::dot_accessor(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
int32_t argc = args.GetLength(); |
if ((argc == 4) || (argc == 5)) { |
@@ -6261,7 +6261,7 @@ void CXFA_FM2JSContext::dotdot_accessor(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
int32_t argc = args.GetLength(); |
if ((argc == 4) || (argc == 5)) { |
@@ -6405,7 +6405,7 @@ void CXFA_FM2JSContext::eval_translation(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
if (args.GetLength() == 1) { |
std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); |
CFX_ByteString argString; |
@@ -6465,7 +6465,7 @@ void CXFA_FM2JSContext::get_fm_value(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
if (args.GetLength() == 1) { |
std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); |
@@ -6523,7 +6523,7 @@ void CXFA_FM2JSContext::fm_var_filter(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
if (args.GetLength() == 1) { |
std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); |
@@ -6575,7 +6575,7 @@ void CXFA_FM2JSContext::concat_fm_object(CFXJSE_Value* pThis, |
const CFX_ByteStringC& szFuncName, |
CFXJSE_Arguments& args) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
uint32_t iLength = 0; |
int32_t argc = args.GetLength(); |
@@ -6624,7 +6624,7 @@ std::unique_ptr<CFXJSE_Value> CXFA_FM2JSContext::GetSimpleValue( |
CFXJSE_Arguments& args, |
uint32_t index) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
ASSERT(index < (uint32_t)args.GetLength()); |
std::unique_ptr<CFXJSE_Value> argIndex = args.GetValue(index); |
@@ -6662,7 +6662,7 @@ std::unique_ptr<CFXJSE_Value> CXFA_FM2JSContext::GetSimpleValue( |
// static |
FX_BOOL CXFA_FM2JSContext::ValueIsNull(CFXJSE_Value* pThis, CFXJSE_Value* arg) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
FX_BOOL isNull = FALSE; |
if (FXJSE_Value_IsNull(arg)) { |
@@ -6708,7 +6708,7 @@ FX_BOOL CXFA_FM2JSContext::ValueIsNull(CFXJSE_Value* pThis, CFXJSE_Value* arg) { |
int32_t CXFA_FM2JSContext::hvalue_get_array_length(CFXJSE_Value* pThis, |
CFXJSE_Value* arg) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
int32_t iLength = 0; |
if (FXJSE_Value_IsArray(arg)) { |
@@ -6750,7 +6750,7 @@ void CXFA_FM2JSContext::unfoldArgs(CFXJSE_Value* pThis, |
int32_t& iCount, |
int32_t iStart) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
iCount = 0; |
int32_t argc = args.GetLength(); |
@@ -6875,7 +6875,7 @@ FX_BOOL CXFA_FM2JSContext::GetObjectByName( |
const CFX_ByteStringC& szAccessorName) { |
FX_BOOL bFlags = FALSE; |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
CXFA_Document* pDoc = pContext->GetDocument(); |
if (!pDoc) { |
return bFlags; |
@@ -6906,7 +6906,7 @@ int32_t CXFA_FM2JSContext::ResolveObjects(CFXJSE_Value* pThis, |
CFX_WideString wsSomExpression = CFX_WideString::FromUTF8(bsSomExp); |
int32_t iRet = -1; |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
CXFA_Document* pDoc = pContext->GetDocument(); |
if (!pDoc) { |
return iRet; |
@@ -6958,7 +6958,7 @@ void CXFA_FM2JSContext::ParseResolveResult( |
int32_t& iSize, |
FX_BOOL& bAttribute) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
iSize = 0; |
resultValues = nullptr; |
@@ -6999,7 +6999,7 @@ void CXFA_FM2JSContext::ParseResolveResult( |
int32_t CXFA_FM2JSContext::ValueToInteger(CFXJSE_Value* pThis, |
CFXJSE_Value* pValue) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
int32_t iValue = 0; |
if (FXJSE_Value_IsArray(pValue)) { |
@@ -7037,7 +7037,7 @@ int32_t CXFA_FM2JSContext::ValueToInteger(CFXJSE_Value* pThis, |
FX_FLOAT CXFA_FM2JSContext::ValueToFloat(CFXJSE_Value* pThis, |
CFXJSE_Value* arg) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
FX_FLOAT fRet = 0.0f; |
if (FXJSE_Value_IsArray(arg)) { |
@@ -7075,7 +7075,7 @@ FX_FLOAT CXFA_FM2JSContext::ValueToFloat(CFXJSE_Value* pThis, |
FX_DOUBLE CXFA_FM2JSContext::ValueToDouble(CFXJSE_Value* pThis, |
CFXJSE_Value* arg) { |
CXFA_FM2JSContext* pContext = |
- (CXFA_FM2JSContext*)FXJSE_Value_ToObject(pThis, nullptr); |
+ static_cast<CXFA_FM2JSContext*>(FXJSE_Value_ToObject(pThis, nullptr)); |
v8::Isolate* pIsolate = pContext->GetScriptRuntime(); |
FX_DOUBLE dRet = 0; |
if (FXJSE_Value_IsArray(arg)) { |