Searched refs:strPart (Results 1 – 6 of 6) sorted by relevance
/ohos5.0/commonlibrary/c_utils/base/src/ |
H A D | string_ex.cpp | 99 string strPart; in SplitStr() local 103 strPart = needTrim ? TrimStr(strTmp) : strTmp; in SplitStr() 104 if (!strPart.empty() || canEmpty) { in SplitStr() 105 strs.push_back(strPart); in SplitStr() 109 strPart = needTrim ? TrimStr(strTmp.substr(0, pos)) : strTmp.substr(0, pos); in SplitStr() 110 if (!strPart.empty() || canEmpty) { in SplitStr() 111 strs.push_back(strPart); in SplitStr()
|
/ohos5.0/base/hiviewdfx/hicollie/frameworks/native/ |
H A D | xcollie_utils.cpp | 216 std::string strPart; in SplitStr() local 220 strPart = needTrim ? TrimStr(strTmp) : strTmp; in SplitStr() 221 if (!strPart.empty() || canEmpty) { in SplitStr() 222 strs.push_back(strPart); in SplitStr() 226 strPart = needTrim ? TrimStr(strTmp.substr(0, pos)) : strTmp.substr(0, pos); in SplitStr() 227 if (!strPart.empty() || canEmpty) { in SplitStr() 228 strs.push_back(strPart); in SplitStr()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/utils/ |
H A D | string_utils.h | 640 std::string strPart; variable 645 …strPart = needTrim ? TrimStr(str.substr(startPos, pos - startPos)) : str.substr(startPos, pos - st… 646 out.emplace_back(std::move(strPart)); 653 strPart = needTrim ? TrimStr(str.substr(startPos)) : str.substr(startPos); 654 out.emplace_back(std::move(strPart)); 664 std::string strPart; variable 670 if (!strPart.empty()) { 671 out.emplace_back(StringToDimension(std::move(strPart))); 678 strPart = needTrim ? TrimStr(str.substr(startPos)) : str.substr(startPos); 679 if (!strPart.empty()) { [all …]
|
/ohos5.0/base/hiviewdfx/hiview/base/utility/ |
H A D | string_util.cpp | 92 string strPart; in SplitStr() local 96 strPart = needTrim ? TrimStr(strTmp) : strTmp; in SplitStr() 97 if (!strPart.empty() || canEmpty) { in SplitStr() 98 strs.push_back(strPart); in SplitStr() 102 strPart = needTrim ? TrimStr(strTmp.substr(0, pos)) : strTmp.substr(0, pos); in SplitStr() 103 if (!strPart.empty() || canEmpty) { in SplitStr() 104 strs.push_back(strPart); in SplitStr()
|
/ohos5.0/foundation/graphic/graphic_surface/test_header/export/ |
H A D | test_header.h | 28 #define PART(part) WMTLOGI(33, part); if (const char *strPart = part) 31 #define STEP_CONDITION(condition) strPart << ": " << strDesc << " (" << condition << ")"
|
/ohos5.0/foundation/graphic/graphic_2d/utils/test_header/export/ |
H A D | test_header.h | 28 #define PART(part) WMTLOGI(33, part); if (const char *strPart = part) 31 #define STEP_CONDITION(condition) strPart << ": " << strDesc << " (" << condition << ")"
|