Home
last modified time | relevance | path

Searched refs:strVector (Results 1 – 3 of 3) sorted by relevance

/base/update/updateservice/frameworks/js/napi/base/include/
Dclient_helper.h227 …ring ConvertVectorToStr(std::vector<std::pair<std::string, std::string>> &strVector, bool isFirst);
229 static std::string GetParamNames(std::vector<std::pair<std::string, std::string>> &strVector);
230 static std::string GetParamTypes(std::vector<std::pair<std::string, std::string>> &strVector);
/base/update/updateservice/frameworks/js/napi/base/src/
Dclient_helper.cpp645 …tring ClientHelper::ConvertVectorToStr(std::vector<std::pair<std::string, std::string>> &strVector, in ConvertVectorToStr() argument
649 for (auto &str : strVector) { in ConvertVectorToStr()
662 std::string ClientHelper::GetParamNames(std::vector<std::pair<std::string, std::string>> &strVector) in GetParamNames() argument
664 return ConvertVectorToStr(strVector, true); in GetParamNames()
667 std::string ClientHelper::GetParamTypes(std::vector<std::pair<std::string, std::string>> &strVector) in GetParamTypes() argument
669 return ConvertVectorToStr(strVector, false); in GetParamTypes()
/base/telephony/core_service/frameworks/native/src/
Dresource_utils.cpp416 std::vector<std::string> strVector; in SaveAllValue() local
437 if (GetStringArrayByName(iter.first.c_str(), strVector)) { in SaveAllValue()
438 mapResourceValues_[iter.first] = strVector; in SaveAllValue()