HomeSort by relevance Sort by last modified time
    Searched defs:Message (Results 1 - 25 of 245) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/extensions/common/api/messaging/
message.h 10 // A message consists of both the data itself as well as a user gesture state.
11 struct Message {
15 Message() : data(), user_gesture(false) {}
16 Message(const std::string& data, bool user_gesture)
  /external/llvm/bindings/ocaml/linker/
linker_ocaml.c 31 static void llvm_raise(value Prototype, char *Message) {
35 CamlMessage = copy_string(Message);
36 LLVMDisposeMessage(Message);
48 char* Message;
50 if (LLVMLinkModules(Dst, Src, Int_val(Mode), &Message))
51 llvm_raise(llvm_linker_error_exn, Message);
  /external/clang/include/clang/Basic/
PrettyStackTrace.h 25 /// If a crash happens while one of these objects are live, the message
30 const char *Message;
33 : SM(sm), Loc(L), Message(Msg) {}
  /external/llvm/bindings/ocaml/bitreader/
bitreader_ocaml.c 31 static void llvm_raise(value Prototype, char *Message) {
35 CamlMessage = copy_string(Message);
36 LLVMDisposeMessage(Message);
52 char *Message;
55 if (LLVMGetBitcodeModuleInContext(C, MemBuf, &M, &Message))
56 llvm_raise(llvm_bitreader_error_exn, Message);
67 char *Message;
69 if (LLVMParseBitcodeInContext(C, MemBuf, &M, &Message))
70 llvm_raise(llvm_bitreader_error_exn, Message);
  /external/llvm/bindings/ocaml/irreader/
irreader_ocaml.c 30 static void llvm_raise(value Prototype, char *Message) {
34 CamlMessage = copy_string(Message);
35 LLVMDisposeMessage(Message);
53 char *Message;
55 if (LLVMParseIRInContext(C, MemBuf, &M, &Message))
56 llvm_raise(llvm_irreader_error_exn, Message);
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitReader.cpp 21 Optionally returns a human-readable error message via OutMessage. */
32 std::string Message;
35 &Message));
38 *OutMessage = strdup(Message.c_str());
47 Optionally returns a human-readable error message via OutMessage. */
52 std::string Message;
55 &Message));
58 *OutMessage = strdup(Message.c_str());
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitReader.cpp 21 Optionally returns a human-readable error message via OutMessage. */
32 std::string Message;
35 &Message));
38 *OutMessage = strdup(Message.c_str());
47 Optionally returns a human-readable error message via OutMessage. */
52 std::string Message;
55 &Message));
58 *OutMessage = strdup(Message.c_str());
  /external/chromium_org/mojo/public/cpp/bindings/lib/
message.cc 5 #include "mojo/public/cpp/bindings/message.h"
15 Message::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
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-message.h 34 // This header file defines the Message class.
54 // The Message class works like an ostream repeater.
58 // 1. You stream a bunch of values to a Message object.
60 // 2. Then you stream the Message object to an ostream.
61 // This causes the text in the Message to be streamed
66 // testing::Message foo;
72 // Message is not intended to be inherited from. In particular, its
77 // latter (it causes an access violation if you do). The Message
80 class Message {
87 // Constructs an empty Message
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
gtest-message.h 34 // 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 {
89 // Constructs an empty Message
    [all...]
  /external/clang/include/clang/Sema/
PrettyDeclStackTrace.h 35 const char *Message;
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
  /external/llvm/bindings/ocaml/analysis/
analysis_ocaml.c 29 char *Message;
30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message);
36 String = copy_string(Message);
40 LLVMDisposeMessage(Message);
  /external/llvm/lib/Bitcode/Reader/
BitReader.cpp 22 Optionally returns a human-readable error message via OutMessage. */
37 *OutMessage = strdup(EC.message().c_str());
48 Optionally returns a human-readable error message via OutMessage. */
53 std::string Message;
60 *OutMessage = strdup(EC.message().c_str());
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-message.h 34 // 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 {
89 // Constructs an empty Message
    [all...]
  /external/mesa3d/src/gtest/include/gtest/
gtest-message.h 34 // 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 {
89 // Constructs an empty Message
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
parser.py 13 from email.message import Message
22 Creates an in-memory object tree representing the email message, which
24 textual representation of the message.
31 _class is the class to instantiate for new message objects when they
33 zero arguments. Default is Message.Message.
49 self._class = Message
58 """Create a message structure from the data in a file.
60 Reads all the data from the file and returns the root of the message
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
parser.py 13 from email.message import Message
22 Creates an in-memory object tree representing the email message, which
24 textual representation of the message.
31 _class is the class to instantiate for new message objects when they
33 zero arguments. Default is Message.Message.
49 self._class = Message
58 """Create a message structure from the data in a file.
60 Reads all the data from the file and returns the root of the message
    [all...]
  /external/chromium_org/ipc/
ipc_message.cc 40 Message::~Message() {
43 Message::Message()
54 Message::Message(int32 routing_id, uint32 type, PriorityValue priority)
67 Message::Message(const char* data, int data_len) : Pickle(data, data_len) {
71 Message::Message(const Message& other) : Pickle(other)
    [all...]
  /external/chromium_org/v8/include/
v8-debug.h 42 * A message object passed to the debug message handler.
44 class Message {
47 * Check type of message.
62 * debugger event that started the debug message loop.
82 * request that led to the message or NULL if the message is an event. The
84 * no message handler.
90 virtual ~Message() {}
127 * there is no message handler
    [all...]
  /external/chromium_org/content/child/
webmessageportchannel_impl.h 60 virtual void postMessage(const blink::WebString& message,
62 virtual bool tryGetMessage(blink::WebString* message,
67 void Send(IPC::Message* message);
68 void PostMessage(const base::string16& message,
72 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
74 void OnMessage(const base::string16& message,
79 struct Message {
80 Message();
83 base::string16 message; member in struct:content::WebMessagePortChannelImpl::Message
    [all...]
  /external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Message.java 14 * A raw message to be sent/received from a {@link MessagePipeHandle}. Note that this can contain
15 * any data, not necessarily a Mojo message with a proper header. See also {@link ServiceMessage}.
17 public class Message {
20 * The data of the message.
25 * The handles of the message.
30 * This message interpreted as a message for a mojo service with an appropriate header.
40 public Message(ByteBuffer buffer, List<? extends Handle> handles) {
47 * The data of the message.
54 * The handles of the message
    [all...]
  /external/chromium_org/testing/gtest/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...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
message.h 35 // Defines Message, the abstract interface implemented by non-lite
36 // protocol message objects. Although it's possible to implement this
42 // Say you have a message defined as:
44 // message Foo {
52 // string data; // Will store a serialized version of the message.
55 // // Create a message and serialize it.
66 // // Parse the serialized message and check that it contains the
79 // // Same as the last block, but do it dynamically via the Message
81 // Message* foo = new Foo;
96 // // Parse the message
    [all...]
  /external/gtest/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...]
  /external/llvm/lib/IR/
LeaksContext.h 69 bool hasGarbage(const std::string& Message) {
75 errs() << "Leaked " << Name << " objects found: " << Message << ":\n";

Completed in 575 milliseconds

1 2 3 4 5 6 7 8 910