Lines Matching refs:propertyId
272 void FullPath::FullPathProperties::setColorPropertyValue(int propertyId, int32_t value) { in setColorPropertyValue() argument
273 Property currentProperty = static_cast<Property>(propertyId); in setColorPropertyValue()
280 " with id: %d", propertyId); in setColorPropertyValue()
284 void FullPath::FullPathProperties::setPropertyValue(int propertyId, float value) { in setPropertyValue() argument
285 Property property = static_cast<Property>(propertyId); in setPropertyValue()
306 LOG_ALWAYS_FATAL("Invalid property id: %d for animation", propertyId); in setPropertyValue()
398 float Group::GroupProperties::getPropertyValue(int propertyId) const { in getPropertyValue()
399 Property currentProperty = static_cast<Property>(propertyId); in getPropertyValue()
416 LOG_ALWAYS_FATAL("Invalid property index: %d", propertyId); in getPropertyValue()
422 void Group::GroupProperties::setPropertyValue(int propertyId, float value) { in setPropertyValue() argument
423 Property currentProperty = static_cast<Property>(propertyId); in setPropertyValue()
447 LOG_ALWAYS_FATAL("Invalid property index: %d", propertyId); in setPropertyValue()
451 bool Group::isValidProperty(int propertyId) { in isValidProperty() argument
452 return GroupProperties::isValidProperty(propertyId); in isValidProperty()
455 bool Group::GroupProperties::isValidProperty(int propertyId) { in isValidProperty() argument
456 return propertyId >= 0 && propertyId < static_cast<int>(Property::count); in isValidProperty()