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

/freebsd-10.0-release/contrib/llvm/tools/bugpoint/
H A DToolRunner.cpp386 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0); local
387 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
389 while (std::string::npos != pos || std::string::npos != lastPos) {
390 std::string token = CommandLine.substr(lastPos, pos - lastPos);
396 lastPos = CommandLine.find_first_not_of(delimiters, pos);
398 pos = CommandLine.find_first_of(delimiters, lastPos);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclPrinter.cpp921 std::string::size_type pos, lastPos = 0; local
925 pos = name.find_first_of(':', lastPos);
926 Out << " " << name.substr(lastPos, pos - lastPos);
929 lastPos = pos + 1;

Completed in 171 milliseconds