Home
last modified time | relevance | path

Searched refs:lowerBound (Results 1 – 4 of 4) sorted by relevance

/foundation/multimedia/image_framework/plugins/manager/src/framework/
Dcapability.cpp265 uint32_t lowerBound = 0; in AnalyzeUint32Range() local
266 … if (JsonHelper::GetUint32Value(valueArray[AttrData::LOWER_BOUND_INDEX], lowerBound) != SUCCESS) { in AnalyzeUint32Range()
267 HiLog::Error(LABEL, "fail to analyze uint32 value of lowerBound: %{public}u.", lowerBound); in AnalyzeUint32Range()
277 …Debug(LABEL, "AnalyzeUint32Range: get lowerBound: %{public}u, upperBound: %{public}u.", lowerBound, in AnalyzeUint32Range()
279 if (attrData.SetData(lowerBound, upperBound) != SUCCESS) { in AnalyzeUint32Range()
/foundation/multimedia/image_framework/plugins/manager/include/
Dattr_data.h43 AttrData(uint32_t lowerBound, uint32_t upperBound);
55 uint32_t SetData(uint32_t lowerBound, uint32_t upperBound);
/foundation/multimedia/image_framework/plugins/manager/src/common/
Dattr_data.cpp78 AttrData::AttrData(uint32_t lowerBound, uint32_t upperBound) : type_(AttrDataType::ATTR_DATA_UINT32… in AttrData() argument
80 if (lowerBound > upperBound) { in AttrData()
84 value_.uint32Rang[LOWER_BOUND_INDEX] = lowerBound; in AttrData()
229 uint32_t AttrData::SetData(uint32_t lowerBound, uint32_t upperBound) in SetData() argument
231 if (lowerBound > upperBound) { in SetData()
233 lowerBound, upperBound); in SetData()
238 value_.uint32Rang[LOWER_BOUND_INDEX] = lowerBound; in SetData()
/foundation/arkui/ace_engine/frameworks/base/utils/
Dutils.h219 inline bool InRegion(double lowerBound, double upperBound, double destNum) in InRegion() argument
221 return LessOrEqual(lowerBound, destNum) && LessOrEqual(destNum, upperBound); in InRegion()