HomeSort by relevance Sort by last modified time
    Searched refs:ErrorStr (Results 1 - 21 of 21) sorted by null

  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 61 if (ErrorStr)
62 *ErrorStr = "No available targets are compatible with this -march, "
76 if (ErrorStr)
77 *ErrorStr = Error;
ExecutionEngine.cpp 49 std::unique_ptr<Module> M, std::string *ErrorStr,
55 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MemMgr,
60 std::string *ErrorStr) =nullptr;
454 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr),
494 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr))
504 if (ErrorStr)
505 *ErrorStr = "Cannot create an interpreter with a memory manager.";
522 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr),
527 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr),
540 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
    [all...]
  /external/llvm/lib/IR/
LLVMContext.cpp 158 void LLVMContext::emitError(const Twine &ErrorStr) {
159 diagnose(DiagnosticInfoInlineAsm(ErrorStr));
162 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
164 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr));
224 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
225 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr));
  /external/llvm/include/llvm/IR/
LLVMContext.h 166 void emitError(unsigned LocCookie, const Twine &ErrorStr);
167 void emitError(const Instruction *I, const Twine &ErrorStr);
168 void emitError(const Twine &ErrorStr);
  /external/llvm/tools/llvm-as/
llvm-as.cpp 109 std::string ErrorStr;
110 raw_string_ostream OS(ErrorStr);
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 133 std::string *ErrorStr,
139 std::string *ErrorStr,
145 std::string *ErrorStr);
501 std::string *ErrorStr;
548 ErrorStr = e;
  /external/clang/examples/clang-interpreter/
main.cpp 46 createExecutionEngine(std::unique_ptr<llvm::Module> M, std::string *ErrorStr) {
49 .setErrorStr(ErrorStr)
  /external/clang/lib/Serialization/
ModuleManager.cpp 63 std::string &ErrorStr) {
77 ErrorStr = "module file out of date";
82 ErrorStr = "module file not found";
131 ErrorStr = Buf.getError().message();
150 ErrorStr = ModuleEntry->Signature ? "signature mismatch"
ASTReader.cpp     [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 316 std::string ErrorStr;
318 if (!sys::Memory::setExecutable(Data, &ErrorStr))
319 return Error("unable to mark function executable: '" + ErrorStr + "'");
487 std::string ErrorStr;
489 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
492 << ErrorStr << "\n";
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 260 std::string ErrorStr;
264 ErrorStr = Msg.str();
431 StringRef getErrorString() { return ErrorStr; }
  /external/clang/include/clang/Serialization/
ModuleManager.h 199 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
211 std::string &ErrorStr);
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 575 std::string ErrorStr =
579 if (!ErrorStr.empty())
580 return Error(Loc, ErrorStr.c_str());
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 125 std::string *ErrorStr = nullptr);
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 296 std::string *ErrorStr,
MCJIT.cpp 47 std::string *ErrorStr,
  /external/pcre/dist/
pcregexp.pas 88 function ErrorStr : string; virtual;
679 function TpcRegExp.ErrorStr:string;
681 ErrorStr:=StrPas(ErrorMsg);
822 MessageBox(GetString(erRegExpCompile)+'"'+P^.ErrorStr+'"', nil,mfConfirmation+mfOkButton)
824 MessageBox(GetString(erRegExpCompile)+'"'+P^.ErrorStr+'"'+GetString(erRegExpCompPos),
  /external/clang/include/clang/Frontend/
ASTUnit.h 699 getBufferForFile(StringRef Filename, std::string *ErrorStr = nullptr);
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 632 ASTUnit::getBufferForFile(StringRef Filename, std::string *ErrorStr) {
637 if (ErrorStr)
638 *ErrorStr = Buffer.getError().message();
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 465 std::string ErrorStr;
471 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr);
473 return error(ErrorStr, Context);
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 254 bool eatComma(StringRef ErrorStr);
    [all...]

Completed in 603 milliseconds