Home
last modified time | relevance | path

Searched refs:iIndexValue (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp5398 int32_t iIndexValue, in GenerateSomExpression() argument
5406 if (iIndexFlags == 1 || iIndexValue == 0) { in GenerateSomExpression()
5407 return ByteString(bsName, "[") + ByteString::FormatInteger(iIndexValue) + in GenerateSomExpression()
5411 const bool bNegative = iIndexValue < 0; in GenerateSomExpression()
5417 iIndexValue = bNegative ? 0 - iIndexValue : iIndexValue; in GenerateSomExpression()
5418 bsSomExp += ByteString::FormatInteger(iIndexValue); in GenerateSomExpression()
5744 int32_t iIndexValue = 0; in DotAccessorCommon() local
5747 iIndexValue = ValueToInteger(pThis, args.GetValue(4).get()); in DotAccessorCommon()
5753 bsName.AsStringView(), args.GetInt32(3), iIndexValue, bIsStar); in DotAccessorCommon()
Dcfxjse_formcalc_context.h356 int32_t iIndexValue,