Home
last modified time | relevance | path

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

/base/hiviewdfx/hiview/base/utility/
Dstring_util.cpp73 string strPart; in SplitStr() local
77 strPart = needTrim ? TrimStr(strTmp) : strTmp; in SplitStr()
78 if (!strPart.empty() || canEmpty) { in SplitStr()
79 strs.push_back(strPart); in SplitStr()
83 strPart = needTrim ? TrimStr(strTmp.substr(0, pos)) : strTmp.substr(0, pos); in SplitStr()
84 if (!strPart.empty() || canEmpty) { in SplitStr()
85 strs.push_back(strPart); in SplitStr()