Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:lastPos

415   std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
416 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
418 while (std::string::npos != pos || std::string::npos != lastPos) {
419 std::string token = CommandLine.substr(lastPos, pos - lastPos);
425 lastPos = CommandLine.find_first_not_of(delimiters, pos);
427 pos = CommandLine.find_first_of(delimiters, lastPos);