Lines Matching full:cmdpath
409 std::string &CmdPath, std::vector<std::string> Args) {
429 CmdPath = sys::FindProgramByName(Command);
430 if (CmdPath.empty()) {
437 Message = "Found command in: " + CmdPath + "\n";
446 std::string CmdPath;
448 lexCommand(Message, CompileCommandLine, CmdPath, Args);
449 if (CmdPath.empty())
452 return new CustomCompiler(CmdPath, Args);
462 std::string CmdPath;
464 lexCommand(Message, ExecCommandLine, CmdPath, Args);
465 if (CmdPath.empty())
468 return new CustomExecutor(CmdPath, Args);