Lines Matching refs:value
164 const char* property, T value) in setPropertyValue() argument
166 _properties[object][interface][property] = value; in setPropertyValue()
180 const std::string& property, T value) in setPropertyValue() argument
182 _properties[object][interface][property] = value; in setPropertyValue()
241 std::optional<T> value; in getPropertyValueVisitor() local
243 [&value](auto&& val) { in getPropertyValueVisitor()
252 value = std::lround(val); in getPropertyValueVisitor()
259 value = val; in getPropertyValueVisitor()
266 assert(value); in getPropertyValueVisitor()
268 return value.value(); in getPropertyValueVisitor()
616 T value; in getPropertyByName() local
629 [&value](auto&& val) { in getPropertyByName()
633 value = val; in getPropertyByName()
638 return value; in getPropertyByName()
647 value = getPropertyValueVisitor<T>(intf.c_str(), prop.c_str(), variant); in getPropertyByName()
649 return value; in getPropertyByName()
659 virtual std::string current(std::string value);