Home
last modified time | relevance | path

Searched refs:checkValueAgainstRange (Results 1 – 6 of 6) sorted by relevance

/external/parameter-framework/upstream/parameter/
DFloatingPointParameterType.cpp147 if (!checkValueAgainstRange(fData)) { in toBlackboard()
164 if (!checkValueAgainstRange(fValue)) { in toBlackboard()
237 if (!checkValueAgainstRange(dUserValue)) { in toBlackboard()
259 bool CFloatingPointParameterType::checkValueAgainstRange(double dValue) const in checkValueAgainstRange() function in CFloatingPointParameterType
268 return checkValueAgainstRange(static_cast<float>(dValue)); in checkValueAgainstRange()
271 bool CFloatingPointParameterType::checkValueAgainstRange(float fValue) const in checkValueAgainstRange() function in CFloatingPointParameterType
DFloatingPointParameterType.h78 bool checkValueAgainstRange(float fValue) const;
85 bool checkValueAgainstRange(double dValue) const;
DFixedPointParameterType.cpp235 if (!checkValueAgainstRange(dUserValue)) { in toBlackboard()
318 if (!convertTo(strValue, dData) || !checkValueAgainstRange(dData)) { in convertFromQnm()
332 bool CFixedPointParameterType::checkValueAgainstRange(double dValue) const in checkValueAgainstRange() function in CFixedPointParameterType
DIntegerParameterType.cpp164 if (!checkValueAgainstRange<int64_t>(strValue, iData, (int32_t)_uiMin, (int32_t)_uiMax, in toBlackboard()
171 if (!checkValueAgainstRange<uint64_t>(strValue, iData, _uiMin, _uiMax, in toBlackboard()
400 bool CIntegerParameterType::checkValueAgainstRange(const string &strValue, type value, in checkValueAgainstRange() function in CIntegerParameterType
DFixedPointParameterType.h134 bool checkValueAgainstRange(double dValue) const;
DIntegerParameterType.h94 bool checkValueAgainstRange(const std::string &strValue, type value, type minValue,