Lines Matching refs:CmdPath
354 const std::string &CommandLine, std::string &CmdPath, in lexCommand() argument
394 CmdPath = *Path; in lexCommand()
396 Message = "Found command in: " + CmdPath + "\n"; in lexCommand()
405 std::string CmdPath; in createCustomCompiler() local
407 lexCommand(Argv0, Message, CompileCommandLine, CmdPath, Args); in createCustomCompiler()
408 if (CmdPath.empty()) in createCustomCompiler()
411 return new CustomCompiler(CmdPath, Args); in createCustomCompiler()
421 std::string CmdPath; in createCustomExecutor() local
423 lexCommand(Argv0, Message, ExecCommandLine, CmdPath, Args); in createCustomExecutor()
424 if (CmdPath.empty()) in createCustomExecutor()
427 return new CustomExecutor(CmdPath, Args); in createCustomExecutor()