Searched refs:Message (Results 26 - 50 of 2331) sorted by relevance

1234567891011>>

/external/protobuf/src/google/protobuf/
H A Dgenerated_message_reflection.h79 // - Singular Message fields are stored as a pointer to a Message. These
123 const Message* default_instance,
135 const UnknownFieldSet& GetUnknownFields(const Message& message) const;
136 UnknownFieldSet* MutableUnknownFields(Message* message) const;
138 int SpaceUsed(const Message& message) const;
140 bool HasField(const Message& message, const FieldDescriptor* field) const;
141 int FieldSize(const Message& message, const FieldDescriptor* field) const;
142 void ClearField(Message* message, const FieldDescriptor* field) const;
143 void RemoveLast(Message* messag
[all...]
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 DANTLRErrorListener.java33 * wrapping error data in Message objects and passing them to the listener.
39 public void error(Message msg);
40 public void warning(Message msg);
/external/chromium_org/chrome/utility/
H A Dutility_message_handler.h9 class Message;
18 virtual bool OnMessageReceived(const IPC::Message& message) = 0;
/external/chromium_org/content/common/
H A Dswapped_out_messages.h16 static bool CanSendWhileSwappedOut(const IPC::Message* msg);
17 static bool CanHandleWhileSwappedOut(const IPC::Message& msg);
H A Dgamepad_param_traits.h18 class Message;
23 static void Write(Message* m, const blink::WebGamepad& p);
24 static bool Read(const Message* m,
/external/chromium_org/ipc/
H A Dipc_sender.h12 class Message;
17 // given Message regardless of whether or not this method succeeds. This
20 virtual bool Send(Message* msg) = 0;
H A Dipc_listener.h14 class Message;
21 virtual bool OnMessageReceived(const Message& message) = 0;
32 virtual void OnBadMessageReceived(const Message& message) {}
H A Dipc_test_sink.h17 class Message;
35 // IPC::Message* msg = test_sink.GetFirstMessageMatching(ViewMsg_Foo::ID));
46 // IPC::Message* msg = test_sink.GetUniqueMessageMatching(IPC_REPLY_ID);
57 // virtual bool OnMessageReceived(const IPC::Message& msg) {
80 virtual bool Send(IPC::Message* message) OVERRIDE;
92 bool OnMessageReceived(const Message& msg);
103 const Message* GetMessageAt(size_t index) const;
108 const Message* GetFirstMessageMatching(uint32 id) const;
115 const Message* GetUniqueMessageMatching(uint32 id) const;
129 std::vector<Message> messages
[all...]
H A Dipc_sync_message.h24 class IPC_EXPORT SyncMessage : public Message {
59 static bool IsMessageReplyTo(const Message& msg, int request_id);
63 static PickleIterator GetDataIterator(const Message* msg);
66 static int GetMessageId(const Message& msg);
69 static Message* GenerateReply(const Message* msg);
77 static bool ReadSyncHeader(const Message& msg, SyncHeader* header);
78 static bool WriteSyncHeader(Message* msg, const SyncHeader& header);
88 bool SerializeOutputParameters(const Message& msg);
92 virtual bool SerializeOutputParameters(const Message
[all...]
H A Dipc_message_utils_unittest.cc19 Message::PriorityValue nested_priority = Message::PRIORITY_HIGH;
20 Message nested_msg(nested_routing, nested_type, nested_priority);
27 Message::PriorityValue outer_priority = Message::PRIORITY_NORMAL;
28 Message outer_msg(outer_routing, outer_type, outer_priority);
29 ParamTraits<Message>::Write(&outer_msg, nested_msg);
33 IPC::Message result_msg;
34 ASSERT_TRUE(ParamTraits<Message>::Read(&outer_msg, &iter, &result_msg));
50 IPC::Message dumm
[all...]
/external/chromium_org/extensions/common/api/messaging/
H A Dmessage.h11 struct Message { struct in namespace:extensions
15 Message() : data(), user_gesture(false) {} function in struct:extensions::Message
16 Message(const std::string& data, bool user_gesture) function in struct:extensions::Message
/external/chromium_org/ppapi/proxy/
H A Dresource_message_test_sink.h28 virtual bool Send(IPC::Message* msg) OVERRIDE;
32 void SetSyncReplyMessage(IPC::Message* reply_msg);
40 IPC::Message* nested_msg) const;
46 IPC::Message* nested_msg);
50 typedef std::pair<ResourceMessageCallParams, IPC::Message> ResourceCall;
55 typedef std::pair<ResourceMessageReplyParams, IPC::Message> ResourceReply;
60 scoped_ptr<IPC::Message> sync_reply_msg_;
84 const IPC::Message& reply_msg);
88 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
90 IPC::Message last_handled_ms
[all...]
/external/deqp/execserver/
H A DxsProtocol.hpp67 class Message class in namespace:xs
72 Message (MessageType type_) : type(type_) {} function in class:xs::Message
73 virtual ~Message (void) {}
83 Message (const Message& other);
84 Message& operator= (const Message& other);
89 class SimpleMessage : public Message
92 SimpleMessage (const deUint8* data, int dataSize) : Message((MessageType)MsgType) { DE_UNREF(data); XS_CHECK_MSG(dataSize == 0, "No payload expected"); }
93 SimpleMessage (void) : Message((MessageTyp
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMessage.java11 import android.os.Message;
13 @Implements(Message.class)
20 private Message message;
51 public void copyFrom(Message m) {
60 public static Message obtain() {
61 return new Message();
65 public static Message obtain(Handler h) {
66 Message m = new Message();
72 public static Message obtai
[all...]
/external/chromium_org/ppapi/host/
H A Dresource_message_handler.h13 class Message;
35 virtual bool HandleMessage(const IPC::Message& msg,
40 const IPC::Message& msg) = 0;
44 void RunMessageHandlerAndReply(const IPC::Message& msg,
64 virtual int32_t OnResourceMessageReceived(const IPC::Message& msg,
/external/chromium_org/tools/ipc_fuzzer/message_lib/
H A Dmessage_cracker.h12 class MessageCracker : public IPC::Message {
14 static void CopyMessageID(IPC::Message* dst, IPC::Message* src) {
20 static void SetMessageType(IPC::Message* message, uint32 type) {
25 static MessageCracker* ToCracker(IPC::Message* message) {
/external/chromium_org/content/renderer/pepper/
H A Dpepper_in_process_router.h14 class Message;
69 static bool OnPluginMsgReceived(const IPC::Message& msg);
72 bool SendToHost(IPC::Message* msg);
73 bool SendToPlugin(IPC::Message* msg);
74 void DispatchHostMsg(IPC::Message* msg);
75 void DispatchPluginMsg(IPC::Message* msg);
76 bool SendToBrowser(IPC::Message* msg);
/external/chromium_org/testing/gtest/test/
H A Dgtest-message_test.cc32 // Tests for the Message class.
40 using ::testing::Message;
42 // Tests the testing::Message class
46 const Message msg;
52 const Message msg1("Hello");
53 const Message msg2(msg1);
57 // Tests constructing a Message from a C-string.
59 Message msg("Hello");
65 const std::string s = (Message() << 1.23456F << " " << 2.34567F).GetString();
73 const std::string s = (Message() << 1260570880.455549
[all...]
/external/gtest/test/
H A Dgtest-message_test.cc32 // Tests for the Message class.
40 using ::testing::Message;
42 // Tests the testing::Message class
46 const Message msg;
52 const Message msg1("Hello");
53 const Message msg2(msg1);
57 // Tests constructing a Message from a C-string.
59 Message msg("Hello");
65 const std::string s = (Message() << 1.23456F << " " << 2.34567F).GetString();
73 const std::string s = (Message() << 1260570880.455549
[all...]
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
54 // See Message& operator<<(...) below for why.
59 // The Message class works like an ostream repeater.
63 // 1. You stream a bunch of values to a Message object.
65 // 2. Then you stream the Message object to an ostream.
66 // This causes the text in the Message to be streamed
71 // testing::Message foo;
77 // Message is not intended to be inherited from. In particular, its
82 // latter (it causes an access violation if you do). The Message
85 class GTEST_API_ Message { class in namespace:testing
96 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT function in class:testing::Message
101 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.
54 // See Message& operator<<(...) below for why.
59 // The Message class works like an ostream repeater.
63 // 1. You stream a bunch of values to a Message object.
65 // 2. Then you stream the Message object to an ostream.
66 // This causes the text in the Message to be streamed
71 // testing::Message foo;
77 // Message is not intended to be inherited from. In particular, its
82 // latter (it causes an access violation if you do). The Message
85 class GTEST_API_ Message { class in namespace:testing
96 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT function in class:testing::Message
101 explicit Message(const char* str) : ss_(new ::std::stringstream) { 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/llvm/bindings/ocaml/irreader/
H A Dirreader_ocaml.c30 static void llvm_raise(value Prototype, char *Message) { argument
34 CamlMessage = copy_string(Message);
35 LLVMDisposeMessage(Message);
53 char *Message; local
55 if (LLVMParseIRInContext(C, MemBuf, &M, &Message))
56 llvm_raise(llvm_irreader_error_exn, Message);
/external/smack/src/org/jivesoftware/smack/filter/
H A DThreadFilter.java24 import org.jivesoftware.smack.packet.Message;
48 return packet instanceof Message && thread.equals(((Message) packet).getThread());

Completed in 1769 milliseconds

1234567891011>>