Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:delimiters

382   std::string delimiters = " ";

384 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
385 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
393 // Skip delimiters. Note the "not_of"
394 lastPos = CommandLine.find_first_not_of(delimiters, pos);
396 pos = CommandLine.find_first_of(delimiters, lastPos);