Lines Matching defs:argOne

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