Lines Matching refs:iValue
89 int32_t iValue = ch - L'0'; in StrToRGB() local
90 if (iValue >= 0 && iValue <= 9) { in StrToRGB()
93 r = r * 10 + iValue; in StrToRGB()
96 g = g * 10 + iValue; in StrToRGB()
99 b = b * 10 + iValue; in StrToRGB()
292 Optional<int32_t> iValue = TryInteger(eAttr, bUseDefault); in TryAttribute() local
293 if (!iValue) in TryAttribute()
295 return WideString::Format(L"%d", *iValue); in TryAttribute()
346 void CJX_Object::SetInteger(XFA_Attribute eAttr, int32_t iValue, bool bNotify) { in SetInteger() argument
347 CFX_XMLElement* elem = SetValue(eAttr, (void*)(uintptr_t)iValue, bNotify); in SetInteger()
350 WideString::Format(L"%d", iValue)); in SetInteger()