Home
last modified time | relevance | path

Searched refs:sourceStr (Results 1 - 2 of 2) sorted by relevance

/base/hiviewdfx/hiview/base/
H A Ddefault_logger.cpp22 inline void StringReplace(std::string& sourceStr, const std::string& subStr, const std::string& newStr) in StringReplace() argument
25 while ((pos = sourceStr.find(subStr)) != std::string::npos) { in StringReplace()
26 sourceStr.replace(pos, subStr.length(), newStr); in StringReplace()
/base/update/updateservice/foundations/ability/utils/include/
H A Dstring_utils.h69 static std::string SafeSubString(const std::string &sourceStr, int beginIndex, int endIndex, in SafeSubString() argument
72 if (sourceStr.empty()) { in SafeSubString()
75 if (beginIndex < 0 || static_cast<size_t>(endIndex) > sourceStr.size() || beginIndex > endIndex) { in SafeSubString()
78 return sourceStr.substr(beginIndex, endIndex); in SafeSubString()

Completed in 2 milliseconds