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

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Sema/
PrettyDeclStackTrace.h 35 const char *Message;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Testing/Support/
SupportHelpers.h 21 std::string Message;
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
PrettyDeclStackTrace.h 35 const char *Message;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Sema/
PrettyDeclStackTrace.h 35 const char *Message;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Testing/Support/
SupportHelpers.h 21 std::string Message;
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Sema/
PrettyDeclStackTrace.h 35 const char *Message;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Testing/Support/
SupportHelpers.h 21 std::string Message;
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Sema/
PrettyDeclStackTrace.h 35 const char *Message;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Testing/Support/
SupportHelpers.h 21 std::string Message;
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Sema/
PrettyDeclStackTrace.h 35 const char *Message;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Testing/Support/
SupportHelpers.h 21 std::string Message;
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Sema/
PrettyDeclStackTrace.h 35 const char *Message;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Testing/Support/
SupportHelpers.h 21 std::string Message;
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Sema/
PrettyDeclStackTrace.h 35 const char *Message;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Testing/Support/
SupportHelpers.h 21 std::string Message;
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
  /system/connectivity/wifilogd/tests/
local_utils_unittest.cpp 49 struct Message {
53 const Message original{5, 'c'};
55 CopyFromBufferOrDie<Message>(&original, sizeof(original));
164 struct Message {
168 const Message original{5, 'c'};
169 EXPECT_DEATH((CopyFromBufferOrDie<Message>(&original, sizeof(original) - 1)),
  /external/libmojo/ipc/
ipc_message.cc 47 Message::~Message() {
50 Message::Message() : base::Pickle(sizeof(Header)) {
60 Message::Message(int32_t routing_id, uint32_t type, PriorityValue priority)
73 Message::Message(const char* data, int data_len)
78 Message::Message(const Message& other) : base::Pickle(other)
    [all...]
  /external/libmojo/mojo/edk/system/ports/
message.h 18 // A message consists of a header (array of bytes), payload (array of bytes)
26 class Message {
28 virtual ~Message() {}
30 // Inspect the message at |bytes| and return the size of each section. Returns
31 // |false| if the message is malformed and |true| otherwise.
46 return const_cast<Message*>(this)->mutable_payload_bytes();
54 return const_cast<Message*>(this)->mutable_ports();
60 // Constructs a new Message base for a user message.
62 // Note: You MUST call InitializeUserMessageHeader() before this Message i
    [all...]
  /external/v8/include/
v8-debug.h 37 * A message object passed to the debug message handler.
39 class Message {
42 * Check type of message.
57 * debugger event that started the debug message loop.
77 * request that led to the message or NULL if the message is an event. The
79 * no message handler.
85 virtual ~Message() {}
141 typedef void (*MessageHandler)(const Message& message)
    [all...]
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/inc/
IPACM_CmdQueue.h 63 class Message
66 Message *m_next;
71 Message()
76 ~Message() { }
77 void setnext(Message *item) { m_next = item; }
78 Message* getnext() { return m_next; }
85 Message *Head;
86 Message *Tail;
87 Message* dequeue(void);
100 void enqueue(Message *item)
    [all...]
  /external/autotest/site_utils/
gmail_lib.py 65 class Message():
66 """An email message."""
69 """Initialize a message.
73 @param subject: String, subject of the message
74 @param message_text: String, content of the message.
84 @return: A dictionary representing the message.
86 message = MIMEText(self.message_text)
87 message['to'] = self.to
88 message['subject'] = self.subject
89 return {'raw': base64.urlsafe_b64encode(message.as_string())
    [all...]
  /external/autotest/site_utils/lxc/container_pool/
message.py 8 # Message types.
15 # Message type for container pool communication.
16 Message = collections.namedtuple('Message', ['type', 'args'])
20 """Creates a message of type ACK.
25 return Message(ACK, {})
29 """Creates an echo message.
34 @param msg: An optional string that can be attached to the message.
36 return Message(ECHO, {'msg': msg})
40 """Creates a service shutdown message
    [all...]
  /external/clang/test/CodeGen/
available-externally-hidden.cpp 11 class Message{};
14 virtual bool Send(Message* msg) = 0;
23 bool Send(Message* message) override;
31 f->Send(new Message);
  /external/flatbuffers/tests/FlatBuffers.Test/
Assert.cs 36 public override string Message
55 public override string Message
70 public override string Message
  /external/googletest/googletest/include/gtest/
gtest-message.h 34 // 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 {
    [all...]

Completed in 611 milliseconds

1 23 4 5 6 7 8 91011>>