Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:delimiters

395   std::string delimiters = " ";
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);
406 // Skip delimiters. Note the "not_of"
407 lastPos = CommandLine.find_first_not_of(delimiters, pos);
409 pos = CommandLine.find_first_of(delimiters, lastPos);