Searched refs:lastPos (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/bugpoint/
H A DToolRunner.cpp414 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0); local
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 = CommandLine.find_first_not_of(delimiters, pos);
426 pos = CommandLine.find_first_of(delimiters, lastPos);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DDeclPrinter.cpp925 std::string::size_type pos, lastPos = 0; local
929 pos = name.find_first_of(':', lastPos);
930 Out << " " << name.substr(lastPos, pos - lastPos);
933 lastPos = pos + 1;

Completed in 160 milliseconds