Lines Matching refs:argOne
519 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in Abs() local
520 if (ValueIsNull(pThis, argOne.get())) { in Abs()
525 FX_DOUBLE dValue = ValueToDouble(pThis, argOne.get()); in Abs()
849 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in Mod() local
851 if (argOne->IsNull() || argTwo->IsNull()) { in Mod()
857 FX_DOUBLE dDividend = ExtractDouble(pThis, argOne.get(), &argOneResult); in Mod()
885 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in Round() local
886 if (argOne->IsNull()) { in Round()
892 FX_DOUBLE dValue = ExtractDouble(pThis, argOne.get(), &dValueRet); in Round()
1119 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in IsoDate2Num() local
1120 if (argOne->IsNull()) { in IsoDate2Num()
1126 ValueToUTF8String(argOne.get(), szArgString); in IsoDate2Num()
1140 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in IsoTime2Num() local
1141 if (ValueIsNull(pThis, argOne.get())) { in IsoTime2Num()
1150 ValueToUTF8String(argOne.get(), szArgString); in IsoTime2Num()
2348 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Apr() local
2351 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in Apr()
2357 FX_DOUBLE nPrincipal = ValueToDouble(pThis, argOne.get()); in Apr()
2402 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in CTerm() local
2405 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in CTerm()
2411 FX_FLOAT nRate = ValueToFloat(pThis, argOne.get()); in CTerm()
2434 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in FV() local
2437 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in FV()
2443 FX_DOUBLE nAmount = ValueToDouble(pThis, argOne.get()); in FV()
2475 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in IPmt() local
2480 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in IPmt()
2487 FX_FLOAT nPrincipalAmount = ValueToFloat(pThis, argOne.get()); in IPmt()
2575 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Pmt() local
2578 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in Pmt()
2584 FX_FLOAT nPrincipal = ValueToFloat(pThis, argOne.get()); in Pmt()
2610 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in PPmt() local
2615 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in PPmt()
2622 FX_FLOAT nPrincipalAmount = ValueToFloat(pThis, argOne.get()); in PPmt()
2668 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in PV() local
2671 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in PV()
2677 FX_DOUBLE nAmount = ValueToDouble(pThis, argOne.get()); in PV()
2703 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Rate() local
2706 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in Rate()
2712 FX_FLOAT nFuture = ValueToFloat(pThis, argOne.get()); in Rate()
2735 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Term() local
2738 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in Term()
2744 FX_FLOAT nMount = ValueToFloat(pThis, argOne.get()); in Term()
2768 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in Choose() local
2769 if (ValueIsNull(pThis, argOne.get())) { in Choose()
2774 int32_t iIndex = (int32_t)ValueToFloat(pThis, argOne.get()); in Choose()
2848 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in HasValue() local
2849 if (!argOne->IsString()) { in HasValue()
2850 args.GetReturnValue()->SetInteger(argOne->IsNumber() || in HasValue()
2851 argOne->IsBoolean()); in HasValue()
2855 CFX_ByteString valueStr = argOne->ToString(); in HasValue()
2870 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Oneof() local
2874 if (simpleValueCompare(pThis, argOne.get(), value.get())) { in Oneof()
2892 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Within() local
2893 if (argOne->IsNull()) { in Within()
2900 if (argOne->IsNumber()) { in Within()
2901 FX_FLOAT oneNumber = ValueToFloat(pThis, argOne.get()); in Within()
2912 ValueToUTF8String(argOne.get(), oneString); in Within()
2979 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in Ref() local
2980 if (!argOne->IsArray() && !argOne->IsObject() && !argOne->IsBoolean() && in Ref()
2981 !argOne->IsString() && !argOne->IsNull() && !argOne->IsNumber()) { in Ref()
2986 if (argOne->IsBoolean() || argOne->IsString() || argOne->IsNumber()) { in Ref()
2987 args.GetReturnValue()->Assign(argOne.get()); in Ref()
2996 if (argOne->IsNull()) { in Ref()
3000 } else if (argOne->IsArray()) { in Ref()
3003 argOne->GetObjectProperty("length", lengthValue.get()); in Ref()
3009 argOne->GetObjectPropertyByIdx(1, propertyValue.get()); in Ref()
3010 argOne->GetObjectPropertyByIdx(2, jsObjectValue.get()); in Ref()
3017 } else if (argOne->IsObject()) { in Ref()
3018 values[2]->Assign(argOne.get()); in Ref()
3291 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in At() local
3293 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get())) { in At()
3306 ValueToUTF8String(argOne.get(), stringOne); in At()
3354 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Decode() local
3355 if (ValueIsNull(pThis, argOne.get())) { in Decode()
3361 ValueToUTF8String(argOne.get(), toDecodeString); in Decode()
3368 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Decode() local
3370 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get())) { in Decode()
3376 ValueToUTF8String(argOne.get(), toDecodeString); in Decode()
3621 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Encode() local
3622 if (ValueIsNull(pThis, argOne.get())) { in Encode()
3628 ValueToUTF8String(argOne.get(), toEncodeString); in Encode()
3635 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Encode() local
3637 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get())) { in Encode()
3643 ValueToUTF8String(argOne.get(), toEncodeString); in Encode()
3932 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Format() local
3934 ValueToUTF8String(argOne.get(), szPattern); in Format()
4009 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Left() local
4011 if ((ValueIsNull(pThis, argOne.get())) || in Left()
4018 ValueToUTF8String(argOne.get(), sourceString); in Left()
4032 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Len() local
4033 if (ValueIsNull(pThis, argOne.get())) { in Len()
4039 ValueToUTF8String(argOne.get(), sourceString); in Len()
4054 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Lower() local
4055 if (ValueIsNull(pThis, argOne.get())) { in Lower()
4060 ValueToUTF8String(argOne.get(), argString); in Lower()
4090 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Ltrim() local
4091 if (ValueIsNull(pThis, argOne.get())) { in Ltrim()
4097 ValueToUTF8String(argOne.get(), sourceString); in Ltrim()
4112 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Parse() local
4120 ValueToUTF8String(argOne.get(), szPattern); in Parse()
4243 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Replace() local
4247 if (!ValueIsNull(pThis, argOne.get()) && !ValueIsNull(pThis, argTwo.get())) { in Replace()
4248 ValueToUTF8String(argOne.get(), oneString); in Replace()
4301 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Right() local
4303 if ((ValueIsNull(pThis, argOne.get())) || in Right()
4310 ValueToUTF8String(argOne.get(), sourceString); in Right()
4324 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Rtrim() local
4325 if (ValueIsNull(pThis, argOne.get())) { in Rtrim()
4331 ValueToUTF8String(argOne.get(), sourceString); in Rtrim()
4345 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Space() local
4346 if (argOne->IsNull()) { in Space()
4351 int32_t count = std::max(0, ValueToInteger(pThis, argOne.get())); in Space()
4579 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Uuid() local
4580 iNum = static_cast<int32_t>(ValueToFloat(pThis, argOne.get())); in Uuid()
4600 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Upper() local
4601 if (ValueIsNull(pThis, argOne.get())) { in Upper()
4607 ValueToUTF8String(argOne.get(), argString); in Upper()
4847 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Get() local
4849 ValueToUTF8String(argOne.get(), urlString); in Get()
4881 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Post() local
4882 ValueToUTF8String(argOne.get(), bsURL); in Post()
4939 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Put() local
4940 ValueToUTF8String(argOne.get(), bsURL); in Put()
5352 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in positive_operator() local
5353 if (argOne->IsNull()) { in positive_operator()
5357 args.GetReturnValue()->SetDouble(0.0 + ValueToDouble(pThis, argOne.get())); in positive_operator()
5369 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in negative_operator() local
5370 if (argOne->IsNull()) { in negative_operator()
5374 args.GetReturnValue()->SetDouble(0.0 - ValueToDouble(pThis, argOne.get())); in negative_operator()
5386 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in logical_not_operator() local
5387 if (argOne->IsNull()) { in logical_not_operator()
5392 FX_DOUBLE first = ValueToDouble(pThis, argOne.get()); in logical_not_operator()
5644 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in eval_translation() local
5646 ValueToUTF8String(argOne.get(), argString); in eval_translation()
5675 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in is_fm_object() local
5676 args.GetReturnValue()->SetBoolean(argOne->IsObject()); in is_fm_object()
5688 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in is_fm_array() local
5689 args.GetReturnValue()->SetBoolean(argOne->IsArray()); in is_fm_array()
5702 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in get_fm_value() local
5703 if (argOne->IsArray()) { in get_fm_value()
5707 argOne->GetObjectPropertyByIdx(1, propertyValue.get()); in get_fm_value()
5708 argOne->GetObjectPropertyByIdx(2, jsObjectValue.get()); in get_fm_value()
5719 if (argOne->IsObject()) { in get_fm_value()
5720 GetObjectDefaultValue(argOne.get(), args.GetReturnValue()); in get_fm_value()
5724 args.GetReturnValue()->Assign(argOne.get()); in get_fm_value()
5736 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in get_fm_jsobj() local
5737 if (!argOne->IsArray()) { in get_fm_jsobj()
5738 args.GetReturnValue()->Assign(argOne.get()); in get_fm_jsobj()
5746 argOne->GetObjectProperty("length", lengthValue.get()); in get_fm_jsobj()
5750 argOne->GetObjectPropertyByIdx(2, args.GetReturnValue()); in get_fm_jsobj()
5764 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in fm_var_filter() local
5765 if (!argOne->IsArray()) { in fm_var_filter()
5773 argOne->GetObjectProperty("length", lengthValue.get()); in fm_var_filter()
5778 argOne->GetObjectPropertyByIdx(0, flagsValue.get()); in fm_var_filter()
5799 argOne->GetObjectPropertyByIdx(2, objectValue.get()); in fm_var_filter()
5804 args.GetReturnValue()->Assign(argOne.get()); in fm_var_filter()