Home
last modified time | relevance | path

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

/base/update/updater/test/unittest/utils/
Dutils_unittest.cpp51 string newStr = Utils::ConvertSha256Hex(a, 1); variable
52 EXPECT_STREQ(newStr.c_str(), "01");
58 vector<string> newStr = Utils::SplitString(str, "\n"); variable
59 EXPECT_EQ(newStr[0], "aaa");
60 EXPECT_EQ(newStr[1], "bbb");
/base/hiviewdfx/hidumper/frameworks/native/src/executor/
Dfile_format_dump_filter.cpp69 std::string newStr; in FilterControlChar() local
90 newStr.append(1, c); in FilterControlChar()
93 str = newStr; in FilterControlChar()
/base/hiviewdfx/hiview/base/
Ddefault_logger.cpp22 …ne void StringReplace(std::string& sourceStr, const std::string& subStr, const std::string& newStr) in StringReplace() argument
26 sourceStr.replace(pos, subStr.length(), newStr); in StringReplace()
/base/security/device_auth/common_lib/interfaces/
Dstring_util.h91 int32_t DeepCopyString(const char *str, char **newStr);
/base/security/device_auth/common_lib/impl/src/
Dstring_util.c232 int32_t DeepCopyString(const char *str, char **newStr) in DeepCopyString() argument
234 if (str == NULL || newStr == NULL) { in DeepCopyString()
246 *newStr = val; in DeepCopyString()
/base/telephony/telephony_data/common/src/
Drdb_base_helper.cpp172 …bBaseHelper::ReplaceAllStr(std::string &path, const std::string &oldStr, const std::string &newStr) in ReplaceAllStr() argument
174 path = std::regex_replace(path, std::regex(oldStr), newStr); in ReplaceAllStr()
/base/telephony/telephony_data/common/include/
Drdb_base_helper.h63 void ReplaceAllStr(std::string &path, const std::string &oldStr, const std::string &newStr);