Searched refs:Message (Results 1 - 25 of 139) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/
H A DDiagnostic.cpp20 DiagnosticMessage::DiagnosticMessage(llvm::StringRef Message) argument
21 : Message(Message), FileOffset(0) {}
23 DiagnosticMessage::DiagnosticMessage(llvm::StringRef Message, argument
26 : Message(Message), FileOffset(0) {
43 const DiagnosticMessage &Message,
46 : DiagnosticName(DiagnosticName), Message(Message), Notes(Notes),
50 if (!D.Message
42 Diagnostic(llvm::StringRef DiagnosticName, const DiagnosticMessage &Message, const SmallVector<DiagnosticMessage, 1> &Notes, Level DiagLevel, llvm::StringRef BuildDirectory) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DPrettyStackTrace.h29 const char *Message; member in class:clang::PrettyStackTraceLoc
32 : SM(sm), Loc(L), Message(Msg) {}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSymbolRemappingReader.h71 SymbolRemappingParseError(StringRef File, int64_t Line, Twine Message) argument
72 : File(File), Line(Line), Message(Message.str()) {}
75 OS << File << ':' << Line << ": " << Message; variable
83 StringRef getMessage() const { return Message; }
90 std::string Message; member in class:llvm::SymbolRemappingParseError
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DDiagnostic.h32 DiagnosticMessage(llvm::StringRef Message = "");
40 DiagnosticMessage(llvm::StringRef Message, const SourceManager &Sources,
42 std::string Message; member in struct:clang::tooling::DiagnosticMessage
63 Diagnostic(llvm::StringRef DiagnosticName, const DiagnosticMessage &Message,
70 /// Message associated to the diagnostic.
71 DiagnosticMessage Message; member in struct:clang::tooling::Diagnostic
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DPrettyDeclStackTrace.h34 const char *Message; member in class:clang::PrettyDeclStackTraceEntry
39 : Context(Ctx), TheDecl(D), Loc(Loc), Message(Msg) {}
/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Duterror.c343 const char *Message; local
356 Message = "Failure creating";
362 Message = "Failure looking up";
368 Message = "Failure looking up";
376 AcpiOsPrintf ("%s [%s], %s", Message,
465 * Message - Error message to use on failure
480 const char *Message,
502 AcpiNsPrintNodePathname (Node, Message);
477 AcpiUtMethodError( const char *ModuleName, UINT32 LineNumber, const char *Message, ACPI_NAMESPACE_NODE *PrefixNode, const char *Path, ACPI_STATUS MethodStatus) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_utils.cpp46 char Message[256]; local
49 internal_memcpy(Message, ScudoError, PrefixSize);
50 VSNPrintf(Message + PrefixSize, sizeof(Message) - PrefixSize, Format, Args);
52 LogMessageOnPrintf(Message);
54 SetAbortMessage(Message);
55 RawWrite(Message);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.h35 YAMLParseError(StringRef Message, SourceMgr &SM, yaml::Stream &Stream,
38 YAMLParseError(StringRef Message) : Message(Message) {} argument
40 void log(raw_ostream &OS) const override { OS << Message; } variable
46 std::string Message; member in class:llvm::remarks::YAMLParseError
81 Error error(StringRef Message, yaml::Node &Node);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DDiagnosticsYaml.h31 Io.mapRequired("Message", M.Message);
60 : DiagnosticName(D.DiagnosticName), Message(D.Message), Notes(D.Notes),
64 return clang::tooling::Diagnostic(DiagnosticName, Message, Notes,
69 clang::tooling::DiagnosticMessage Message; member in class:llvm::yaml::MappingTraits::NormalizedDiagnostic
80 Io.mapRequired("DiagnosticMessage", Keys->Message);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dreport.cpp20 ScopedErrorReport() : Message(512) { Message.append("Scudo ERROR: "); }
24 Message.append(Format, Args);
28 outputRaw(Message.data());
29 setAbortMessage(Message.data());
34 ScopedString Message; member in class:scudo::ScopedErrorReport
53 void NORETURN reportError(const char *Message) { argument
55 Report.append("%s\n", Message);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/
H A DSupport.h29 std::string Message; member in class:llvm::mca::InstructionError
33 : Message(std::move(M)), Inst(MCI) {}
35 void log(raw_ostream &OS) const override { OS << Message; } variable
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DInvalidatedIteratorChecker.cpp34 void reportBug(const StringRef &Message, const SVal &Val,
80 void InvalidatedIteratorChecker::reportBug(const StringRef &Message, argument
84 Message, ErrNode);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DExecutionDriver.cpp147 std::string Message; local
162 AbstractInterpreter::createJIT(getToolName(), Message, &ToolArgv);
167 getToolName(), Message, CCBinary, &ToolArgv, &CCToolArgv);
172 AbstractInterpreter::createLLI(getToolName(), Message, &ToolArgv);
176 Message = "Sorry, I can't automatically select an interpreter!\n";
181 AbstractInterpreter::createLLI(getToolName(), Message, &ToolArgv);
187 getToolName(), Message, CCBinary, &ToolArgv, &CCToolArgv,
192 AbstractInterpreter::createJIT(getToolName(), Message, &ToolArgv);
196 getToolName(), Message, CustomCompileCommand);
200 getToolName(), Message, CustomExecComman
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp44 std::string Message; local
46 Message = EIB.message();
49 *OutMessage = strdup(Message.c_str());
90 std::string Message; local
92 Message = EIB.message();
95 *OutMessage = strdup(Message.c_str());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp89 StringRef Message,
99 emitDiagnosticMessage(Loc, PresumedLoc(), Level, Message, Ranges, D);
127 emitDiagnosticMessage(Loc, PLoc, Level, Message, Ranges, D);
149 void DiagnosticRenderer::emitBasicNote(StringRef Message) { argument
151 Message, None, DiagOrStoredDiag()); local
440 llvm::raw_svector_ostream Message(MessageStorage);
444 Message << "expanded from here";
446 Message << "expanded from macro '" << MacroName << "'";
448 emitDiagnostic(SpellingLoc, DiagnosticsEngine::Note, Message.str(),
578 llvm::raw_svector_ostream Message(MessageStorag
87 emitDiagnostic(FullSourceLoc Loc, DiagnosticsEngine::Level Level, StringRef Message, ArrayRef<CharSourceRange> Ranges, ArrayRef<FixItHint> FixItHints, DiagOrStoredDiag D) argument
[all...]
H A DTestModuleFileExtension.cpp33 SmallString<64> Message; local
36 raw_svector_ostream OS(Message);
40 uint64_t Record[] = {FIRST_EXTENSION_RECORD_ID, Message.size()};
41 Stream.EmitRecordWithBlob(Abbrev, Record, Message);
76 StringRef Message = Blob.substr(0, Record[0]); local
78 Message.str().c_str());
/freebsd-11-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsdebug.c171 const char *Message);
179 * Message - Prefix message
189 const char *Message)
210 if (Message)
212 ACPI_DEBUG_PRINT_RAW ((ACPI_DB_DISPATCH, "%s ", Message));
187 AcpiDsPrintNodePathname( ACPI_NAMESPACE_NODE *Node, const char *Message) argument
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.h21 LLVM_ATTRIBUTE_NORETURN extern void error(Twine Message);
/freebsd-11-stable/tools/tools/mid/
H A Dmid-index52 if (/^Message-id:\s+\<([^$idsep]+)/oi) {
54 } elsif (/^Resent-Message-id:\s+\<([^$idsep]+)/oi) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DDelayedDiagnostic.cpp46 DD.AvailabilityData.Message = MessageData;
66 delete[] AvailabilityData.Message;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DMachException.h86 struct Message { struct in class:lldb_private::process_darwin::MachException
91 Message() : state() { function in struct:lldb_private::process_darwin::MachException::Message
106 typedef std::vector<Message> collection;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DDiagnosticRenderer.h78 StringRef Message,
103 void emitBasicNote(StringRef Message);
129 /// \param Message The diagnostic message to emit.
133 StringRef Message, ArrayRef<CharSourceRange> Ranges,
158 virtual void emitNote(FullSourceLoc Loc, StringRef Message) = 0;
H A DTextDiagnostic.h66 /// \param Message The text actually printed
73 StringRef Message, unsigned CurrentColumn,
78 DiagnosticsEngine::Level Level, StringRef Message,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp45 static void warn(Twine Message, Twine Whence = "", argument
51 errs() << Message << "\n";
56 static void exitWithError(Twine Message, Twine Whence = "", argument
62 errs() << Message << "\n";
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DStandaloneExecution.cpp15 static llvm::Error make_string_error(const llvm::Twine &Message) { argument
16 return llvm::make_error<llvm::StringError>(Message,

Completed in 161 milliseconds

123456