Home
last modified time | relevance | path

Searched refs:Message (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/freebsd-13.1/contrib/googletest/googletest/test/
H A Dgoogletest-message-test.cc39 using ::testing::Message;
45 const Message msg; in TEST()
51 const Message msg1("Hello"); in TEST()
52 const Message msg2(msg1); in TEST()
58 Message msg("Hello"); in TEST()
83 EXPECT_NE("(null)", (Message() << p).GetString()); in TEST()
126 EXPECT_EQ("123", (Message() << 123).GetString()); in TEST()
133 (Message() << "Line 1." << std::endl in TEST()
140 Message msg; in TEST()
147 Message msg("Hello"); in TEST()
[all …]
/freebsd-13.1/contrib/googletest/googletest/include/gtest/
H A Dgtest-message.h89 class GTEST_API_ Message {
97 Message();
100 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() function
112 inline Message& operator <<(const T& value) {
119 inline Message& operator <<(const T& val) {
169 Message& operator <<(BasicNarrowIoManip val) {
175 Message& operator <<(bool b) {
182 Message& operator <<(wchar_t* wide_c_str);
193 Message& operator <<(const ::wstring& wstr);
231 void operator=(const Message&);
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/Core/
H A DDiagnostic.cpp21 DiagnosticMessage::DiagnosticMessage(llvm::StringRef Message) in DiagnosticMessage() argument
22 : Message(Message), FileOffset(0) {} in DiagnosticMessage()
24 DiagnosticMessage::DiagnosticMessage(llvm::StringRef Message, in DiagnosticMessage() argument
27 : Message(Message), FileOffset(0) { in DiagnosticMessage()
54 const DiagnosticMessage &Message, in Diagnostic() argument
57 : DiagnosticName(DiagnosticName), Message(Message), Notes(Notes), in Diagnostic()
61 if (!D.Message.Fix.empty()) in selectFirstFix()
62 return &D.Message.Fix; in selectFirstFix()
/freebsd-13.1/contrib/llvm-project/llvm/tools/bugpoint/
H A DExecutionDriver.cpp145 std::string Message; in initializeExecutionEnvironment() local
165 getToolName(), Message, CCBinary, &ToolArgv, &CCToolArgv); in initializeExecutionEnvironment()
184 getToolName(), Message, CCBinary, &ToolArgv, &CCToolArgv, in initializeExecutionEnvironment()
193 getToolName(), Message, CustomCompileCommand); in initializeExecutionEnvironment()
197 getToolName(), Message, CustomExecCommand); in initializeExecutionEnvironment()
201 errs() << Message; in initializeExecutionEnvironment()
203 outs() << Message; in initializeExecutionEnvironment()
231 getToolName(), Message, CustomExecCommand); in initializeExecutionEnvironment()
239 outs() << Message << "\nExiting.\n"; in initializeExecutionEnvironment()
243 cc = CC::create(getToolName(), Message, CCBinary, &CCToolArgv); in initializeExecutionEnvironment()
[all …]
H A DToolRunner.cpp225 Message = "Found lli: " + *LLIPath + "\n"; in createLLI()
228 Message = LLIPath.getError().message() + "\n"; in createLLI()
390 Message = std::string("Cannot find '") + Command + in lexCommand()
396 Message = "Found command in: " + CmdPath + "\n"; in lexCommand()
402 const char *Argv0, std::string &Message, in createCustomCompiler() argument
515 Message = LLCPath.getError().message() + "\n"; in createLLC()
521 errs() << Message << "\n"; in createLLC()
524 Message = "Found llc: " + *LLCPath + "\n"; in createLLC()
596 Message = "Found lli: " + *LLIPath + "\n"; in createJIT()
599 Message = LLIPath.getError().message() + "\n"; in createJIT()
[all …]
H A DToolRunner.h51 static CC *create(const char *Argv0, std::string &Message,
86 static LLC *createLLC(const char *Argv0, std::string &Message,
93 createLLI(const char *Argv0, std::string &Message,
97 createJIT(const char *Argv0, std::string &Message,
101 createCustomCompiler(const char *Argv0, std::string &Message,
105 createCustomExecutor(const char *Argv0, std::string &Message,
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp447 llvm::raw_svector_ostream Message(MessageStorage); in emitSingleMacroExpansion() local
451 Message << "expanded from here"; in emitSingleMacroExpansion()
585 llvm::raw_svector_ostream Message(MessageStorage); in emitMacroExpansions() local
589 emitBasicNote(Message.str()); in emitMacroExpansions()
603 llvm::raw_svector_ostream Message(MessageStorage); in emitIncludeLocation() local
606 emitNote(Loc, Message.str()); in emitIncludeLocation()
614 llvm::raw_svector_ostream Message(MessageStorage); in emitImportLocation() local
615 Message << "in module '" << ModuleName; in emitImportLocation()
619 Message << ":"; in emitImportLocation()
620 emitNote(Loc, Message.str()); in emitImportLocation()
[all …]
H A DTestModuleFileExtension.cpp35 SmallString<64> Message; in writeExtensionContents() local
38 raw_svector_ostream OS(Message); in writeExtensionContents()
42 uint64_t Record[] = {FIRST_EXTENSION_RECORD_ID, Message.size()}; in writeExtensionContents()
43 Stream.EmitRecordWithBlob(Abbrev, Record, Message); in writeExtensionContents()
78 StringRef Message = Blob.substr(0, Record[0]); in Reader() local
80 Message.str().c_str()); in Reader()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DSymbolRemappingReader.h71 SymbolRemappingParseError(StringRef File, int64_t Line, const Twine &Message) in SymbolRemappingParseError() argument
72 : File(File), Line(Line), Message(Message.str()) {} in SymbolRemappingParseError()
75 OS << File << ':' << Line << ": " << Message; in log()
83 StringRef getMessage() const { return Message; } in getMessage()
90 std::string Message; variable
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_utils.cpp46 char Message[256]; in dieWithMessage() local
49 internal_memcpy(Message, ScudoError, PrefixSize); in dieWithMessage()
50 VSNPrintf(Message + PrefixSize, sizeof(Message) - PrefixSize, Format, Args); in dieWithMessage()
52 LogMessageOnPrintf(Message); in dieWithMessage()
54 SetAbortMessage(Message); in dieWithMessage()
55 RawWrite(Message); in dieWithMessage()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.h35 YAMLParseError(StringRef Message, SourceMgr &SM, yaml::Stream &Stream,
38 YAMLParseError(StringRef Message) : Message(std::string(Message)) {} in YAMLParseError() argument
40 void log(raw_ostream &OS) const override { OS << Message; } in log()
46 std::string Message;
81 Error error(StringRef Message, yaml::Node &Node);
/freebsd-13.1/sys/contrib/dev/acpica/components/utilities/
H A Duterror.c343 const char *Message; in AcpiUtPrefixedNamespaceError() local
356 Message = "Failure creating named object"; in AcpiUtPrefixedNamespaceError()
362 Message = "Could not resolve symbol"; in AcpiUtPrefixedNamespaceError()
368 Message = "Failure resolving symbol"; in AcpiUtPrefixedNamespaceError()
376 AcpiOsPrintf ("%s [%s], %s", Message, in AcpiUtPrefixedNamespaceError()
480 const char *Message, in AcpiUtMethodError() argument
502 AcpiNsPrintNodePathname (Node, Message); in AcpiUtMethodError()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dreport.cpp20 ScopedErrorReport() : Message() { Message.append("Scudo ERROR: "); } in ScopedErrorReport()
24 Message.append(Format, Args); in append()
28 outputRaw(Message.data()); in ~ScopedErrorReport()
29 setAbortMessage(Message.data()); in ~ScopedErrorReport()
34 ScopedString Message; member in scudo::ScopedErrorReport
53 void NORETURN reportError(const char *Message) { in reportError() argument
55 Report.append("%s\n", Message); in reportError()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DDiagnostic.h43 DiagnosticMessage(llvm::StringRef Message = "");
51 DiagnosticMessage(llvm::StringRef Message, const SourceManager &Sources,
54 std::string Message; member
80 Diagnostic(llvm::StringRef DiagnosticName, const DiagnosticMessage &Message,
88 DiagnosticMessage Message; member
/freebsd-13.1/sys/contrib/device-tree/Bindings/net/can/
H A Dbosch,m_can.yaml54 Message RAM configuration data.
55 Multiple M_CAN instances can share the same Message RAM
57 in Message RAM is also configurable, so this property is
58 telling driver how the shared or private Message RAM are
63 The 'offset' is an address offset of the Message RAM where
65 0x0 if you're using a private Message RAM. The remain cells
77 Please refer to 2.4.1 Message RAM Configuration in Bosch
82 - description: The 'offset' is an address offset of the Message RAM where
84 you're using a private Message RAM.
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp44 std::string Message; in LLVMParseBitcodeInContext() local
46 Message = EIB.message(); in LLVMParseBitcodeInContext()
49 *OutMessage = strdup(Message.c_str()); in LLVMParseBitcodeInContext()
90 std::string Message; in LLVMGetBitcodeModuleInContext() local
92 Message = EIB.message(); in LLVMGetBitcodeModuleInContext()
95 *OutMessage = strdup(Message.c_str()); in LLVMGetBitcodeModuleInContext()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dutilities_fuchsia.cpp15 void die(const char *Message) { in die() argument
16 __sanitizer_log_write(Message, strlen(Message)); in die()
H A Dutilities_posix.cpp20 void die(const char *Message) { in die() argument
23 android_set_abort_message(Message); in die()
26 fprintf(stderr, "%s", Message); in die()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/
H A DDiagnosticsYaml.h40 Io.mapRequired("Message", M.Message); in LLVM_YAML_IS_SEQUENCE_VECTOR()
70 : DiagnosticName(D.DiagnosticName), Message(D.Message), Notes(D.Notes), in LLVM_YAML_IS_SEQUENCE_VECTOR()
74 return clang::tooling::Diagnostic(DiagnosticName, Message, Notes, in LLVM_YAML_IS_SEQUENCE_VECTOR()
79 clang::tooling::DiagnosticMessage Message; in LLVM_YAML_IS_SEQUENCE_VECTOR()
89 Io.mapRequired("DiagnosticMessage", Keys->Message); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dutilities.h18 void die(const char *Message);
21 GWP_ASAN_ALWAYS_INLINE void Check(bool Condition, const char *Message) { in Check() argument
24 die(Message); in Check()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineCost.h160 const char *Message = nullptr; variable
161 InlineResult(const char *Message = nullptr) : Message(Message) {} in Message() argument
168 bool isSuccess() const { return Message == nullptr; } in isSuccess()
172 return Message; in getFailureReason()
/freebsd-13.1/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsdebug.c171 const char *Message);
189 const char *Message) in AcpiDsPrintNodePathname() argument
210 if (Message) in AcpiDsPrintNodePathname()
212 ACPI_DEBUG_PRINT_RAW ((ACPI_DB_DISPATCH, "%s ", Message)); in AcpiDsPrintNodePathname()
/freebsd-13.1/sys/contrib/device-tree/Bindings/mailbox/
H A Dti,message-manager.txt1 Texas Instruments' Message Manager Driver
4 The Texas Instruments' Message Manager is a mailbox controller that has
5 configurable queues selectable at SoC(System on Chip) integration. The Message
10 Message Manager Device Node:
/freebsd-13.1/contrib/file/magic/Magdir/
H A Dcommunications20 0 string mscdocument Message Sequence Chart (document)
21 0 string msc Message Sequence Chart (chart)
22 0 string submsc Message Sequence Chart (subchart)
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/
H A DSupport.h30 std::string Message; variable
34 : Message(std::move(M)), Inst(MCI) {} in InstructionError()
36 void log(raw_ostream &OS) const override { OS << Message; } in log()

12345678910>>...15