HomeSort by relevance Sort by last modified time
    Searched defs:Message (Results 151 - 175 of 709) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Frontend/
LogDiagnosticPrinter.h 24 /// The primary message line of the diagnostic.
25 std::string Message;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Frontend/
LogDiagnosticPrinter.h 24 /// The primary message line of the diagnostic.
25 std::string Message;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Frontend/
LogDiagnosticPrinter.h 24 /// The primary message line of the diagnostic.
25 std::string Message;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Frontend/
LogDiagnosticPrinter.h 24 /// The primary message line of the diagnostic.
25 std::string Message;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Frontend/
LogDiagnosticPrinter.h 24 /// The primary message line of the diagnostic.
25 std::string Message;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Frontend/
LogDiagnosticPrinter.h 24 /// The primary message line of the diagnostic.
25 std::string Message;
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkMessageBox.py 1 # tk common message boxes
3 # this module provides an interface to the native message boxes
16 # - message: the message to display
55 # message dialog class
57 class Message(Dialog):
58 "A message box"
67 def _show(title=None, message=None, _icon=None, _type=None, **options):
71 if message: options["message"] = messag
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mimetools.py 17 __all__ = ["Message","choose_boundary","encode","decode","copyliteral",
20 class Message(rfc822.Message):
21 """A derived class of rfc822.Message that knows about MIME headers and
25 rfc822.Message.__init__(self, fp, seekable)
131 in message text, but there's no guarantee.
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkMessageBox.py 1 # tk common message boxes
3 # this module provides an interface to the native message boxes
16 # - message: the message to display
55 # message dialog class
57 class Message(Dialog):
58 "A message box"
67 def _show(title=None, message=None, _icon=None, _type=None, **options):
71 if message: options["message"] = messag
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
mimetools.py 17 __all__ = ["Message","choose_boundary","encode","decode","copyliteral",
20 class Message(rfc822.Message):
21 """A derived class of rfc822.Message that knows about MIME headers and
25 rfc822.Message.__init__(self, fp, seekable)
131 in message text, but there's no guarantee.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkMessageBox.py 1 # tk common message boxes
3 # this module provides an interface to the native message boxes
16 # - message: the message to display
55 # message dialog class
57 class Message(Dialog):
58 "A message box"
67 def _show(title=None, message=None, _icon=None, _type=None, **options):
71 if message: options["message"] = messag
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetools.py 17 __all__ = ["Message","choose_boundary","encode","decode","copyliteral",
20 class Message(rfc822.Message):
21 """A derived class of rfc822.Message that knows about MIME headers and
25 rfc822.Message.__init__(self, fp, seekable)
131 in message text, but there's no guarantee.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkMessageBox.py 1 # tk common message boxes
3 # this module provides an interface to the native message boxes
16 # - message: the message to display
55 # message dialog class
57 class Message(Dialog):
58 "A message box"
67 def _show(title=None, message=None, _icon=None, _type=None, **options):
71 if message: options["message"] = messag
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetools.py 17 __all__ = ["Message","choose_boundary","encode","decode","copyliteral",
20 class Message(rfc822.Message):
21 """A derived class of rfc822.Message that knows about MIME headers and
25 rfc822.Message.__init__(self, fp, seekable)
131 in message text, but there's no guarantee.
  /system/extras/simpleperf/
UnixSocket_test.cpp 25 struct Message {
56 // Read one message.
68 Message* msg = reinterpret_cast<Message*>(read_buf.data());
71 msg = reinterpret_cast<Message*>(read_buf.data());
84 // For each message received from the server, the client replies a msg
114 // For each message received from the client, the server replies a msg
147 // The client exits once receiving a message from the server.
184 // The server checks if the type of received message is increased by one
  /external/deqp/execserver/
xsProtocol.hpp 50 MESSAGETYPE_HELLO = 100, //!< First message from client, specifies the protocol version
60 MESSAGETYPE_INFO = 204, //!< Generic info message from ExecServer (for debugging purposes).
67 class Message
72 Message (MessageType type_) : type(type_) {}
73 virtual ~Message (void) {}
83 Message (const Message& other);
84 Message& operator= (const Message& other);
89 class SimpleMessage : public Message
    [all...]
  /external/flatbuffers/include/flatbuffers/
grpc.h 29 // Message is a typed wrapper around a buffer that manages the underlying
34 class Message {
36 Message() : slice_(grpc_empty_slice()) {}
38 Message(grpc_slice slice, bool add_ref)
41 Message &operator=(const Message &other) = delete;
43 Message(Message &&other) : slice_(other.slice_) {
47 Message(const Message &other) = delete
    [all...]
  /external/libmojo/mojo/edk/system/
channel.cc 31 IsAlignedForChannelMessage(sizeof(Channel::Message::LegacyHeader)),
34 static_assert(IsAlignedForChannelMessage(sizeof(Channel::Message::Header)),
37 static_assert(sizeof(Channel::Message::LegacyHeader) == 8,
40 static_assert(offsetof(Channel::Message::LegacyHeader, num_bytes) ==
41 offsetof(Channel::Message::Header, num_bytes),
43 static_assert(offsetof(Channel::Message::LegacyHeader, message_type) ==
44 offsetof(Channel::Message::Header, message_type),
55 Channel::Message::Message(size_t payload_size, size_t max_handles)
57 : Message(payload_size, max_handles, MessageType::NORMAL_LEGACY)
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
message.cc 5 #include "mojo/public/cpp/bindings/message.h"
32 void DoNotifyBadMessage(Message message, const std::string& error) {
33 message.NotifyBadMessage(error);
38 Message::Message() {
41 Message::Message(Message&& other)
47 Message::~Message()
    [all...]
  /frameworks/native/libs/vr/libpdx/
service.cpp 20 Message::Message() : replied_(true) {}
22 Message::Message(const MessageInfo& info)
33 // means we have to manually implement the desired move semantics for Message.
34 Message::Message(Message&& other) { *this = std::move(other); }
36 Message& Message::operator=(Message&& other)
    [all...]
  /cts/tests/framework/base/windowmanager/alertwindowservice/src/android/server/wm/alertwindowservice/
AlertWindowService.java 32 import android.os.Message;
64 public void handleMessage(Message msg) {
102 mOutgoingMessenger.send(Message.obtain(null, MSG_ON_ALERT_WINDOW_ADDED));
119 mOutgoingMessenger.send(Message.obtain(null, MSG_ON_ALERT_WINDOW_REMOVED));
  /cts/tests/tests/webkit/src/android/webkit/cts/
TestProcessClient.java 27 import android.os.Message;
102 Message m = Message.obtain(null, TestProcessService.MSG_RUN_TEST);
131 mService.send(Message.obtain(null, TestProcessService.MSG_EXIT_PROCESS));
164 public void handleMessage(Message msg) {
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/model/
Message.java 21 /** Data representation of each message. Stores the sender, text content, and the sent time. */
22 public class Message implements Parcelable {
29 public Message() {}
31 public Message(Message message, String name) {
32 senderId = message.getSenderId();
34 text = message.getText();
37 private Message(Builder builder) {
75 /** Message Builder *
118 Message message = (Message) other; local
    [all...]
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/model/
Message.java 21 /** Data representation of each message. Stores the sender, text content, and the sent time. */
22 public class Message implements Parcelable {
29 public Message() {}
31 public Message(Message message, String name) {
32 senderId = message.getSenderId();
34 text = message.getText();
37 private Message(Builder builder) {
75 /** Message Builder *
118 Message message = (Message) other; local
    [all...]
  /device/generic/goldfish/dhcp/common/
message.cpp 17 #include "message.h"
41 Message::Message() {
46 Message::Message(const uint8_t* data, size_t size) {
56 Message Message::discover(const uint8_t (&sourceMac)[ETH_ALEN]) {
57 Message message(OP_BOOTREQUEST,
61 message.addOption(OPT_PARAMETER_LIST, kRequestParameters)
    [all...]

Completed in 1047 milliseconds

1 2 3 4 5 67 8 91011>>