Lines Matching refs:SetValue

174 IntProperty::SetValue(const char* value)  in SetValue()  function in IntProperty
176 return SetValue(atoi(value)); in SetValue()
181 IntProperty::SetValue(const Property* other) in SetValue() function in IntProperty
185 return SetValue(i->Value()); in SetValue()
203 return SetValue(fValue + (int32)((float)(i->Value() in InterpolateTo()
211 IntProperty::SetValue(int32 value) in SetValue() function in IntProperty
309 FloatProperty::SetValue(const char* value) in SetValue() function in FloatProperty
311 return SetValue(atof(value)); in SetValue()
316 FloatProperty::SetValue(const Property* other) in SetValue() function in FloatProperty
320 return SetValue(f->Value()); in SetValue()
338 return SetValue(fValue + (f->Value() - fValue) * scale); in InterpolateTo()
345 FloatProperty::SetValue(float value) in SetValue() function in FloatProperty
428 UInt8Property::SetValue(const char* value) in SetValue() function in UInt8Property
430 return SetValue((uint8)max_c(0, min_c(255, atoi(value)))); in SetValue()
435 UInt8Property::SetValue(const Property* other) in SetValue() function in UInt8Property
439 return SetValue(u->Value()); in SetValue()
457 return SetValue(fValue + (uint8)((float)(u->Value() in InterpolateTo()
465 UInt8Property::SetValue(uint8 value) in SetValue() function in UInt8Property
542 BoolProperty::SetValue(const char* value) in SetValue() function in BoolProperty
552 return SetValue(v); in SetValue()
557 BoolProperty::SetValue(const Property* other) in SetValue() function in BoolProperty
561 return SetValue(b->Value()); in SetValue()
583 return SetValue(b->Value()); in InterpolateTo()
590 BoolProperty::SetValue(bool value) in SetValue() function in BoolProperty
667 StringProperty::SetValue(const char* value) in SetValue() function in StringProperty
679 StringProperty::SetValue(const Property* other) in SetValue() function in StringProperty
683 return SetValue(s->Value()); in SetValue()