Lines Matching refs:iValue
91 int32_t iValue = ch - L'0'; in StrToRGB() local
92 if (iValue >= 0 && iValue <= 9) { in StrToRGB()
95 r = r * 10 + iValue; in StrToRGB()
98 g = g * 10 + iValue; in StrToRGB()
101 b = b * 10 + iValue; in StrToRGB()
293 Optional<int32_t> iValue = TryInteger(eAttr, bUseDefault); in TryAttribute() local
294 if (!iValue) in TryAttribute()
296 return {WideString::Format(L"%d", *iValue)}; in TryAttribute()
354 bool CJX_Object::SetInteger(XFA_Attribute eAttr, int32_t iValue, bool bNotify) { in SetInteger() argument
356 (void*)(uintptr_t)iValue, bNotify); in SetInteger()
359 WideString::Format(L"%d", iValue)); in SetInteger()