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

1234567891011>>

/external/protobuf/java/src/main/java/com/google/protobuf/
H A DBlockingRpcChannel.java46 Message callBlockingMethod(
49 Message request,
50 Message responsePrototype) throws ServiceException;
H A DRpcChannel.java59 * decides the types of the {@code Message} objects, not the callee. The
68 Message request,
69 Message responsePrototype,
70 RpcCallback<Message> done);
H A DBlockingService.java51 Message callBlockingMethod(Descriptors.MethodDescriptor method,
53 Message request) throws ServiceException;
58 Message getRequestPrototype(Descriptors.MethodDescriptor method);
63 Message getResponsePrototype(Descriptors.MethodDescriptor method);
H A DService.java38 * its exact type at compile time (analogous to the Message interface).
86 Message request,
87 RpcCallback<Message> done);
91 * particular subclass of {@code Message}. {@code getRequestPrototype()}
93 * call {@code Message.newBuilderForType()} on this instance to
101 * Message request =
107 Message getRequestPrototype(Descriptors.MethodDescriptor method);
116 Message getResponsePrototype(Descriptors.MethodDescriptor method);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dmessagehandler.h33 struct Message;
41 virtual void OnMessage(Message* msg) = 0;
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DMessage.java44 public interface Message interface
50 public Message setReliable(boolean f);
H A DMessageConnection.java48 public void send( Message message );
54 public void send( int channel, Message message );
H A DMessageListener.java53 public void messageReceived( S source, Message m );
/external/protobuf/src/google/protobuf/
H A Dreflection_ops.h49 // methods of the Message interface, though they are likely to be
53 // the Message interface.
58 static void Copy(const Message& from, Message* to);
59 static void Merge(const Message& from, Message* to);
60 static void Clear(Message* message);
61 static bool IsInitialized(const Message& message);
62 static void DiscardUnknownFields(Message* message);
67 static void FindInitializationErrors(const Message
[all...]
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/smack/src/org/jivesoftware/smack/
H A DMessageListener.java23 import org.jivesoftware.smack.packet.Message;
29 void processMessage(Chat chat, Message message);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
H A DCompressedMessage.java36 import com.jme3.network.Message;
47 private Message message;
51 public CompressedMessage(Message msg) {
55 public void setMessage(Message message) {
59 public Message getMessage() {
/external/smack/src/org/jivesoftware/smack/filter/
H A DMessageTypeFilter.java23 import org.jivesoftware.smack.packet.Message;
27 * Filters for packets of a specific type of Message (e.g. CHAT).
29 * @see org.jivesoftware.smack.packet.Message.Type
34 private final Message.Type type;
41 public MessageTypeFilter(Message.Type type) {
46 if (!(packet instanceof Message)) {
50 return ((Message) packet).getType().equals(this.type);
/external/protobuf/gtest/test/
H A Dgtest-message_test.cc32 // Tests for the Message class.
40 using ::testing::Message;
43 // A helper function that turns a Message into a C string.
44 const char* ToCString(const Message& msg) {
50 // Tests the testing::Message class
54 const Message msg;
60 const Message msg1("Hello");
61 const Message msg2(msg1);
65 // Tests constructing a Message from a C-string.
67 Message ms
[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/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/chrome/common/
H A Dcommon_param_traits.h16 class Message;
21 static void Write(Message* m, const param_type& p);
22 static bool Read(const Message* m, void** iter, param_type* p);
29 static void Write(Message* m, const param_type& p);
30 static bool Read(const Message* m, void** iter, param_type* p);
/external/chromium/testing/gtest/test/
H A Dgtest-message_test.cc32 // Tests for the Message class.
40 using ::testing::Message;
42 // A helper function that turns a Message into a C string.
43 const char* ToCString(const Message& msg) {
49 // Tests the testing::Message class
53 const Message msg;
59 const Message msg1("Hello");
60 const Message msg2(msg1);
64 // Tests constructing a Message from a C-string.
66 Message ms
[all...]
/external/gtest/test/
H A Dgtest-message_test.cc32 // Tests for the Message class.
40 using ::testing::Message;
42 // A helper function that turns a Message into a C string.
43 const char* ToCString(const Message& msg) {
49 // Tests the testing::Message class
53 const Message msg;
59 const Message msg1("Hello");
60 const Message msg2(msg1);
64 // Tests constructing a Message from a C-string.
66 Message ms
[all...]
/external/libvpx/libvpx/third_party/googletest/src/test/
H A Dgtest-message_test.cc32 // Tests for the Message class.
40 using ::testing::Message;
42 // A helper function that turns a Message into a C string.
43 const char* ToCString(const Message& msg) {
49 // Tests the testing::Message class
53 const Message msg;
59 const Message msg1("Hello");
60 const Message msg2(msg1);
64 // Tests constructing a Message from a C-string.
66 Message ms
[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/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/chrome/browser/debugger/
H A Ddevtools_handler.h17 virtual bool OnMessageReceived(const IPC::Message& message);
20 void OnForwardToAgent(const IPC::Message& message);
21 void OnForwardToClient(const IPC::Message& message);

Completed in 694 milliseconds

1234567891011>>