Home
last modified time | relevance | path

Searched refs:stringSet (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/plugins/manager/src/common/
H A Dattr_data.cpp264 delete value_.stringSet; in ClearData()
265 value_.stringSet = nullptr; in ClearData()
310 if (value_.stringSet == nullptr) { in InsertSet()
337 if (value_.stringSet == nullptr) { in InsertSet()
344 delete value_.stringSet; in InsertSet()
345 value_.stringSet = nullptr; in InsertSet()
404 return value_.stringSet->find(value) != value_.stringSet->end(); in InRange()
623 value_.stringSet = new (std::nothrow) set<string>(*(data.value_.stringSet)); in InitStringSetAttrData()
624 if (value_.stringSet == nullptr) { in InitStringSetAttrData()
655 if (stringSet.empty()) { in InRange()
[all …]
/ohos5.0/base/account/os_account/frameworks/appaccount/native/include/
H A Dapp_account_info.h101 bool WriteStringSet(const std::set<std::string> &stringSet, Parcel &data) const;
102 bool ReadStringSet(std::set<std::string> &stringSet, Parcel &data);
103 bool WriteStringMap(const std::map<std::string, std::string> &stringSet, Parcel &data) const;
/ohos5.0/foundation/multimedia/image_framework/plugins/manager/include/
H A Dattr_data.h88 bool InRange(const std::set<std::string> &stringSet) const;
98 std::set<std::string> *stringSet; member
/ohos5.0/base/account/os_account/frameworks/appaccount/native/src/
H A Dapp_account_info.cpp709 bool AppAccountInfo::WriteStringSet(const std::set<std::string> &stringSet, Parcel &data) const in WriteStringSet() argument
711 if (!data.WriteUint32(stringSet.size())) { in WriteStringSet()
716 for (auto it : stringSet) { in WriteStringSet()
726 bool AppAccountInfo::ReadStringSet(std::set<std::string> &stringSet, Parcel &data) in ReadStringSet() argument
738 stringSet.clear(); in ReadStringSet()
745 stringSet.emplace(it); in ReadStringSet()
/ohos5.0/foundation/multimedia/image_framework/test/resource/plugins/plugin_example2/
H A Dplugin_example2.pluginmeta38 "type":"stringSet",
/ohos5.0/base/account/os_account/services/accountmgr/test/unittest/app_account/
H A Dapp_account_info_test.cpp986 std::map<std::string, std::string> stringSet; variable
988 stringSet["testkey"] = "testvalue";
989 EXPECT_EQ(testInfo.WriteStringMap(stringSet, data), true);
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dattr_data_test.cpp1325 attrData.value_.stringSet->insert(std::move(value1));