Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:lastPos

396   std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
397 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
399 while (std::string::npos != pos || std::string::npos != lastPos) {
400 std::string token = CommandLine.substr(lastPos, pos - lastPos);
406 lastPos = CommandLine.find_first_not_of(delimiters, pos);
408 pos = CommandLine.find_first_of(delimiters, lastPos);