Home
last modified time | relevance | path

Searched refs:InRange (Results 1 - 8 of 8) sorted by relevance

/foundation/multimedia/image_framework/plugins/manager/include/
H A Dattr_data.h62 bool InRange(bool value) const;
63 bool InRange(uint32_t value) const;
64 bool InRange(const std::string &value) const;
65 bool InRange(const AttrData &data) const;
87 bool InRange(const std::set<uint32_t> &uint32Set) const;
88 bool InRange(const std::set<std::string> &stringSet) const;
89 bool InRange(const uint32_t (&uint32Rang)[RANGE_ARRAY_SIZE]) const;
/foundation/multimedia/image_framework/plugins/manager/src/common/
H A Dattr_data.cpp368 bool AttrData::InRange(bool value) const in InRange() function in OHOS::MultimediaPlugin::AttrData
371 IMAGE_LOGE("InRange: comparison of bool type with non-bool type: %{public}d.", type_); in InRange()
378 bool AttrData::InRange(uint32_t value) const in InRange() function in OHOS::MultimediaPlugin::AttrData
391 IMAGE_LOGE("InRange: comparison of uint32 type with non-uint32 type: %{public}d.", type_); in InRange()
397 bool AttrData::InRange(const string &value) const in InRange() function in OHOS::MultimediaPlugin::AttrData
407 IMAGE_LOGE("InRange: comparison of string type with non-string type: %{public}d.", type_); in InRange()
413 bool AttrData::InRange(const AttrData &data) const in InRange() function in OHOS::MultimediaPlugin::AttrData
420 return InRange(data.value_.boolValue); in InRange()
423 return InRange(data.value_.uint32Value); in InRange()
426 return InRange(*(dat in InRange()
638 bool AttrData::InRange(const set<uint32_t> &uint32Set) const InRange() function in OHOS::MultimediaPlugin::AttrData
653 bool AttrData::InRange(const set<string> &stringSet) const InRange() function in OHOS::MultimediaPlugin::AttrData
[all...]
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dattr_data_test.cpp303 * @tc.desc: test InRange type is bool
311 bool ret = aData.InRange(value); in HWTEST_F()
318 * @tc.desc: test InRange type is bool
326 bool ret = aData.InRange(value); in HWTEST_F()
333 * @tc.desc: test InRange type is uint32_t
342 bool ret = aData.InRange(value1); in HWTEST_F()
349 * @tc.desc: test InRange type is uint32_t
357 bool ret = aData.InRange(value); in HWTEST_F()
364 * @tc.desc: test InRange type is std::string
373 bool ret = aData.InRange(value in HWTEST_F()
[all...]
/foundation/communication/dsoftbus/core/common/dfx/anonymize/src/
H A Danonymizer.c40 static inline bool InRange(char chr, char left, char right) in InRange() function
47 return InRange(chr, '0', '9'); in IsNum()
52 return IsNum(chr) || InRange(chr, 'A', 'F') || InRange(chr, 'a', 'f'); in IsHex()
57 return InRange(chr, 'A', 'Z') || InRange(chr, 'a', 'z'); in IsAlphabet()
/foundation/multimedia/av_codec/services/services/codec/server/
H A Dcodec_param_checker.cpp225 resolutionValid = (capData.width.InRange(width) && capData.height.InRange(height)) || in ResolutionChecker()
226 (capData.width.InRange(height) && capData.height.InRange(width)); in ResolutionChecker()
228 resolutionValid = capData.width.InRange(width) && capData.height.InRange(height); in ResolutionChecker()
290 bool bitrateValid = capData.bitrate.InRange(bitrate); in BitrateAndQualityChecker()
297 bool qualityValid = capData.encodeQuality.InRange(quality); in BitrateAndQualityChecker()
/foundation/arkui/ace_engine/frameworks/core/components_ng/layout/
H A Dlayout_wrapper.cpp23 bool InRange(float number, float boundaryStart, float boundaryEnd) in InRange() function
380 if (InRange(adjustingRect.Left(), innerSpaceLeftLength, in ParseSafeAreaPaddingSides()
388 if (InRange(adjustingRect.Top(), innerSpaceTopLength, in ParseSafeAreaPaddingSides()
398 if (InRange(adjustingRect.Right(), in ParseSafeAreaPaddingSides()
410 if (InRange(adjustingRect.Bottom(), in ParseSafeAreaPaddingSides()
/foundation/multimedia/image_framework/plugins/manager/src/framework/
H A Dcapability.cpp84 if (!iter->second.InRange(capability.second)) { in IsCompatible()
/foundation/multimedia/av_codec/interfaces/inner_api/native/
H A Davcodec_info.h109 bool InRange(int32_t value) in InRange() function

Completed in 14 milliseconds