HomeSort by: relevance | last modified time | path
    Searched refs:ErrorStr (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
TargetSelect.cpp 54 if (ErrorStr)
55 *ErrorStr = "No available targets are compatible with this -march, "
71 if (ErrorStr)
72 *ErrorStr = Error;
ExecutionEngine.cpp 51 std::unique_ptr<Module> M, std::string *ErrorStr,
57 std::string *ErrorStr) =nullptr;
473 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr),
511 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr))
521 if (ErrorStr)
522 *ErrorStr = "Cannot create an interpreter with a memory manager.";
538 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr),
551 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
552 if (ErrorStr)
553 *ErrorStr = "Interpreter has not been linked in."
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
LLVMContext.h 293 void emitError(unsigned LocCookie, const Twine &ErrorStr);
294 void emitError(const Instruction *I, const Twine &ErrorStr);
295 void emitError(const Twine &ErrorStr);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMContext.cpp 189 void LLVMContext::emitError(const Twine &ErrorStr) {
190 diagnose(DiagnosticInfoInlineAsm(ErrorStr));
193 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
195 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr));
251 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
252 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr));
  /src/sys/external/bsd/gnu-efi/dist/lib/
hw.c 28 IN CHAR8 *ErrorStr EFI_UNUSED,
42 ErrorStr - ASCII string to display on error
60 DEBUG ((D_INIT, "Device Already Loaded for %a device\n", ErrorStr));
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ModuleManager.cpp 80 std::string &ErrorStr) {
84 ErrorStr =
110 std::string &ErrorStr) {
126 ErrorStr = "module file out of date";
131 ErrorStr = "module file not found";
160 if (checkSignature(ModuleEntry->Signature, ExpectedSignature, ErrorStr))
222 ErrorStr = Buf.getError().message();
235 ExpectedSignature, ErrorStr))
ASTReader.cpp 2350 std::string ErrorStr = "could not find file '";
2351 ErrorStr += Filename;
2352 ErrorStr += "' referenced by AST file '";
2353 ErrorStr += F.FileName;
2354 ErrorStr += "'";
2355 Error(ErrorStr);
2400 std::string ErrorStr = "could not get buffer for file '";
2401 ErrorStr += File->getName();
2402 ErrorStr += "'";
2403 Error(ErrorStr);
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-as/
llvm-as.cpp 145 std::string ErrorStr;
146 raw_string_ostream OS(ErrorStr);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 140 std::unique_ptr<Module> M, std::string *ErrorStr,
146 std::string *ErrorStr);
539 std::string *ErrorStr;
585 ErrorStr = e;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCOFF.cpp 71 raw_string_ostream ErrStream(ErrorStr);
RuntimeDyldImpl.h 318 std::string ErrorStr;
564 StringRef getErrorString() { return ErrorStr; }
RuntimeDyldMachO.cpp 376 raw_string_ostream ErrStream(ErrorStr);
RuntimeDyld.cpp 133 ErrorStr = toString(std::move(Err));
RuntimeDyldELF.cpp 253 raw_string_ostream ErrStream(ErrorStr);
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ModuleManager.h 243 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
255 std::string &ErrorStr);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 102 std::string *ErrorStr = nullptr);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 303 createJIT(std::unique_ptr<Module> M, std::string *ErrorStr,
MCJIT.cpp 44 MCJIT::createJIT(std::unique_ptr<Module> M, std::string *ErrorStr,
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFStreamer.cpp 31 std::string ErrorStr;
37 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr);
39 return error(ErrorStr, Context), false;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 737 std::string ErrorStr;
739 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
741 ErrorAndExit("Error accessing target '" + TripleName + "': " + ErrorStr);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
llvm-jitlink.cpp 1230 std::string ErrorStr;
1231 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, ErrorStr);
1234 "': " + ErrorStr,
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
ASTUnit.h 652 getBufferForFile(StringRef Filename, std::string *ErrorStr = nullptr);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp 736 ASTUnit::getBufferForFile(StringRef Filename, std::string *ErrorStr) {
741 if (ErrorStr)
742 *ErrorStr = Buffer.getError().message();
  /src/sys/external/bsd/gnu-efi/dist/inc/
efilib.h 1026 IN CHAR8 *ErrorStr,
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 417 bool eatComma(StringRef ErrorStr);
7617 bool MipsAsmParser::eatComma(StringRef ErrorStr) {
7621 return Error(Loc, ErrorStr);

Completed in 108 milliseconds

1 2