Searched refs:nextComa (Results 1 – 1 of 1) sorted by relevance
103 std::string::const_iterator nextComa = std::find(curPos, s.end(), ','); in splitComaSeperatedList() local104 while (nextComa != s.end()) { in splitComaSeperatedList()106 std::copy(curPos, nextComa, std::back_inserter(elem)); in splitComaSeperatedList()109 curPos = llvm::next(nextComa); in splitComaSeperatedList()110 nextComa = std::find(curPos, s.end(), ','); in splitComaSeperatedList()