Home
last modified time | relevance | path

Searched refs:endString (Results 1 – 2 of 2) sorted by relevance

/base/update/updateservice/services/core/ability/utils/test/unittest/
Dstring_utils_test.cpp340 std::string endString = "</language-gdb>"; variable
341 StringUtils::StringRemove(sourceString, startString, endString);
355 std::string endString = "</language-gdb>"; variable
356 StringUtils::StringRemove(sourceString, startString, endString);
370 std::string endString = "</language-zh>"; variable
371 StringUtils::StringRemove(sourceString, startString, endString);
/base/update/updateservice/services/core/ability/utils/include/
Dstring_utils.h116 const std::string &endString) in StringRemove() argument
123 std::string::size_type indexEnd = sourceString.find(endString, indexStart); in StringRemove()
126 sourceString.substr(indexEnd + endString.length(), sourceString.length()); in StringRemove()