Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:lastPos

414   std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
415 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
417 while (std::string::npos != pos || std::string::npos != lastPos) {
418 std::string token = CommandLine.substr(lastPos, pos - lastPos);
424 lastPos
426 pos = CommandLine.find_first_of(delimiters, lastPos);