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

1234567891011>>

/external/protobuf/java/core/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/protobuf/python/google/protobuf/pyext/
H A Dpython_protobuf.h44 class Message;
50 const Message* GetCProtoInsidePyProto(PyObject* msg);
51 Message* MutableCProtoInsidePyProto(PyObject* msg);
/external/libmojo/mojo/public/cpp/bindings/lib/
H A Dno_interface.cc11 bool NoInterfaceStub::Accept(Message* message) {
15 bool NoInterfaceStub::AcceptWithResponder(Message* message,
H A Dcontrol_message_handler.h20 static bool IsControlMessage(const Message* message);
26 bool Accept(Message* message) override;
28 bool AcceptWithResponder(Message* message,
32 bool Run(Message* message, MessageReceiverWithStatus* responder);
33 bool RunOrClosePipe(Message* message);
/external/protobuf/src/google/protobuf/
H A Dreflection_ops.h50 // methods of the Message interface, though they are likely to be
54 // the Message interface.
59 static void Copy(const Message& from, Message* to);
60 static void Merge(const Message& from, Message* to);
61 static void Clear(Message* message);
62 static bool IsInitialized(const Message& message);
63 static void DiscardUnknownFields(Message* message);
68 static void FindInitializationErrors(const Message
[all...]
H A Dgenerated_message_reflection.h90 // - Singular Message fields are stored as a pointer to a Message. These
134 const Message* default_instance,
170 const Message* default_instance,
190 const Message* default_instance,
203 const Message* default_instance,
214 const UnknownFieldSet& GetUnknownFields(const Message& message) const;
215 UnknownFieldSet* MutableUnknownFields(Message* message) const;
217 int SpaceUsed(const Message& message) const;
219 bool HasField(const Message
[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;
132 class Message;
171 // See also MessageLite, which contains most every-day operations. Message
175 // default implementations based on reflection. Message classes which are
179 class LIBPROTOBUF_EXPORT Message : public MessageLite { class in namespace:google::protobuf
181 inline Message() {} function in class:google::protobuf::Message
182 virtual ~Message();
189 virtual Message* Ne
[all...]
/external/skia/include/private/
H A DSkMessageBus.h17 template <typename Message>
20 // Post a message to be received by all Inboxes for this Message type. Threadsafe.
21 static void Post(const Message& m);
29 void poll(SkTArray<Message>* out);
32 SkTArray<Message> fMessages;
36 void receive(const Message& m); // SkMessageBus is a friend only to call this.
49 #define DECLARE_SKMESSAGEBUS_MESSAGE(Message) \
51 SkMessageBus<Message>* SkMessageBus<Message>::Get() { \
53 static SkMessageBus<Message>* bu
[all...]
/external/clang/test/CodeGen/
H A Davailable-externally-hidden.cpp11 class Message{}; class
14 virtual bool Send(Message* msg) = 0;
23 bool Send(Message* message) override;
31 f->Send(new Message);
/external/llvm/bindings/ocaml/irreader/
H A Dirreader_ocaml.c21 void llvm_raise(value Prototype, char *Message);
29 char *Message; local
31 if (LLVMParseIRInContext(C, MemBuf, &M, &Message))
32 llvm_raise(*caml_named_value("Llvm_irreader.Error"), Message);
/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/guice/core/src/com/google/inject/internal/
H A DErrorHandler.java19 import com.google.inject.spi.Message;
36 void handle(Message message);
/external/libmojo/mojo/public/cpp/bindings/
H A Dinterface_endpoint_controller.h10 class Message;
18 virtual bool SendMessage(Message* message) = 0;
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dmessage_queue.h13 class Message;
17 // A queue for Message objects.
26 void Push(Message* message);
30 void Pop(Message* message);
37 std::queue<Message*> queue_;
/external/robolectric/v1/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/google-breakpad/src/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/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/googletest/googletest/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/v8/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/vulkan-validation-layers/tests/gtest-1.7.0/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/protobuf/src/google/protobuf/util/
H A Dmessage_differencer.h50 #include <google/protobuf/message.h> // Message
100 // unpacks Any::value into a Message and compares its individual fields.
118 static bool Equals(const Message& message1, const Message& message2);
130 static bool Equivalent(const Message& message1, const Message& message2);
142 static bool ApproximatelyEquals(const Message& message1,
143 const Message& message2);
157 static bool ApproximatelyEquivalent(const Message& message1,
158 const Message
[all...]
/external/libmojo/ipc/
H A Dipc_sync_message.h25 class IPC_EXPORT SyncMessage : public Message {
54 static bool IsMessageReplyTo(const Message& msg, int request_id);
58 static base::PickleIterator GetDataIterator(const Message* msg);
61 static int GetMessageId(const Message& msg);
64 static Message* GenerateReply(const Message* msg);
72 static bool ReadSyncHeader(const Message& msg, SyncHeader* header);
73 static bool WriteSyncHeader(Message* msg, const SyncHeader& header);
82 bool SerializeOutputParameters(const Message& msg);
86 virtual bool SerializeOutputParameters(const Message
[all...]

Completed in 3699 milliseconds

1234567891011>>