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 85 void emitError(unsigned LocCookie, const Twine &ErrorStr);
86 void emitError(const Instruction *I, const Twine &ErrorStr);
87 void emitError(const Twine &ErrorStr);
  /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 91 void LLVMContext::emitError(const Twine &ErrorStr) {
92 emitError(0U, ErrorStr);
95 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
102 return emitError(LocCookie, ErrorStr);
105 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
108 errs() << "error: " << ErrorStr << "\n";
113 SMDiagnostic Diag("", SourceMgr::DK_Error, ErrorStr.str());
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 59 *ErrorStr = "No available targets are compatible with this -march, "
73 if (ErrorStr)
74 *ErrorStr = Error;
ExecutionEngine.cpp 43 std::string *ErrorStr,
49 std::string *ErrorStr,
54 std::string *ErrorStr) = 0;
402 std::string *ErrorStr,
409 .setErrorStr(ErrorStr)
420 std::string *ErrorStr,
427 if (ErrorStr)
428 *ErrorStr = "JIT has not been linked in.";
436 EB.setErrorStr(ErrorStr);
445 if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0
    [all...]
  /external/clang/lib/Basic/
FileManager.cpp 486 getBufferForFile(const FileEntry *Entry, std::string *ErrorStr) {
495 if (ErrorStr)
496 *ErrorStr = ec.message();
507 if (ec && ErrorStr)
508 *ErrorStr = ec.message();
515 if (ec && ErrorStr)
516 *ErrorStr = ec.message();
521 getBufferForFile(StringRef Filename, std::string *ErrorStr) {
526 if (ec && ErrorStr)
527 *ErrorStr = ec.message()
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 128 std::string ErrorStr;
130 if (!sys::Memory::setExecutable(Data, &ErrorStr))
131 return Error("unable to mark function executable: '" + ErrorStr + "'");
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 88 std::string *ErrorStr,
MCJIT.cpp 37 std::string *ErrorStr,
50 if (ErrorStr)
51 *ErrorStr = "target does not support JIT code generation";
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 136 std::string *ErrorStr,
142 std::string *ErrorStr,
146 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr);
186 std::string *ErrorStr = 0,
198 std::string *ErrorStr = 0,
482 std::string *ErrorStr;
497 ErrorStr = NULL;
533 ErrorStr = e;
  /external/llvm/lib/Object/
MachOObject.cpp 95 std::string *ErrorStr) {
108 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid magic)";
115 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid header)";
124 if (ErrorStr) *ErrorStr = "not a Mach object file (unreasonable header)";
128 if (ErrorStr) *ErrorStr = "";
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 143 std::string ErrorStr;
147 ErrorStr = Msg.str();
250 StringRef getErrorString() { return ErrorStr; }
  /external/clang/include/clang/Basic/
FileManager.h 210 std::string *ErrorStr = 0);
212 std::string *ErrorStr = 0);
  /external/clang/include/clang/Serialization/
ModuleManager.h 100 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
107 unsigned Generation, std::string &ErrorStr);
  /external/clang/lib/Serialization/
ModuleManager.cpp 39 std::string &ErrorStr) {
42 ErrorStr = "file not found";
68 ErrorStr = ec.message();
70 New->Buffer.reset(FileMgr.getBufferForFile(FileName, &ErrorStr));
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 336 std::string ErrorStr;
339 CI.getFileManager().getBufferForFile(LinkBCFile, &ErrorStr);
342 << LinkBCFile << ErrorStr;
346 LinkModuleToUse = getLazyBitcodeModule(BCBuf, *VMContext, &ErrorStr);
349 << LinkBCFile << 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/clang/lib/Frontend/
FrontendActions.cpp 272 std::string ErrorStr;
274 = FileMgr.getBufferForFile(UmbrellaHeader, &ErrorStr);
277 << UmbrellaHeader->getName() << ErrorStr;
  /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 208 std::string *ErrorStr,
221 if (ErrorStr)
222 *ErrorStr = "target does not support JIT code generation";
JITMemoryManager.cpp 337 virtual bool CheckInvariants(std::string &ErrorStr);
696 bool DefaultJITMemoryManager::CheckInvariants(std::string &ErrorStr) {
697 raw_string_ostream Err(ErrorStr);
    [all...]
  /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/clang/include/clang/Frontend/
ASTUnit.h 601 std::string *ErrorStr = 0);

Completed in 429 milliseconds

1 2