/foundation/multimedia/image_framework/plugins/manager/include/ |
H A D | attr_data.h | 62 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 D | attr_data.cpp | 368 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 D | attr_data_test.cpp | 303 * @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 D | anonymizer.c | 40 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 D | codec_param_checker.cpp | 225 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 D | layout_wrapper.cpp | 23 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 D | capability.cpp | 84 if (!iter->second.InRange(capability.second)) { in IsCompatible()
|
/foundation/multimedia/av_codec/interfaces/inner_api/native/ |
H A D | avcodec_info.h | 109 bool InRange(int32_t value) in InRange() function
|