• Home
  • Raw
  • Download

Lines Matching refs:argOne

626   std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0);  in Abs()  local
627 if (ValueIsNull(pThis, argOne.get())) { in Abs()
632 double dValue = ValueToDouble(pThis, argOne.get()); in Abs()
954 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in Mod() local
956 if (argOne->IsNull() || argTwo->IsNull()) { in Mod()
962 double dDividend = ExtractDouble(pThis, argOne.get(), &argOneResult); in Mod()
990 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in Round() local
991 if (argOne->IsNull()) { in Round()
997 double dValue = ExtractDouble(pThis, argOne.get(), &dValueRet); in Round()
1210 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in IsoDate2Num() local
1211 if (argOne->IsNull()) { in IsoDate2Num()
1215 ByteString szArgString = ValueToUTF8String(argOne.get()); in IsoDate2Num()
1229 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in IsoTime2Num() local
1230 if (ValueIsNull(pThis, argOne.get())) { in IsoTime2Num()
1237 ByteString szArgString = ValueToUTF8String(argOne.get()); in IsoTime2Num()
2233 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Apr() local
2236 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in Apr()
2242 double nPrincipal = ValueToDouble(pThis, argOne.get()); in Apr()
2286 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in CTerm() local
2289 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in CTerm()
2295 float nRate = ValueToFloat(pThis, argOne.get()); in CTerm()
2317 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in FV() local
2320 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in FV()
2326 double nAmount = ValueToDouble(pThis, argOne.get()); in FV()
2358 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in IPmt() local
2363 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in IPmt()
2370 float nPrincipalAmount = ValueToFloat(pThis, argOne.get()); in IPmt()
2458 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Pmt() local
2461 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in Pmt()
2467 float nPrincipal = ValueToFloat(pThis, argOne.get()); in Pmt()
2493 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in PPmt() local
2498 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in PPmt()
2505 float nPrincipalAmount = ValueToFloat(pThis, argOne.get()); in PPmt()
2551 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in PV() local
2554 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in PV()
2560 double nAmount = ValueToDouble(pThis, argOne.get()); in PV()
2586 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Rate() local
2589 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in Rate()
2595 float nFuture = ValueToFloat(pThis, argOne.get()); in Rate()
2617 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Term() local
2620 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get()) || in Term()
2626 float nMount = ValueToFloat(pThis, argOne.get()); in Term()
2649 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in Choose() local
2650 if (ValueIsNull(pThis, argOne.get())) { in Choose()
2655 int32_t iIndex = (int32_t)ValueToFloat(pThis, argOne.get()); in Choose()
2727 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in HasValue() local
2728 if (!argOne->IsString()) { in HasValue()
2729 args.GetReturnValue()->SetInteger(argOne->IsNumber() || in HasValue()
2730 argOne->IsBoolean()); in HasValue()
2734 ByteString valueStr = argOne->ToString(); in HasValue()
2749 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Oneof() local
2753 if (simpleValueCompare(pThis, argOne.get(), value.get())) { in Oneof()
2771 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Within() local
2772 if (argOne->IsNull()) { in Within()
2779 if (argOne->IsNumber()) { in Within()
2780 float oneNumber = ValueToFloat(pThis, argOne.get()); in Within()
2788 ByteString oneString = ValueToUTF8String(argOne.get()); in Within()
2857 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in Ref() local
2858 if (!argOne->IsArray() && !argOne->IsObject() && !argOne->IsBoolean() && in Ref()
2859 !argOne->IsString() && !argOne->IsNull() && !argOne->IsNumber()) { in Ref()
2864 if (argOne->IsBoolean() || argOne->IsString() || argOne->IsNumber()) { in Ref()
2865 args.GetReturnValue()->Assign(argOne.get()); in Ref()
2874 if (argOne->IsNull()) { in Ref()
2878 } else if (argOne->IsArray()) { in Ref()
2881 argOne->GetObjectProperty("length", lengthValue.get()); in Ref()
2887 argOne->GetObjectPropertyByIdx(1, propertyValue.get()); in Ref()
2888 argOne->GetObjectPropertyByIdx(2, jsObjectValue.get()); in Ref()
2895 } else if (argOne->IsObject()) { in Ref()
2896 values[2]->Assign(argOne.get()); in Ref()
3159 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in At() local
3161 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get())) { in At()
3172 ByteString stringOne = ValueToUTF8String(argOne.get()); in At()
3217 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Decode() local
3218 if (ValueIsNull(pThis, argOne.get())) { in Decode()
3224 WideString::FromUTF8(ValueToUTF8String(argOne.get()).AsStringView())); in Decode()
3231 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Decode() local
3233 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get())) { in Decode()
3238 ByteString toDecodeString = ValueToUTF8String(argOne.get()); in Decode()
3470 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Encode() local
3471 if (ValueIsNull(pThis, argOne.get())) { in Encode()
3476 WideString encoded = EncodeURL(ValueToUTF8String(argOne.get())); in Encode()
3482 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Encode() local
3484 if (ValueIsNull(pThis, argOne.get()) || ValueIsNull(pThis, argTwo.get())) { in Encode()
3489 ByteString toEncodeString = ValueToUTF8String(argOne.get()); in Encode()
3760 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Format() local
3761 ByteString szPattern = ValueToUTF8String(argOne.get()); in Format()
3840 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Left() local
3842 if ((ValueIsNull(pThis, argOne.get())) || in Left()
3848 ByteString sourceString = ValueToUTF8String(argOne.get()); in Left()
3862 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Len() local
3863 if (ValueIsNull(pThis, argOne.get())) { in Len()
3868 ByteString sourceString = ValueToUTF8String(argOne.get()); in Len()
3882 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Lower() local
3883 if (ValueIsNull(pThis, argOne.get())) { in Lower()
3889 ByteString argString = ValueToUTF8String(argOne.get()); in Lower()
3918 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Ltrim() local
3919 if (ValueIsNull(pThis, argOne.get())) { in Ltrim()
3924 ByteString sourceString = ValueToUTF8String(argOne.get()); in Ltrim()
3939 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Parse() local
3946 ByteString szPattern = ValueToUTF8String(argOne.get()); in Parse()
4073 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Replace() local
4077 if (!ValueIsNull(pThis, argOne.get()) && !ValueIsNull(pThis, argTwo.get())) { in Replace()
4078 oneString = ValueToUTF8String(argOne.get()); in Replace()
4131 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Right() local
4133 if ((ValueIsNull(pThis, argOne.get())) || in Right()
4139 ByteString sourceString = ValueToUTF8String(argOne.get()); in Right()
4153 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Rtrim() local
4154 if (ValueIsNull(pThis, argOne.get())) { in Rtrim()
4159 ByteString sourceString = ValueToUTF8String(argOne.get()); in Rtrim()
4173 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Space() local
4174 if (argOne->IsNull()) { in Space()
4179 int32_t count = std::max(0, ValueToInteger(pThis, argOne.get())); in Space()
4406 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Uuid() local
4407 iNum = static_cast<int32_t>(ValueToFloat(pThis, argOne.get())); in Uuid()
4422 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Upper() local
4423 if (ValueIsNull(pThis, argOne.get())) { in Upper()
4429 ByteString argString = ValueToUTF8String(argOne.get()); in Upper()
4666 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Get() local
4667 ByteString urlString = ValueToUTF8String(argOne.get()); in Get()
4698 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Post() local
4699 ByteString bsURL = ValueToUTF8String(argOne.get()); in Post()
4754 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in Put() local
4755 ByteString bsURL = ValueToUTF8String(argOne.get()); in Put()
5176 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in positive_operator() local
5177 if (argOne->IsNull()) { in positive_operator()
5181 args.GetReturnValue()->SetDouble(0.0 + ValueToDouble(pThis, argOne.get())); in positive_operator()
5193 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in negative_operator() local
5194 if (argOne->IsNull()) { in negative_operator()
5198 args.GetReturnValue()->SetDouble(0.0 - ValueToDouble(pThis, argOne.get())); in negative_operator()
5211 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in logical_not_operator() local
5212 if (argOne->IsNull()) { in logical_not_operator()
5217 double first = ValueToDouble(pThis, argOne.get()); in logical_not_operator()
5467 std::unique_ptr<CFXJSE_Value> argOne = GetSimpleValue(pThis, args, 0); in eval_translation() local
5468 ByteString argString = ValueToUTF8String(argOne.get()); in eval_translation()
5495 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in is_fm_object() local
5496 args.GetReturnValue()->SetBoolean(argOne->IsObject()); in is_fm_object()
5508 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in is_fm_array() local
5509 args.GetReturnValue()->SetBoolean(argOne->IsArray()); in is_fm_array()
5522 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in get_fm_value() local
5523 if (argOne->IsArray()) { in get_fm_value()
5527 argOne->GetObjectPropertyByIdx(1, propertyValue.get()); in get_fm_value()
5528 argOne->GetObjectPropertyByIdx(2, jsObjectValue.get()); in get_fm_value()
5539 if (argOne->IsObject()) { in get_fm_value()
5540 GetObjectDefaultValue(argOne.get(), args.GetReturnValue()); in get_fm_value()
5544 args.GetReturnValue()->Assign(argOne.get()); in get_fm_value()
5556 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in get_fm_jsobj() local
5557 if (!argOne->IsArray()) { in get_fm_jsobj()
5558 args.GetReturnValue()->Assign(argOne.get()); in get_fm_jsobj()
5566 argOne->GetObjectProperty("length", lengthValue.get()); in get_fm_jsobj()
5570 argOne->GetObjectPropertyByIdx(2, args.GetReturnValue()); in get_fm_jsobj()
5584 std::unique_ptr<CFXJSE_Value> argOne = args.GetValue(0); in fm_var_filter() local
5585 if (!argOne->IsArray()) { in fm_var_filter()
5593 argOne->GetObjectProperty("length", lengthValue.get()); in fm_var_filter()
5598 argOne->GetObjectPropertyByIdx(0, flagsValue.get()); in fm_var_filter()
5619 argOne->GetObjectPropertyByIdx(2, objectValue.get()); in fm_var_filter()
5624 args.GetReturnValue()->Assign(argOne.get()); in fm_var_filter()