Lines Matching refs:CmdPath
355 const std::string &CommandLine, std::string &CmdPath, in lexCommand() argument
395 CmdPath = *Path; in lexCommand()
397 Message = "Found command in: " + CmdPath + "\n"; in lexCommand()
406 std::string CmdPath; in createCustomCompiler() local
408 lexCommand(Argv0, Message, CompileCommandLine, CmdPath, Args); in createCustomCompiler()
409 if (CmdPath.empty()) in createCustomCompiler()
412 return new CustomCompiler(CmdPath, Args); in createCustomCompiler()
422 std::string CmdPath; in createCustomExecutor() local
424 lexCommand(Argv0, Message, ExecCommandLine, CmdPath, Args); in createCustomExecutor()
425 if (CmdPath.empty()) in createCustomExecutor()
428 return new CustomExecutor(CmdPath, Args); in createCustomExecutor()