Searched refs:WorkStr (Results 1 – 1 of 1) sorted by relevance
440 StringRef WorkStr(Input); in ParseCStringVector() local441 while (!WorkStr.empty()) { in ParseCStringVector()443 if (Delims.find(WorkStr[0]) != StringRef::npos) { in ParseCStringVector()444 size_t Pos = WorkStr.find_first_not_of(Delims); in ParseCStringVector()445 if (Pos == StringRef::npos) Pos = WorkStr.size(); in ParseCStringVector()446 WorkStr = WorkStr.substr(Pos); in ParseCStringVector()451 size_t Pos = WorkStr.find_first_of(Delims); in ParseCStringVector()452 if (Pos == StringRef::npos) Pos = WorkStr.size(); in ParseCStringVector()456 memcpy(NewStr, WorkStr.data(), Pos); in ParseCStringVector()460 WorkStr = WorkStr.substr(Pos); in ParseCStringVector()