• Home
  • Raw
  • Download

Lines Matching refs:newPropertyValue

579           auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate);  in Avg()  local
581 propertyValue->ToString().AsStringC(), newPropertyValue.get()); in Avg()
582 if (newPropertyValue->IsNull()) in Avg()
585 dSum += ValueToDouble(pThis, newPropertyValue.get()); in Avg()
642 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Count() local
648 GetObjectDefaultValue(jsObjectValue.get(), newPropertyValue.get()); in Count()
649 if (!newPropertyValue->IsNull()) in Count()
656 propertyValue->ToString().AsStringC(), newPropertyValue.get()); in Count()
657 iCount += newPropertyValue->IsNull() ? 0 : 1; in Count()
661 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Count() local
662 GetObjectDefaultValue(argValue.get(), newPropertyValue.get()); in Count()
663 if (!newPropertyValue->IsNull()) in Count()
715 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Max() local
721 GetObjectDefaultValue(jsObjectValue.get(), newPropertyValue.get()); in Max()
722 if (newPropertyValue->IsNull()) in Max()
726 FX_DOUBLE dValue = ValueToDouble(pThis, newPropertyValue.get()); in Max()
733 propertyValue->ToString().AsStringC(), newPropertyValue.get()); in Max()
734 if (newPropertyValue->IsNull()) in Max()
738 FX_DOUBLE dValue = ValueToDouble(pThis, newPropertyValue.get()); in Max()
743 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Max() local
744 GetObjectDefaultValue(argValue.get(), newPropertyValue.get()); in Max()
745 if (newPropertyValue->IsNull()) in Max()
749 FX_DOUBLE dValue = ValueToDouble(pThis, newPropertyValue.get()); in Max()
789 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Min() local
795 GetObjectDefaultValue(jsObjectValue.get(), newPropertyValue.get()); in Min()
796 if (newPropertyValue->IsNull()) in Min()
800 FX_DOUBLE dValue = ValueToDouble(pThis, newPropertyValue.get()); in Min()
807 propertyValue->ToString().AsStringC(), newPropertyValue.get()); in Min()
808 if (newPropertyValue->IsNull()) in Min()
812 FX_DOUBLE dValue = ValueToDouble(pThis, newPropertyValue.get()); in Min()
817 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Min() local
818 GetObjectDefaultValue(argValue.get(), newPropertyValue.get()); in Min()
819 if (newPropertyValue->IsNull()) in Min()
823 FX_DOUBLE dValue = ValueToDouble(pThis, newPropertyValue.get()); in Min()
953 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Sum() local
957 GetObjectDefaultValue(jsObjectValue.get(), newPropertyValue.get()); in Sum()
958 if (newPropertyValue->IsNull()) in Sum()
968 propertyValue->ToString().AsStringC(), newPropertyValue.get()); in Sum()
969 if (newPropertyValue->IsNull()) in Sum()
972 dSum += ValueToDouble(pThis, newPropertyValue.get()); in Sum()
977 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Sum() local
978 GetObjectDefaultValue(argValue.get(), newPropertyValue.get()); in Sum()
979 if (newPropertyValue->IsNull()) in Sum()
2798 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Choose() local
2803 GetObjectDefaultValue(jsObjectValue.get(), newPropertyValue.get()); in Choose()
2806 propertyValue->ToString().AsStringC(), newPropertyValue.get()); in Choose()
2809 ValueToUTF8String(newPropertyValue.get(), bsChoosed); in Choose()
5913 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in ValueIsNull() local
5915 newPropertyValue.get()); in ValueIsNull()
5916 return newPropertyValue->IsNull(); in ValueIsNull()
6203 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in ValueToInteger() local
6207 GetObjectDefaultValue(jsObjectValue.get(), newPropertyValue.get()); in ValueToInteger()
6208 return ValueToInteger(pThis, newPropertyValue.get()); in ValueToInteger()
6212 newPropertyValue.get()); in ValueToInteger()
6213 return ValueToInteger(pThis, newPropertyValue.get()); in ValueToInteger()
6216 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in ValueToInteger() local
6217 GetObjectDefaultValue(pValue, newPropertyValue.get()); in ValueToInteger()
6218 return ValueToInteger(pThis, newPropertyValue.get()); in ValueToInteger()
6235 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in ValueToFloat() local
6239 GetObjectDefaultValue(jsObjectValue.get(), newPropertyValue.get()); in ValueToFloat()
6240 return ValueToFloat(pThis, newPropertyValue.get()); in ValueToFloat()
6243 newPropertyValue.get()); in ValueToFloat()
6244 return ValueToFloat(pThis, newPropertyValue.get()); in ValueToFloat()
6247 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in ValueToFloat() local
6248 GetObjectDefaultValue(arg, newPropertyValue.get()); in ValueToFloat()
6249 return ValueToFloat(pThis, newPropertyValue.get()); in ValueToFloat()
6269 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in ValueToDouble() local
6273 GetObjectDefaultValue(jsObjectValue.get(), newPropertyValue.get()); in ValueToDouble()
6274 return ValueToDouble(pThis, newPropertyValue.get()); in ValueToDouble()
6277 newPropertyValue.get()); in ValueToDouble()
6278 return ValueToDouble(pThis, newPropertyValue.get()); in ValueToDouble()
6281 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in ValueToDouble() local
6282 GetObjectDefaultValue(arg, newPropertyValue.get()); in ValueToDouble()
6283 return ValueToDouble(pThis, newPropertyValue.get()); in ValueToDouble()
6321 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in ExtractDouble() local
6323 newPropertyValue.get()); in ExtractDouble()
6324 return ValueToDouble(pThis, newPropertyValue.get()); in ExtractDouble()