Searched defs:Message (Results 1 - 25 of 148) sorted by path

123456

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/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/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfile_manager_browsertest.cc173 // Message from JavaScript to add entries.
480 struct Message { struct in class:file_manager::__anon3165::FileManagerTestListener
498 Message GetNextMessage() {
501 const Message entry = messages_.front();
509 Message entry;
523 std::deque<Message> messages_;
624 FileManagerTestListener::Message entry = listener.GetNextMessage();
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_protocol.cc28 DevToolsProtocol::Message::~Message() {
31 DevToolsProtocol::Message::Message(const std::string& method, function in class:DevToolsProtocol::Message
40 : Message(method, params),
78 : Message(method, params) {
H A Ddevtools_protocol.h21 class Message { class in class:DevToolsProtocol
23 virtual ~Message();
29 Message(const std::string& method, base::DictionaryValue* params);
35 DISALLOW_COPY_AND_ASSIGN(Message);
38 class Command : public Message {
81 class Notification : public Message {
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
H A D__init__.py31 import email.Message namespace
368 info = email.Message.Message()
1021 info = email.Message.Message()
1162 """An object more like email.Message than httplib.HTTPResponse."""
1179 # info is either an email.Message or
1188 elif isinstance(info, email.Message.Message):
/external/chromium_org/content/browser/devtools/
H A Ddevtools_protocol.cc38 DevToolsProtocol::Message::~Message() {
41 DevToolsProtocol::Message::Message(const std::string& method, function in class:content::DevToolsProtocol::Message
103 : Message(method, params),
152 : Message(method, params) {
H A Ddevtools_protocol.h28 class Message : public base::RefCountedThreadSafe<Message> { class in class:content::DevToolsProtocol
36 friend class base::RefCountedThreadSafe<Message>;
37 virtual ~Message();
38 Message(const std::string& method,
46 DISALLOW_COPY_AND_ASSIGN(Message);
49 class Command : public Message {
110 class Notification : public Message {
/external/chromium_org/content/child/
H A Dwebmessageportchannel_impl.cc132 IPC::Message* msg = new MessagePortHostMsg_PostMessage(
208 void WebMessagePortChannelImpl::Send(IPC::Message* message) {
220 bool WebMessagePortChannelImpl::OnMessageReceived(const IPC::Message& message) {
235 Message msg;
281 WebMessagePortChannelImpl::Message::Message() {} function in class:content::WebMessagePortChannelImpl::Message
283 WebMessagePortChannelImpl::Message::~Message() {}
H A Dwebmessageportchannel_impl.h67 void Send(IPC::Message* message);
72 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
79 struct Message { struct in class:content::WebMessagePortChannelImpl
80 Message();
81 ~Message();
87 typedef std::queue<Message> MessageQueue;
/external/chromium_org/dbus/
H A Dmessage.cc55 Message::Message() function in class:dbus::Message
59 Message::~Message() {
64 void Message::Init(DBusMessage* raw_message) {
69 Message::MessageType Message::GetMessageType() {
73 return static_cast<Message::MessageType>(type);
76 std::string Message::GetMessageTypeAsString() {
93 std::string Message
[all...]
H A Dmessage.h42 // Message is the base class of D-Bus message types. Client code must use
45 // The class name Message is very generic, but there should be no problem
49 class CHROME_DBUS_EXPORT Message { class in namespace:dbus
126 Message();
127 virtual ~Message();
138 DISALLOW_COPY_AND_ASSIGN(Message);
142 class CHROME_DBUS_EXPORT MethodCall : public Message {
171 class CHROME_DBUS_EXPORT Signal : public Message {
201 class CHROME_DBUS_EXPORT Response : public Message {
269 explicit MessageWriter(Message* messag
[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/ipc/
H A Dipc_message.cc40 Message::~Message() {
43 Message::Message() function in class:IPC::Message
54 Message::Message(int32 routing_id, uint32 type, PriorityValue priority) function in class:IPC::Message
67 Message::Message(const char* data, int data_len) : Pickle(data, data_len) { function in class:IPC::Message
71 Message::Message(cons function in class:IPC::Message
[all...]
H A Dipc_message.h32 class IPC_EXPORT Message : public Pickle { class in namespace:IPC
53 virtual ~Message();
55 Message();
59 Message(int32 routing_id, uint32 type, PriorityValue priority);
64 Message(const char* data, int data_len);
66 Message(const Message& other);
67 Message& operator=(const Message& other);
150 static bool Dispatch(const Message* ms
[all...]
/external/chromium_org/ipc/mojo/
H A Dipc_mojo_bootstrap.cc30 virtual bool OnMessageReceived(const Message& message) OVERRIDE;
60 scoped_ptr<Message> message(new Message());
90 bool MojoServerBootstrap::OnMessageReceived(const Message&) { argument
110 virtual bool OnMessageReceived(const Message& message) OVERRIDE;
119 bool MojoClientBootstrap::OnMessageReceived(const Message& message) {
129 Send(new Message());
180 void MojoBootstrap::OnBadMessageReceived(const Message& message) {
191 bool MojoBootstrap::Send(Message* message) {
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dmessage.cc15 Message::Message() function in class:mojo::Message
20 Message::~Message() {
30 void Message::AllocUninitializedData(uint32_t num_bytes) {
36 void Message::AdoptData(uint32_t num_bytes, internal::MessageData* data) {
42 void Message::Swap(Message* other) {
63 Message message;
/external/chromium_org/mojo/public/cpp/bindings/
H A Dmessage.h15 // Message is a holder for the data and handles to be sent over a MessagePipe.
16 // Message owns its data and handles, but a consumer of Message is free to
19 class Message { class in namespace:mojo
21 Message();
22 ~Message();
24 // These may only be called on a newly created Message object.
28 // Swaps data and handles between this Message and another.
29 void Swap(Message* other);
79 MOJO_DISALLOW_COPY_AND_ASSIGN(Message);
[all...]
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DMessage.java17 public class Message { class
40 public Message(ByteBuffer buffer, List<? extends Handle> handles) { method in class:Message
/external/chromium_org/mojo/public/python/mojo/bindings/
H A Dmessaging.py116 class Message(object): class in inherits:object
134 self._payload = Message(self.data[self.header.size:], self.handles)
145 """A class which implements this interface can receive Message objects."""
149 Receive a Message. The MessageReceiver is allowed to mutate the message.
378 message_receiver.Accept(Message(bytearray(), []))
383 message_receiver.Accept(Message(data[0], data[1]))
/external/chromium_org/net/quic/test_tools/
H A Dcrypto_test_utils.cc566 CryptoHandshakeMessage CryptoTestUtils::Message(const char* message_tag, ...) { function in class:net::test::CryptoTestUtils
/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/chromium_org/testing/gtest/src/
H A Dgtest.cc362 // Message assignment, for assertion streaming support.
363 void AssertHelper::operator=(const Message& message) const {
622 Message msg;
883 // encoding, and streams the result to the given Message object.
885 Message* msg) {
902 // Constructs an empty Message.
907 Message::Message() : ss_(new ::std::stringstream) { function in class:testing::Message
909 // a double to a Message.
913 // These two overloads allow streaming a wide C string to a Message
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc223 using testing::Message;
1632 (Message() << name << "=" << value).GetString());
1640 _putenv((Message() << name << "=" << value).GetString().c_str());
2113 Message msg;
2168 Message msg;
2186 Message msg;
2371 AssertionFailure(Message() << "Failure");
2376 AssertionFailure(Message() << "Failure");
2382 AssertionFailure(Message() << "Failure");
2389 AssertionFailure(Message() << "Failur
6403 class Message {}; class in namespace:my_namespace::testing
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DConsole.js11 /** @type {!Array.<!WebInspector.Console.Message>} */
38 WebInspector.Console.Message = function(text, level, timestamp, show)
73 var message = new WebInspector.Console.Message(text, level || WebInspector.Console.MessageLevel.Log, Date.now(), show || false);
103 * @return {!Array.<!WebInspector.Console.Message>}

Completed in 541 milliseconds

123456