Searched refs:checkValueAgainstRange (Results 1 – 6 of 6) sorted by relevance
/external/parameter-framework/upstream/parameter/ |
D | FloatingPointParameterType.cpp | 147 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
|
D | FloatingPointParameterType.h | 78 bool checkValueAgainstRange(float fValue) const; 85 bool checkValueAgainstRange(double dValue) const;
|
D | FixedPointParameterType.cpp | 235 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
|
D | IntegerParameterType.cpp | 164 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
|
D | FixedPointParameterType.h | 134 bool checkValueAgainstRange(double dValue) const;
|
D | IntegerParameterType.h | 94 bool checkValueAgainstRange(const std::string &strValue, type value, type minValue,
|