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

1 2

  /src/external/apache2/llvm/dist/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 67 static Error reportError(StringRef Message) {
81 return reportError(
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Main.cpp 58 static int reportError(const char *ProgName, Twine Msg) {
70 return reportError(argv0, "the option -d must be used together with -o\n");
75 return reportError(argv0, "error opening " + DependFilename + ":" +
98 return reportError(argv0, "Could not open input file '" + InputFilename +
149 return reportError(argv0, "error opening " + OutputFilename + ": " +
160 return reportError(argv0, Twine(ErrorsPrinted) + " errors.\n");
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
obj2yaml.cpp 66 static void reportError(StringRef Input, Error Err) {
85 reportError(InputFilename, std::move(Err));
  /src/external/gpl2/rcs/dist/src/
ident.c 38 * (exiterr, reportError): New functions, needed for DOS and OS/2 ports.
106 static void reportError P((char const*));
145 reportError(a);
155 reportError("standard output");
171 reportError(s)
210 reportError(name);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mt/
llvm-mt.cpp 67 LLVM_ATTRIBUTE_NORETURN static void reportError(Twine Msg) {
72 static void reportError(StringRef Input, std::error_code EC) {
73 reportError(Twine(Input) + ": " + EC.message());
79 reportError(EI.message());
101 reportError(OS.str());
119 reportError("no input file specified");
128 reportError("no output file specified");
137 reportError(File, ManifestOrErr.getError());
144 reportError("empty manifest not written");
148 reportError(OutputFile, errorToErrorCode(FileOrErr.takeError()))
    [all...]
  /src/external/mit/expat/dist/xmlwf/
xmlfile.c 85 reportError(XML_Parser parser, const XML_Char *filename) {
106 reportError(parser, filename);
212 reportError(parser, filename != NULL ? filename : T("STDIN"));
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
OrcRPCTargetProcessControl.h 123 Parent.reportError(std::move(Err));
217 void reportError(Error Err) { Parent.reportError(std::move(Err)); }
267 Parent.reportError(std::move(Err));
284 RPCEndpointT &EP, ErrorReporter ReportError)
286 ReportError(std::move(ReportError)), EP(EP) {}
288 void reportError(Error Err) { ReportError(std::move(Err)); }
408 ErrorReporter ReportError;
    [all...]
Core.h 1328 ExecutionSession &setErrorReporter(ErrorReporter ReportError) {
1329 this->ReportError = std::move(ReportError);
1336 void reportError(Error Err) { ReportError(std::move(Err)); }
1506 ErrorReporter ReportError = logErrorsToStdErr;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DataLayout.cpp 212 static Error reportError(const Twine &Message) {
222 return reportError("Trailing separator in datalayout string");
224 return reportError("Expected token before separator in datalayout string");
232 return reportError("not a number, or does not fit in an unsigned int");
243 return reportError("number of bits must be a byte width multiple");
252 return reportError("Invalid address space, must be a 24-bit integer");
282 return reportError("Address space 0 can never be non-integral");
310 return reportError("Invalid address space, must be a 24bit integer");
314 return reportError(
322 return reportError("Invalid pointer size of 0 bytes")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
WasmEmitter.cpp 68 void reportError(const Twine &Msg);
126 void WasmWriter::reportError(const Twine &Msg) {
151 reportError("unknown opcode in init_expr: " + Twine(InitExpr.Opcode));
357 reportError("unexpected type index: " + Twine(Sig.Index));
402 reportError("unknown import type: " +Twine(Import.Kind));
436 reportError("unexpected table index: " + Twine(Table.Index));
458 reportError("unexpected event index: " + Twine(Event.Index));
473 reportError("unexpected global index: " + Twine(Global.Index));
498 reportError("unexpected elemkind: " + Twine(Segment.ElemKind));
519 reportError("unexpected function index: " + Twine(Func.Index))
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/
llvm-cvtres.cpp 70 static LLVM_ATTRIBUTE_NORETURN void reportError(Twine Msg) {
75 static void reportError(StringRef Input, std::error_code EC) {
76 reportError(Twine(Input) + ": " + EC.message() + ".\n");
83 reportError(Twine(Input) + ": " + EI.message() + ".\n");
91 [&](const ErrorInfoBase &EI) { reportError(EI.message()); });
137 reportError(Twine("Unsupported machine architecture ") + Arg->getValue() +
149 reportError("No input file specified.\n");
165 reportError(Twine("invalid timestamp: ") + Value +
182 reportError(File + ": unrecognized file format.\n");
203 reportError(DupeDiag)
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/clang-offload-wrapper/
ClangOffloadWrapper.cpp 331 auto reportError = [argv](Error E) {
336 reportError(createStringError(
350 reportError(createFileError(File, BufOrErr.getError()));
362 reportError(createFileError(Output, EC));
371 reportError(createFileError(Output, Out.os().error()));
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeAnalyzer.cpp 19 static Error reportError(StringRef Message) {
479 return reportError("Invalid bitcode wrapper header");
497 return reportError("Invalid bitcode wrapper header");
515 return reportError("Cannot decode empty blob.");
518 return reportError(
530 return reportError("bad length");
537 return reportError("truncated chars");
579 return reportError("Invalid record at top-level in block info file");
592 return reportError("Malformed BlockInfoBlock in block info file");
608 return reportError("Invalid record at top-level")
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llc/
llc.cpp 203 LLVM_ATTRIBUTE_NORETURN static void reportError(Twine Msg,
215 LLVM_ATTRIBUTE_NORETURN static void reportError(Error Err, StringRef Filename) {
218 [&](const ErrorInfoBase &EI) { reportError(EI.message()); });
219 llvm_unreachable("reportError() should not return");
282 reportError(EC.message());
380 reportError(std::move(E), RemarksFilename);
384 reportError("input language must be '', 'IR' or 'MIR'");
511 reportError("invalid relocation model, AIX only supports PIC",
586 reportError(EC.message(), SplitDwarfOutputFile);
603 reportError("input module cannot be verified", InputFilename)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
llvm-readobj.cpp 402 LLVM_ATTRIBUTE_NORETURN void reportError(Error Err, StringRef Input) {
480 reportError(DumperOrErr.takeError(), FileStr);
502 reportError(createError(ContentErrString), FileStr);
612 reportError(std::move(E), Arc->getFileName());
628 reportError(std::move(Err), Arc->getFileName());
639 reportError(ObjOrErr.takeError(), UBinary->getFileName());
650 reportError(std::move(Err), WinRes->getFileName());
660 return reportError(errorCodeToError(EC), File);
674 reportError(BinaryOrErr.takeError(), File);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
DependencyDirectivesSourceMinimizer.cpp 99 bool reportError(const char *CurPtr, unsigned Err);
109 bool Minimizer::reportError(const char *CurPtr, unsigned Err) {
623 return reportError(
629 return reportError(
694 return reportError(First, diag::err_pp_macro_not_identifier);
828 return reportError(First, diag::err_pp_expected_eol);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
SampleProfReader.h 418 void reportError(int64_t LineNumber, const Twine &Msg) const {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCChecker.cpp 298 reportError(
302 reportError(I.getLoc(),
325 reportError(MCB.getLoc(),
347 reportError(I.getLoc(),
353 reportError(I.getLoc(),
359 reportError(I.getLoc(),
382 reportError("invalid instruction packet: out of slots");
430 reportError(I.getLoc(), "New value register consumer has no producer");
441 reportError(I.getLoc(),
450 reportError(I.getLoc()
    [all...]
HexagonShuffler.cpp 276 reportError(Twine("too many branches in packet"));
306 reportError("invalid instruction packet: out of slots");
322 reportError("invalid instruction packet: slot error");
348 reportError(Twine("invalid instruction packet: slot error"));
393 reportError("invalid instruction packet: too many loads");
421 reportError("invalid instruction packet: too many stores");
432 reportError("invalid instruction packet: too many stores");
599 reportError("invalid instruction packet");
638 reportError(Twine("invalid instruction packet"));
687 void HexagonShuffler::reportError(Twine const &Msg)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/lli/
lli.cpp 417 static void reportError(SMDiagnostic Err, const char *ProgName) {
463 reportError(Err, argv[0]);
544 reportError(Err, argv[0]);
559 reportError(Err, argv[0]);
569 reportError(Err, argv[0]);
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransformActions.cpp 687 void TransformActions::reportError(StringRef message, SourceLocation loc,
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCContext.cpp 364 reportError(SMLoc(), "invalid symbol name from source");
474 reportError(SMLoc(), "invalid symbol redefinition");
948 void MCContext::reportError(SMLoc Loc, const Twine &Msg) {
959 reportError(Loc, Msg);
968 reportError(Loc, Msg);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cxxdump/
llvm-cxxdump.cpp 67 static void reportError(StringRef Input, StringRef Message) {
75 static void reportError(StringRef Input, std::error_code EC) {
76 reportError(Input, EC.message());
510 reportError(Arc->getFileName(), Buf);
519 reportError(Arc->getFileName(), cxxdump_error::unrecognized_file_format);
530 reportError(File, EC);
540 reportError(File, cxxdump_error::unrecognized_file_format);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lipo/
llvm-lipo.cpp 39 LLVM_ATTRIBUTE_NORETURN static void reportError(Twine Message) {
45 LLVM_ATTRIBUTE_NORETURN static void reportError(Error E) {
51 reportError(Buf);
54 LLVM_ATTRIBUTE_NORETURN static void reportError(StringRef File, Error E) {
124 reportError(A.getFileName(), ArchiveOrSlice.takeError());
131 reportError(IRO.getFileName(), IROrErr.takeError());
145 reportError(OS.str());
157 reportError("missing argument to " +
180 reportError("unknown argument '" + Arg->getAsString(InputArgs) + "'");
187 reportError(
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinker.h 401 void reportError(const Twine &Warning, const DWARFFile &File,

Completed in 70 milliseconds

1 2