Lines Matching full:commandline
17 #include "llvm/Support/CommandLine.h"
369 // Tokenize the CommandLine to the command and the args to allow
378 static void lexCommand(std::string &Message, const std::string &CommandLine,
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);
388 std::string token = CommandLine.substr(lastPos, pos - lastPos);
394 lastPos = CommandLine.find_first_not_of(delimiters, pos);
396 pos = CommandLine.find_first_of(delimiters, lastPos);