Searched refs:dUserValue (Results 1 – 7 of 7) sorted by relevance
/external/parameter-framework/upstream/parameter/ |
D | FloatingPointParameterType.cpp | 235 double dUserValue, uint32_t &uiValue, CParameterAccessContext ¶meterAccessContext) const in toBlackboard() argument 237 if (!checkValueAgainstRange(dUserValue)) { in toBlackboard() 244 float fValue = static_cast<float>(dUserValue); in toBlackboard() 249 bool CFloatingPointParameterType::fromBlackboard(double &dUserValue, uint32_t uiValue, in fromBlackboard() argument 255 dUserValue = fValue; in fromBlackboard()
|
D | IntegerParameterType.h | 172 bool toBlackboard(double dUserValue, uint32_t &uiValue, in toBlackboard() argument 181 return Base::toBlackboard(dUserValue, uiValue, parameterAccessContext); in toBlackboard() 185 int64_t iConvertedValue = pParameterAdaption->fromUserValue(dUserValue); in toBlackboard() 236 bool fromBlackboard(double &dUserValue, uint32_t uiValue, in fromBlackboard() argument 245 return Base::fromBlackboard(dUserValue, uiValue, parameterAccessContext); in fromBlackboard() 264 dUserValue = pParameterAdaption->toUserValue(iValueToConvert); in fromBlackboard()
|
D | FixedPointParameterType.cpp | 231 bool CFixedPointParameterType::toBlackboard(double dUserValue, uint32_t &uiValue, in toBlackboard() argument 235 if (!checkValueAgainstRange(dUserValue)) { in toBlackboard() 244 int32_t iData = doubleToBinaryQnm(dUserValue); in toBlackboard() 254 bool CFixedPointParameterType::fromBlackboard(double &dUserValue, uint32_t uiValue, in fromBlackboard() argument 265 dUserValue = binaryQnmToDouble(iData); in fromBlackboard()
|
D | BaseIntegerParameterType.h | 56 bool fromBlackboard(double &dUserValue, uint32_t uiValue, in fromBlackboard() argument 59 return CParameterType::fromBlackboard(dUserValue, uiValue, parameterAccessContext); in fromBlackboard()
|
D | FloatingPointParameterType.h | 52 bool toBlackboard(double dUserValue, uint32_t &uiValue, 54 bool fromBlackboard(double &dUserValue, uint32_t uiValue,
|
D | FixedPointParameterType.h | 61 bool toBlackboard(double dUserValue, uint32_t &uiValue, 63 bool fromBlackboard(double &dUserValue, uint32_t uiValue,
|
D | ParameterType.h | 86 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue, 88 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
|