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

1 2

  /external/llvm/include/llvm/
LLVMContext.h 82 void emitError(unsigned LocCookie, StringRef ErrorStr);
83 void emitError(const Instruction *I, StringRef ErrorStr);
84 void emitError(StringRef ErrorStr);
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 35 std::string *ErrorStr) {
52 *ErrorStr = "No available targets are compatible with this -march, "
66 if (ErrorStr)
67 *ErrorStr = Error;
ExecutionEngine.cpp 42 std::string *ErrorStr,
49 std::string *ErrorStr,
55 std::string *ErrorStr) = 0;
404 std::string *ErrorStr,
411 .setErrorStr(ErrorStr)
421 std::string *ErrorStr,
428 if (ErrorStr)
429 *ErrorStr = "JIT has not been linked in.";
440 EngineBuilder::selectTarget(M, MArch, MCPU, MAttrs, RM, CMM, ErrorStr);
441 if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0
    [all...]
  /external/llvm/utils/FileUpdate/
FileUpdate.cpp 72 std::string ErrorStr;
73 tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
75 if (!ErrorStr.empty()) {
77 << OutputFilename << "': " << ErrorStr << '\n';
  /external/llvm/lib/VMCore/
LLVMContext.cpp 81 void LLVMContext::emitError(StringRef ErrorStr) {
82 emitError(0U, ErrorStr);
85 void LLVMContext::emitError(const Instruction *I, StringRef ErrorStr) {
92 return emitError(LocCookie, ErrorStr);
95 void LLVMContext::emitError(unsigned LocCookie, StringRef ErrorStr) {
98 errs() << "error: " << ErrorStr << "\n";
103 SMDiagnostic Diag("", SourceMgr::DK_Error, ErrorStr.str());
  /external/clang/lib/Basic/
FileManager.cpp 481 getBufferForFile(const FileEntry *Entry, std::string *ErrorStr) {
490 if (ErrorStr)
491 *ErrorStr = ec.message();
502 if (ec && ErrorStr)
503 *ErrorStr = ec.message();
510 if (ec && ErrorStr)
511 *ErrorStr = ec.message();
516 getBufferForFile(StringRef Filename, std::string *ErrorStr) {
521 if (ec && ErrorStr)
522 *ErrorStr = ec.message()
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 56 std::string ErrorStr;
60 ErrorStr = Msg.str();
92 StringRef getErrorString() { return ErrorStr; }
RuntimeDyldMachO.cpp 408 std::string ErrorStr;
410 MachOObject::LoadFromBuffer(InputBuffer, &ErrorStr));
412 return Error("unable to load object: '" + ErrorStr + "'");
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 120 std::string ErrorStr;
122 if (!sys::Memory::setExecutable(Data, &ErrorStr))
123 return Error("unable to mark function executable: '" + ErrorStr + "'");
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 80 std::string *ErrorStr,
MCJIT.cpp 37 std::string *ErrorStr,
52 if (ErrorStr)
53 *ErrorStr = "target does not support JIT code generation";
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 133 std::string *ErrorStr,
140 std::string *ErrorStr,
145 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr);
185 std::string *ErrorStr = 0,
197 std::string *ErrorStr = 0,
461 std::string *ErrorStr;
475 ErrorStr = NULL;
510 ErrorStr = e;
  /external/llvm/lib/Object/
MachOObject.cpp 94 std::string *ErrorStr) {
107 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid magic)";
114 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid header)";
123 if (ErrorStr) *ErrorStr = "not a Mach object file (unreasonable header)";
127 if (ErrorStr) *ErrorStr = "";
  /external/clang/include/clang/Basic/
FileManager.h 209 std::string *ErrorStr = 0);
211 std::string *ErrorStr = 0);
  /external/clang/include/clang/Serialization/
ModuleManager.h 98 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
105 std::string &ErrorStr);
  /external/clang/lib/Serialization/
ModuleManager.cpp 38 Module *ImportedBy, std::string &ErrorStr) {
41 ErrorStr = "file not found";
67 ErrorStr = ec.message();
69 New->Buffer.reset(FileMgr.getBufferForFile(FileName, &ErrorStr));
  /external/llvm/include/llvm/Object/
MachOObject.h 89 /// \param ErrorStr [out] - If given, will be set to a user readable error
93 std::string *ErrorStr = 0);
  /external/llvm/tools/macho-dump/
macho-dump.cpp 377 std::string ErrorStr;
384 MachOObject::LoadFromBuffer(InputBuffer.take(), &ErrorStr));
386 return Error("unable to load object: '" + ErrorStr + "'");
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.h 186 std::string *ErrorStr,
JIT.cpp 207 std::string *ErrorStr,
221 if (ErrorStr)
222 *ErrorStr = "target does not support JIT code generation";
JITMemoryManager.cpp 320 virtual bool CheckInvariants(std::string &ErrorStr);
635 bool DefaultJITMemoryManager::CheckInvariants(std::string &ErrorStr) {
636 raw_string_ostream Err(ErrorStr);
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 438 std::string ErrorStr =
442 if (!ErrorStr.empty())
443 return Error(Loc, ErrorStr.c_str());
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 111 static ExecutionEngine *create(Module *M, std::string *ErrorStr = 0);
  /external/pcre/
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 591 std::string *ErrorStr = 0);

Completed in 611 milliseconds

1 2