Searched refs:nextElePos (Results 1 – 1 of 1) sorted by relevance
174 size_t nextElePos = findChar(optionStr, 0, ','); in parseCommaSeparatedList() local175 while (nextElePos != StringRef::npos) { in parseCommaSeparatedList()177 if (failed(elementParseFn(optionStr.substr(0, nextElePos)))) in parseCommaSeparatedList()180 optionStr = optionStr.substr(nextElePos + 1); in parseCommaSeparatedList()181 nextElePos = findChar(optionStr, 0, ','); in parseCommaSeparatedList()183 return elementParseFn(optionStr.substr(0, nextElePos)); in parseCommaSeparatedList()