Searched defs:Message (Results 1 - 25 of 88) sorted by relevance

1234

/external/clang/test/CodeGenCXX/
H A Dconstructor-convert.cpp9 static void error(const Twine &Message) {} argument
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DMessage.java44 public interface Message interface
50 public Message setReliable(boolean f);
/external/clang/include/clang/Basic/
H A DPrettyStackTrace.h30 const char *Message; member in class:clang::PrettyStackTraceLoc
33 : SM(sm), Loc(L), Message(Msg) {}
/external/clang/include/clang/Sema/
H A DPrettyDeclStackTrace.h35 const char *Message; member in class:clang::PrettyDeclStackTraceEntry
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
/external/llvm/bindings/ocaml/analysis/
H A Danalysis_ocaml.c29 char *Message; local
30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message);
36 String = copy_string(Message);
40 LLVMDisposeMessage(Message);
/external/llvm/include/llvm/Support/
H A DLeakDetector.h60 static void checkForGarbage(LLVMContext &C, const std::string &Message) { argument
62 checkForGarbageImpl(C, Message);
87 static void checkForGarbageImpl(LLVMContext &C, const std::string &Message);
/external/llvm/lib/IR/
H A DLeakDetector.cpp53 const std::string &Message) {
61 if (Objects->hasGarbage(Message) |
62 pImpl->LLVMObjects.hasGarbage(Message))
52 checkForGarbageImpl(LLVMContext &Context, const std::string &Message) argument
H A DLeaksContext.h65 bool hasGarbage(const std::string& Message) { argument
71 errs() << "Leaked " << Name << " objects found: " << Message << ":\n"; local
/external/open-vcdiff/gtest/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
54 // The Message class works like an ostream repeater.
58 // 1. You stream a bunch of values to a Message object.
60 // 2. Then you stream the Message object to an ostream.
61 // This causes the text in the Message to be streamed
66 // testing::Message foo;
72 // Message is not intended to be inherited from. In particular, its
77 // latter (it causes an access violation if you do). The Message
80 class Message { class in namespace:testing
87 // Constructs an empty Message
92 Message() : ss_(new internal::StrStream) {} function in class:testing::Message
95 Message(const Message& msg) : ss_(new internal::StrStream) { // NOLINT function in class:testing::Message
100 explicit Message(const char* str) : ss_(new internal::StrStream) { function in class:testing::Message
[all...]
/external/protobuf/gtest/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
54 // The Message class works like an ostream repeater.
58 // 1. You stream a bunch of values to a Message object.
60 // 2. Then you stream the Message object to an ostream.
61 // This causes the text in the Message to be streamed
66 // testing::Message foo;
72 // Message is not intended to be inherited from. In particular, its
77 // latter (it causes an access violation if you do). The Message
80 class Message { class in namespace:testing
87 // Constructs an empty Message
92 Message() : ss_(new internal::StrStream) {} function in class:testing::Message
95 Message(const Message& msg) : ss_(new internal::StrStream) { // NOLINT function in class:testing::Message
100 explicit Message(const char* str) : ss_(new internal::StrStream) { function in class:testing::Message
[all...]
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
54 // The Message class works like an ostream repeater.
58 // 1. You stream a bunch of values to a Message object.
60 // 2. Then you stream the Message object to an ostream.
61 // This causes the text in the Message to be streamed
66 // testing::Message foo;
72 // Message is not intended to be inherited from. In particular, its
77 // latter (it causes an access violation if you do). The Message
80 class Message { class in namespace:testing
87 // Constructs an empty Message
92 Message() : ss_(new internal::StrStream) {} function in class:testing::Message
95 Message(const Message& msg) : ss_(new internal::StrStream) { // NOLINT function in class:testing::Message
100 explicit Message(const char* str) : ss_(new internal::StrStream) { function in class:testing::Message
[all...]
/external/clang/tools/driver/
H A Dcc1_main.cpp42 static void LLVMErrorHandler(void *UserData, const std::string &Message) { argument
45 Diags.Report(diag::err_fe_error_backend) << Message;
/external/llvm/bindings/ocaml/bitreader/
H A Dbitreader_ocaml.c31 static void llvm_raise(value Prototype, char *Message) { argument
35 CamlMessage = copy_string(Message);
36 LLVMDisposeMessage(Message);
52 char *Message; local
55 if (LLVMGetBitcodeModuleInContext(C, MemBuf, &M, &Message))
56 llvm_raise(llvm_bitreader_error_exn, Message);
67 char *Message; local
69 if (LLVMParseBitcodeInContext(C, MemBuf, &M, &Message))
70 llvm_raise(llvm_bitreader_error_exn, Message);
/external/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp32 std::string Message; local
35 &Message));
38 *OutMessage = strdup(Message.c_str());
52 std::string Message; local
55 &Message));
58 *OutMessage = strdup(Message.c_str());
/external/v8/include/
H A Dv8-debug.h99 class Message { class in class:v8::Debug
143 virtual ~Message() {}
235 typedef void (*MessageHandler2)(const Message& message);
275 // Message based interface. The message protocol is JSON. NOTE the message
/external/chromium/testing/gtest/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
56 // The Message class works like an ostream repeater.
60 // 1. You stream a bunch of values to a Message object.
62 // 2. Then you stream the Message object to an ostream.
63 // This causes the text in the Message to be streamed
68 // testing::Message foo;
74 // Message is not intended to be inherited from. In particular, its
79 // latter (it causes an access violation if you do). The Message
82 class GTEST_API_ Message { class in namespace:testing
89 // Constructs an empty Message
94 Message() : ss_(new ::std::stringstream) { function in class:testing::Message
101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT function in class:testing::Message
106 explicit Message(const char* str) : ss_(new ::std::stringstream) { function in class:testing::Message
[all...]
/external/gtest/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
56 // The Message class works like an ostream repeater.
60 // 1. You stream a bunch of values to a Message object.
62 // 2. Then you stream the Message object to an ostream.
63 // This causes the text in the Message to be streamed
68 // testing::Message foo;
74 // Message is not intended to be inherited from. In particular, its
79 // latter (it causes an access violation if you do). The Message
82 class GTEST_API_ Message { class in namespace:testing
89 // Constructs an empty Message
94 Message() : ss_(new ::std::stringstream) { function in class:testing::Message
101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT function in class:testing::Message
106 explicit Message(const char* str) : ss_(new ::std::stringstream) { function in class:testing::Message
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
56 // The Message class works like an ostream repeater.
60 // 1. You stream a bunch of values to a Message object.
62 // 2. Then you stream the Message object to an ostream.
63 // This causes the text in the Message to be streamed
68 // testing::Message foo;
74 // Message is not intended to be inherited from. In particular, its
79 // latter (it causes an access violation if you do). The Message
82 class GTEST_API_ Message { class in namespace:testing
89 // Constructs an empty Message
94 Message() : ss_(new ::std::stringstream) { function in class:testing::Message
101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT function in class:testing::Message
106 explicit Message(const char* str) : ss_(new ::std::stringstream) { function in class:testing::Message
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
56 // The Message class works like an ostream repeater.
60 // 1. You stream a bunch of values to a Message object.
62 // 2. Then you stream the Message object to an ostream.
63 // This causes the text in the Message to be streamed
68 // testing::Message foo;
74 // Message is not intended to be inherited from. In particular, its
79 // latter (it causes an access violation if you do). The Message
82 class GTEST_API_ Message { class in namespace:testing
89 // Constructs an empty Message
94 Message() : ss_(new ::std::stringstream) { function in class:testing::Message
101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT function in class:testing::Message
106 explicit Message(const char* str) : ss_(new ::std::stringstream) { function in class:testing::Message
[all...]
/external/protobuf/src/google/protobuf/
H A Dmessage.h35 // Defines Message, the abstract interface implemented by non-lite
79 // // Same as the last block, but do it dynamically via the Message
81 // Message* foo = new Foo;
149 class Message;
180 // See also MessageLite, which contains most every-day operations. Message
184 // default implementations based on reflection. Message classes which are
188 class LIBPROTOBUF_EXPORT Message : public MessageLite { class in namespace:google::protobuf
190 inline Message() {} function in class:google::protobuf::Message
191 virtual ~Message();
198 virtual Message* Ne
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DMessage.java41 public abstract class Message { class
58 public Message() { method in class:Message
61 public Message(int msgID) { method in class:Message
65 public Message(int msgID, Object arg, Object arg2) { method in class:Message
85 * a Message.
89 /** Return a new template instance for the location part of a Message.
/external/clang/include/clang/Frontend/
H A DLogDiagnosticPrinter.h25 std::string Message; member in struct:clang::LogDiagnosticPrinter::DiagEntry
/external/clang/lib/Basic/
H A DSourceLocation.cpp31 OS << Message << '\n'; local
/external/llvm/unittests/Support/
H A DYAMLParserTest.cpp33 static void ExpectParseError(StringRef Message, StringRef Input) { argument
37 EXPECT_FALSE(Stream.validate()) << Message << ": " << Input;
38 EXPECT_TRUE(Stream.failed()) << Message << ": " << Input;
42 static void ExpectParseSuccess(StringRef Message, StringRef Input) { argument
45 EXPECT_TRUE(Stream.validate()) << Message << ": " << Input;
/external/protobuf/python/google/protobuf/
H A Dmessage.py45 class Message(object): class in inherits:object
50 compiler. These generated types subclass Message and implement the methods
89 other_msg: Message to merge into the current message.
100 other_msg: Message to copy into the current one.
246 If the client wants to disconnect this Message from the object tree, she

Completed in 774 milliseconds

1234