Lines Matching refs:CmdPath
410 std::string &CmdPath, std::vector<std::string> &Args) { in lexCommand() argument
437 CmdPath = *Path; in lexCommand()
439 Message = "Found command in: " + CmdPath + "\n"; in lexCommand()
448 std::string CmdPath; in createCustomCompiler() local
450 lexCommand(Message, CompileCommandLine, CmdPath, Args); in createCustomCompiler()
451 if (CmdPath.empty()) in createCustomCompiler()
454 return new CustomCompiler(CmdPath, Args); in createCustomCompiler()
464 std::string CmdPath; in createCustomExecutor() local
466 lexCommand(Message, ExecCommandLine, CmdPath, Args); in createCustomExecutor()
467 if (CmdPath.empty()) in createCustomExecutor()
470 return new CustomExecutor(CmdPath, Args); in createCustomExecutor()