Home | History | Annotate | Download | only in bugpoint

Lines Matching full:commandline

17 #include "llvm/Support/CommandLine.h"
371 // Tokenize the CommandLine to the command and the args to allow
380 static void lexCommand(std::string &Message, const std::string &CommandLine,
386 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
387 std::string::size_type pos = CommandLine.find_first_of(delimiters, 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);