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

1 2

  /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/IR/
LLVMContext.cpp 101 void LLVMContext::emitError(const Twine &ErrorStr) {
102 emitError(0U, ErrorStr);
105 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
112 return emitError(LocCookie, ErrorStr);
115 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
118 errs() << "error: " << ErrorStr << "\n";
123 SMDiagnostic Diag("", SourceMgr::DK_Error, ErrorStr.str());
  /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 44 std::string *ErrorStr,
50 std::string *ErrorStr,
55 std::string *ErrorStr) = 0;
403 std::string *ErrorStr,
410 .setErrorStr(ErrorStr)
421 std::string *ErrorStr,
428 if (ErrorStr)
429 *ErrorStr = "JIT has not been linked in.";
437 EB.setErrorStr(ErrorStr);
446 if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0
    [all...]
  /external/llvm/include/llvm/IR/
LLVMContext.h 91 void emitError(unsigned LocCookie, const Twine &ErrorStr);
92 void emitError(const Instruction *I, const Twine &ErrorStr);
93 void emitError(const Twine &ErrorStr);
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 139 std::string *ErrorStr,
145 std::string *ErrorStr,
149 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr);
189 std::string *ErrorStr = 0,
201 std::string *ErrorStr = 0,
501 std::string *ErrorStr;
517 ErrorStr = NULL;
571 ErrorStr = e;
  /external/clang/lib/Basic/
FileManager.cpp 434 getBufferForFile(const FileEntry *Entry, std::string *ErrorStr,
449 if (ErrorStr)
450 *ErrorStr = ec.message();
461 if (ec && ErrorStr)
462 *ErrorStr = ec.message();
469 if (ec && ErrorStr)
470 *ErrorStr = ec.message();
475 getBufferForFile(StringRef Filename, std::string *ErrorStr) {
480 if (ec && ErrorStr)
481 *ErrorStr = ec.message()
    [all...]
SourceManager.cpp 99 std::string ErrorStr;
102 &ErrorStr,
125 ContentsEntry->getName(), ErrorStr);
128 << ContentsEntry->getName() << ErrorStr;
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 107 std::string *ErrorStr,
MCJIT.cpp 41 std::string *ErrorStr,
  /external/clang/include/clang/Basic/
FileManager.h 239 std::string *ErrorStr = 0,
242 std::string *ErrorStr = 0);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 193 std::string ErrorStr;
197 ErrorStr = Msg.str();
334 StringRef getErrorString() { return ErrorStr; }
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 220 std::string ErrorStr;
222 if (!sys::Memory::setExecutable(Data, &ErrorStr))
223 return Error("unable to mark function executable: '" + ErrorStr + "'");
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 355 std::string ErrorStr;
358 CI.getFileManager().getBufferForFile(LinkBCFile, &ErrorStr);
361 << LinkBCFile << ErrorStr;
365 LinkModuleToUse = getLazyBitcodeModule(BCBuf, *VMContext, &ErrorStr);
368 << LinkBCFile << ErrorStr;
  /external/clang/include/clang/Serialization/
ModuleManager.h 183 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
193 std::string &ErrorStr);
  /external/clang/lib/Serialization/
ModuleManager.cpp 59 std::string &ErrorStr) {
69 ErrorStr = "file not found";
98 ErrorStr = ec.message();
100 New->Buffer.reset(FileMgr.getBufferForFile(FileName, &ErrorStr));
GlobalModuleIndex.cpp 471 std::string ErrorStr;
472 Buffer.reset(FileMgr.getBufferForFile(File, &ErrorStr, /*isVolatile=*/true));
ASTReader.cpp     [all...]
  /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 341 virtual bool CheckInvariants(std::string &ErrorStr);
686 bool DefaultJITMemoryManager::CheckInvariants(std::string &ErrorStr) {
687 raw_string_ostream Err(ErrorStr);
    [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 529 std::string ErrorStr =
533 if (!ErrorStr.empty())
534 return Error(Loc, ErrorStr.c_str());
  /external/chromium_org/content/common/gpu/media/
vaapi_wrapper.cc 119 VAAPI_SYM(ErrorStr, vaapi_handle);
442 VAAPI_DLSYM_OR_RETURN_ON_ERROR(ErrorStr, vaapi_handle);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 111 static ExecutionEngine *create(Module *M, std::string *ErrorStr = 0);
  /external/clang/include/clang/Frontend/
ASTUnit.h 644 std::string *ErrorStr = 0);
    [all...]

Completed in 655 milliseconds

1 2