Lines Matching refs:Message
222 AbstractInterpreter::createLLI(const char *Argv0, std::string &Message, in createLLI() argument
226 Message = "Found lli: " + *LLIPath + "\n"; in createLLI()
229 Message = LLIPath.getError().message() + "\n"; in createLLI()
354 static void lexCommand(const char *Argv0, std::string &Message, in lexCommand() argument
391 Message = std::string("Cannot find '") + Command + in lexCommand()
397 Message = "Found command in: " + CmdPath + "\n"; in lexCommand()
403 const char *Argv0, std::string &Message, in createCustomCompiler() argument
408 lexCommand(Argv0, Message, CompileCommandLine, CmdPath, Args); in createCustomCompiler()
419 std::string &Message, in createCustomExecutor() argument
424 lexCommand(Argv0, Message, ExecCommandLine, CmdPath, Args); in createCustomExecutor()
508 LLC *AbstractInterpreter::createLLC(const char *Argv0, std::string &Message, in createLLC() argument
516 Message = LLCPath.getError().message() + "\n"; in createLLC()
520 CC *cc = CC::create(Argv0, Message, CCBinary, CCArgs); in createLLC()
522 errs() << Message << "\n"; in createLLC()
525 Message = "Found llc: " + *LLCPath + "\n"; in createLLC()
593 AbstractInterpreter::createJIT(const char *Argv0, std::string &Message, in createJIT() argument
597 Message = "Found lli: " + *LLIPath + "\n"; in createJIT()
600 Message = LLIPath.getError().message() + "\n"; in createJIT()
843 CC *CC::create(const char *Argv0, std::string &Message, in create() argument
848 Message = "Cannot find `" + CCBinary + "' in PATH: " + in create()
857 Message = "Cannot find `" + RemoteClient + "' in PATH: " + in create()
864 Message = "Found CC: " + *CCPath + "\n"; in create()