Searched refs:Message (Results 51 - 75 of 2331) sorted by relevance

1234567891011>>

/external/smack/src/org/xbill/DNS/
H A DResolver.java82 Message send(Message query) throws IOException;
93 Object sendAsync(final Message query, final ResolverListener listener);
/external/chromium_org/components/autofill/content/renderer/
H A Dtest_password_generation_agent.h22 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
23 virtual bool Send(IPC::Message* message) OVERRIDE;
26 const std::vector<IPC::Message*>& messages() const { return messages_.get(); }
37 ScopedVector<IPC::Message> messages_;
H A Dtest_password_generation_agent.cc19 const IPC::Message& message) {
28 bool TestPasswordGenerationAgent::Send(IPC::Message* message) {
/external/chromium_org/content/common/input/
H A Dinput_param_traits.h21 static void Write(Message* m, const param_type& p);
22 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
29 static void Write(Message* m, const param_type& p);
30 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
/external/chromium_org/content/common/
H A Dmessage_router.h13 // to the correct listener. Routing is based on the Message's routing ID.
38 virtual bool OnControlMessageReceived(const IPC::Message& msg);
41 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
46 virtual bool RouteMessage(const IPC::Message& msg);
49 virtual bool Send(IPC::Message* msg) OVERRIDE;
/external/chromium_org/third_party/mesa/src/src/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/clang/test/CodeGenCXX/
H A Dconstructor-convert.cpp9 static void error(const Twine &Message) {} argument
/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/mesa3d/src/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/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/protobuf/src/google/protobuf/
H A Dmessage.cc59 Message::~Message() {}
61 void Message::MergeFrom(const Message& from) {
70 void Message::CheckTypeAndMergeFrom(const MessageLite& other) {
71 MergeFrom(*down_cast<const Message*>(&other));
74 void Message::CopyFrom(const Message& from) {
83 string Message::GetTypeName() const {
87 void Message
[all...]
H A Dtext_format.h61 static bool Print(const Message& message, io::ZeroCopyOutputStream* output);
70 static bool PrintToString(const Message& message, string* output);
80 static void PrintFieldValueToString(const Message& message,
93 bool Print(const Message& message, io::ZeroCopyOutputStream* output);
98 bool PrintToString(const Message& message, string* output);
103 void PrintFieldValueToString(const Message& message,
145 void Print(const Message& message,
149 void PrintField(const Message& message,
155 void PrintShortRepeatedField(const Message& message,
162 void PrintFieldName(const Message
[all...]
H A Dtest_util.h124 void SetAllFieldsViaReflection(Message* message);
125 void ModifyRepeatedFieldsViaReflection(Message* message);
126 void ExpectAllFieldsSetViaReflection(const Message& message);
127 void ExpectClearViaReflection(const Message& message);
129 void SetPackedFieldsViaReflection(Message* message);
130 void ModifyPackedFieldsViaReflection(Message* message);
131 void ExpectPackedFieldsSetViaReflection(const Message& message);
132 void ExpectPackedClearViaReflection(const Message& message);
134 void RemoveLastRepeatedsViaReflection(Message* message);
135 void SwapRepeatedsViaReflection(Message* messag
[all...]
/external/chromium_org/ppapi/proxy/
H A Dppapi_param_traits.h50 static void Write(Message* m, const param_type& p);
51 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
58 static void Write(Message* m, const param_type& p);
59 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
67 static void Write(Message* m, const param_type& p);
68 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
76 static void Write(Message* m, const param_type& p);
77 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
84 static void Write(Message* m, const param_type& p);
85 static bool Read(const Message*
[all...]
/external/chromium_org/content/public/common/
H A Dcommon_param_traits.h52 static void Write(Message* m, const param_type& p);
53 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
60 static void Write(Message* m, const param_type& p);
61 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
68 static void Write(Message* m, const param_type& p);
69 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
76 static void Write(Message* m, const param_type& p);
77 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
84 static void Write(Message* m, const param_type& p);
85 static bool Read(const Message*
[all...]
/external/chromium_org/remoting/host/
H A Dchromoting_param_traits.h18 static void Write(Message* m, const param_type& p);
19 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
26 static void Write(Message* m, const param_type& p);
27 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
34 static void Write(Message* m, const param_type& p);
35 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
42 static void Write(Message* m, const param_type& p);
43 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
H A Dworker_process_ipc_delegate.h12 class Message;
27 virtual bool OnMessageReceived(const IPC::Message& message) = 0;
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DRpcUtil.java42 * Take an {@code RpcCallback<Message>} and convert it to an
47 public static <Type extends Message> RpcCallback<Type>
48 specializeCallback(final RpcCallback<Message> originalCallback) {
62 * it to an {@code RpcCallback<Message>}. The generalized callback will
68 public static <Type extends Message>
69 RpcCallback<Message> generalizeCallback(
73 return new RpcCallback<Message>() {
74 public void run(final Message parameter) {
92 private static <Type extends Message> Type copyAsType(
93 final Type typeDefaultInstance, final Message sourc
[all...]
/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/protobuf/java/src/main/java/com/google/protobuf/
H A DRpcUtil.java42 * Take an {@code RpcCallback<Message>} and convert it to an
47 public static <Type extends Message> RpcCallback<Type>
48 specializeCallback(final RpcCallback<Message> originalCallback) {
62 * it to an {@code RpcCallback<Message>}. The generalized callback will
68 public static <Type extends Message>
69 RpcCallback<Message> generalizeCallback(
73 return new RpcCallback<Message>() {
74 public void run(final Message parameter) {
92 private static <Type extends Message> Type copyAsType(
93 final Type typeDefaultInstance, final Message sourc
[all...]
/external/smack/src/org/jivesoftware/smackx/muc/
H A DInvitationListener.java24 import org.jivesoftware.smack.packet.Message;
47 String password, Message message);
/external/chromium_org/ppapi/host/
H A Dhost_message_context.h21 IPC::Message* sync_reply_msg,
36 IPC::Message* sync_reply_msg;
54 IPC::Message* sync_reply_msg);
68 IPC::Message reply_msg;
72 IPC::Message* sync_reply_msg;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DMessageTest.java12 import android.os.Message;
19 assertNotNull(new Message().getData());
20 assertTrue(new Message().getData().isEmpty());
25 Message m = new Message();
33 assertNull(new Message().peekData());
35 Message m = new Message();
43 Message m = new Message();
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dmessage.cc60 Message::~Message() {}
62 void Message::MergeFrom(const Message& from) {
71 void Message::CheckTypeAndMergeFrom(const MessageLite& other) {
72 MergeFrom(*down_cast<const Message*>(&other));
75 void Message::CopyFrom(const Message& from) {
84 string Message::GetTypeName() const {
88 void Message
[all...]
H A Dservice.h118 class Message; // message.h
168 const Message* request,
169 Message* response,
173 // particular subclass of Message. GetRequestPrototype() and
175 // You can then call Message::New() on these instances to construct mutable
181 // Message* request = stub->GetRequestPrototype (method)->New();
182 // Message* response = stub->GetResponsePrototype(method)->New();
185 virtual const Message& GetRequestPrototype(
187 virtual const Message& GetResponsePrototype(
280 const Message* reques
[all...]

Completed in 795 milliseconds

1234567891011>>