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

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/irreader/
irreader_ocaml.c 21 void llvm_raise(value Prototype, char *Message);
28 char *Message;
30 if (LLVMParseIRInContext(C, MemBuf, &M, &Message))
31 llvm_raise(*caml_named_value("Llvm_irreader.Error"), Message);
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
PrettyStackTrace.h 24 /// If a crash happens while one of these objects are live, the message
29 const char *Message;
32 : SM(sm), Loc(L), Message(Msg) {}
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
PrettyDeclStackTrace.h 34 const char *Message;
39 : Context(Ctx), TheDecl(D), Loc(Loc), Message(Msg) {}
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/analysis/
analysis_ocaml.c 30 char *Message;
31 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message);
36 String = copy_string(Message);
40 LLVMDisposeMessage(Message);
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest-message.h 33 // This header file defines the Message class.
60 // See Message& operator<<(...) below for why.
65 // The Message class works like an ostream repeater.
69 // 1. You stream a bunch of values to a Message object.
71 // 2. Then you stream the Message object to an ostream.
72 // This causes the text in the Message to be streamed
77 // testing::Message foo;
83 // Message is not intended to be inherited from. In particular, its
88 // latter (it causes an access violation if you do). The Message
91 class GTEST_API_ Message {
    [all...]
  /src/sys/external/bsd/acpica/dist/utilities/
uterror.c 169 * DESCRIPTION: BIOS error message for predefined names. Messages
218 * DESCRIPTION: Print error message with the full pathname constructed this way:
235 const char *Message;
248 Message = "Failure creating named object";
254 Message = "Could not resolve symbol";
260 Message = "Failure resolving symbol";
268 AcpiOsPrintf ("%s [%s], %s", Message,
293 * DESCRIPTION: Print error message with the full pathname for the NS node.
357 * Message - Error message to use on failur
    [all...]
utdelete.c 428 const char *Message;
469 Message = "Increment";
502 Message = "Decrement";
521 NewCount, Object, Object->Common.Type, Message));
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
DiagnosticsYaml.h 40 Io.mapRequired("Message", M.Message);
70 : DiagnosticName(D.DiagnosticName), Message(D.Message), Notes(D.Notes),
74 return clang::tooling::Diagnostic(DiagnosticName, Message, Notes,
79 clang::tooling::DiagnosticMessage Message;
89 Io.mapRequired("DiagnosticMessage", Keys->Message);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/
Support.h 29 std::string Message;
33 : Message(std::move(M)), Inst(MCI) {}
35 void log(raw_ostream &OS) const override { OS << Message; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SymbolRemappingReader.h 71 SymbolRemappingParseError(StringRef File, int64_t Line, const Twine &Message)
72 : File(File), Line(Line), Message(Message.str()) {}
75 OS << File << ':' << Line << ": " << Message;
83 StringRef getMessage() const { return Message; }
90 std::string Message;
SourceMgr.h 185 /// Emit a message about the specified location with the specified string.
210 /// \param Msg If non-null, the kind of message (e.g., "error") which is
211 /// prefixed to the message.
218 /// custom formatted message.
258 std::string Message, LineContents;
267 : Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Knd), Message(Msg) {}
281 StringRef getMessage() const { return Message; }
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitReader.cpp 23 Optionally returns a human-readable error message via OutMessage. */
44 std::string Message;
46 Message = EIB.message();
49 *OutMessage = strdup(Message.c_str());
77 Optionally returns a human-readable error message via OutMessage. */
90 std::string Message;
92 Message = EIB.message();
95 *OutMessage = strdup(Message.c_str())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
YAMLRemarkParser.h 35 YAMLParseError(StringRef Message, SourceMgr &SM, yaml::Stream &Stream,
38 YAMLParseError(StringRef Message) : Message(std::string(Message)) {}
40 void log(raw_ostream &OS) const override { OS << Message; }
46 std::string Message;
53 /// Last error message that can come from the YAML parser diagnostics.
81 Error error(StringRef Message, yaml::Node &Node);
  /src/crypto/external/apache2/openssl/dist/util/perl/TLSProxy/
Message.pm 10 package TLSProxy::Message;
17 #Message types
186 my $message;
198 die "CCS received before message data complete\n";
209 print " Message truncated\n";
214 #We are continuing processing a message started in a previous
216 #message
225 #We can complete the message with this record
233 $message = create_message($server, $mt,
237 push @messages, $message;
    [all...]
  /src/crypto/external/bsd/openssl/dist/util/perl/TLSProxy/
Message.pm 10 package TLSProxy::Message;
16 #Message types
171 my $message;
183 die "CCS received before message data complete\n";
194 print " Message truncated\n";
199 #We are continuing processing a message started in a previous
201 #message
210 #We can complete the message with this record
214 $message = create_message($server, $mt, $payload,
216 push @messages, $message;
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/util/perl/TLSProxy/
Message.pm 10 package TLSProxy::Message;
16 #Message types
171 my $message;
183 die "CCS received before message data complete\n";
194 print " Message truncated\n";
199 #We are continuing processing a message started in a previous
201 #message
210 #We can complete the message with this record
214 $message = create_message($server, $mt, $payload,
216 push @messages, $message;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
LogDiagnosticPrinter.h 23 /// The primary message line of the diagnostic.
24 std::string Message;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Core/
Diagnostic.h 40 /// Represents the diagnostic message with the error message associated
43 DiagnosticMessage(llvm::StringRef Message = "");
45 /// Constructs a diagnostic message with anoffset to the diagnostic
51 DiagnosticMessage(llvm::StringRef Message, const SourceManager &Sources,
54 std::string Message;
62 /// of the Message itself.
79 Diagnostic(llvm::StringRef DiagnosticName, const DiagnosticMessage &Message,
86 /// Message associated to the diagnostic.
87 DiagnosticMessage Message;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TestModuleFileExtension.cpp 31 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // message
34 // Write a message into the extension block.
35 SmallString<64> Message;
38 raw_svector_ostream OS(Message);
42 uint64_t Record[] = {FIRST_EXTENSION_RECORD_ID, Message.size()};
43 Stream.EmitRecordWithBlob(Abbrev, Record, Message);
78 StringRef Message = Blob.substr(0, Record[0]);
79 fprintf(stderr, "Read extension block message: %s\n",
80 Message.str().c_str());
  /src/sys/external/bsd/acpica/dist/compiler/
aslxref.c 319 UINT8 Message = 0;
559 * a little better before we print an error message
830 Message = ASL_MSG_TAG_SMALLER;
834 Message = ASL_MSG_TAG_LARGER;
837 if (Message)
844 AslError (ASL_WARNING, Message, Op, AslGbl_MsgBuffer);
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceLocation.cpp 38 OS << Message << '\n';
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
ExecutionDriver.cpp 145 std::string Message;
160 AbstractInterpreter::createJIT(getToolName(), Message, &ToolArgv);
165 getToolName(), Message, CCBinary, &ToolArgv, &CCToolArgv);
170 AbstractInterpreter::createLLI(getToolName(), Message, &ToolArgv);
174 Message = "Sorry, I can't automatically select an interpreter!\n";
179 AbstractInterpreter::createLLI(getToolName(), Message, &ToolArgv);
184 getToolName(), Message, CCBinary, &ToolArgv, &CCToolArgv,
189 AbstractInterpreter::createJIT(getToolName(), Message, &ToolArgv);
193 getToolName(), Message, CustomCompileCommand);
197 getToolName(), Message, CustomExecCommand)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 141 /// All the context information will be kept on the error message.
143 /// error message, using the << operator.
156 struct Message {
161 std::vector<Message> Messages;
167 /// Each error only shows the error message without any context.
173 /// Each error message contains the full context.
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 63 StringRef Message;
65 Message = "identical expressions on both sides of bitwise operator";
67 Message = "identical expressions on both sides of logical operator";
74 Message, ELoc, Sr);
256 StringRef Message;
258 Message = "comparison of identical expressions always evaluates to "
261 Message = "comparison of identical expressions always evaluates to true";
263 Message = "comparison of identical expressions always evaluates to false";
266 categories::LogicError, Message, ELoc);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexDiagnostic.cpp 41 std::string Message;
45 : CXDiagnosticImpl(CustomNoteDiagnosticKind), Message(std::string(Msg)),
57 return cxstring::createRef(Message.c_str());
111 DiagnosticsEngine::Level Level, StringRef Message,
123 std::make_unique<CXDiagnosticCustomNoteImpl>(Message, L));
134 void emitNote(FullSourceLoc Loc, StringRef Message) override {
141 std::make_unique<CXDiagnosticCustomNoteImpl>(Message, L));

Completed in 25 milliseconds

1 2 3 4