Searched refs:Err (Results 26 - 37 of 37) sorted by relevance

12

/freebsd-10.3-release/contrib/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp212 std::string Err; local
214 new tool_output_file(OutputFilename.c_str(), Err, sys::fs::F_Binary);
215 if (!Err.empty()) {
216 errs() << Err << '\n';
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/
H A DTargetSchedule.cpp215 std::string Err; local
216 raw_string_ostream ss(Err);
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DErrorOr.h289 operator ==(ErrorOr<T> &Err, E Code) { argument
290 return error_code(Err) == Code;
/freebsd-10.3-release/contrib/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp636 std::string Err; local
637 OS = new raw_fd_ostream(SecureLogFile, Err, sys::fs::F_Append);
638 if (!Err.empty()) {
641 SecureLogFile + " (" + Err + ")");
/freebsd-10.3-release/contrib/llvm/lib/AsmParser/
H A DLLParser.h135 LLParser(MemoryBuffer *F, SourceMgr &SM, SMDiagnostic &Err, Module *m) : argument
136 Context(m->getContext()), Lex(F, SM, Err, m->getContext()),
H A DLLLexer.cpp160 LLLexer::LLLexer(MemoryBuffer *StartBuf, SourceMgr &sm, SMDiagnostic &Err, argument
162 : CurBuf(StartBuf), ErrorInfo(Err), SM(sm), Context(C), APFloatVal(0.0) {
/freebsd-10.3-release/contrib/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp319 static bool Error(const std::string &Err) { argument
320 errs() << Err << "\n";
/freebsd-10.3-release/contrib/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp688 error_code Err; local
691 I != E; I.increment(Err), failIfError(Err)) {
/freebsd-10.3-release/contrib/llvm/tools/opt/
H A Dopt.cpp615 SMDiagnostic Err; local
619 M.reset(ParseIRFile(InputFilename, Err, Context));
622 Err.print(argv[0], errs());
/freebsd-10.3-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp34 error_code check(error_code Err) { argument
35 if (Err) {
36 report_fatal_error(Err.message());
38 return Err;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DDriver.cpp523 std::string Err; local
527 Script.c_str(), Err, llvm::sys::fs::F_Excl | llvm::sys::fs::F_Binary);
528 if (!Err.empty()) {
530 << "Error generating run script: " + Script + " " + Err; local
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclAttr.cpp1574 int Err = -1; // No error local
1579 Err = 0;
1583 Err = 1;
1586 if (-1 != Err) {
1587 S.Diag(AL.getLoc(), diag::err_ownership_type) << AL.getName() << Err

Completed in 221 milliseconds

12