Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/CodeGen/
DRenderMachineFunction.cpp103 std::string::const_iterator nextComa = std::find(curPos, s.end(), ','); in splitComaSeperatedList() local
104 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()