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