Lines Matching full:lastpos
397 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
398 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
400 while (std::string::npos != pos || std::string::npos != lastPos) {
401 std::string token = CommandLine.substr(lastPos, pos - lastPos);
407 lastPos = CommandLine.find_first_not_of(delimiters, pos);
409 pos = CommandLine.find_first_of(delimiters, lastPos);