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

123456

/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/clang/test/CodeGenCXX/
H A Dconstructor-convert.cpp9 static void error(const Twine &Message) {} argument
/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/clang/include/clang/Basic/
H A DPrettyStackTrace.h30 const char *Message; member in class:clang::PrettyStackTraceLoc
33 : SM(sm), Loc(L), Message(Msg) {}
/external/clang/include/clang/Sema/
H A DPrettyDeclStackTrace.h35 const char *Message; member in class:clang::PrettyDeclStackTraceEntry
40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
/external/llvm/bindings/ocaml/analysis/
H A Danalysis_ocaml.c29 char *Message; local
30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message);
36 String = copy_string(Message);
40 LLVMDisposeMessage(Message);
/external/llvm/bindings/ocaml/irreader/
H A Dirreader_ocaml.c30 static void llvm_raise(value Prototype, char *Message) { argument
34 CamlMessage = copy_string(Message);
35 LLVMDisposeMessage(Message);
53 char *Message; local
55 if (LLVMParseIRInContext(C, MemBuf, &M, &Message))
56 llvm_raise(llvm_irreader_error_exn, Message);
/external/llvm/bindings/ocaml/linker/
H A Dlinker_ocaml.c31 static void llvm_raise(value Prototype, char *Message) { argument
35 CamlMessage = copy_string(Message);
36 LLVMDisposeMessage(Message);
48 char* Message; local
50 if (LLVMLinkModules(Dst, Src, Int_val(Mode), &Message))
51 llvm_raise(llvm_linker_error_exn, Message);
/external/llvm/include/llvm/IR/
H A DLeakDetector.h60 static void checkForGarbage(LLVMContext &C, const std::string &Message) { argument
62 checkForGarbageImpl(C, Message);
87 static void checkForGarbageImpl(LLVMContext &C, const std::string &Message);
/external/llvm/lib/IR/
H A DLeakDetector.cpp53 const std::string &Message) {
61 if (Objects->hasGarbage(Message) |
62 pImpl->LLVMObjects.hasGarbage(Message))
52 checkForGarbageImpl(LLVMContext &Context, const std::string &Message) argument
H A DLeaksContext.h69 bool hasGarbage(const std::string& Message) { argument
75 errs() << "Leaked " << Name << " objects found: " << Message << ":\n"; local
/external/protobuf/gtest/include/gtest/
H A Dgtest-message.h34 // 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 { class in namespace:testing
87 // Constructs an empty Message
92 Message() : ss_(new internal::StrStream) {} function in class:testing::Message
95 Message(const Message& msg) : ss_(new internal::StrStream) { // NOLINT function in class:testing::Message
100 explicit Message(const char* str) : ss_(new internal::StrStream) { function in class:testing::Message
[all...]
/external/chromium_org/v8/include/
H A Dv8-debug.h44 class Message { class in class:v8::Debug
90 virtual ~Message() {}
152 typedef void (*MessageHandler)(const Message& message);
180 // Message based interface. The message protocol is JSON.
/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/clang/tools/driver/
H A Dcc1_main.cpp44 static void LLVMErrorHandler(void *UserData, const std::string &Message, argument
48 Diags.Report(diag::err_fe_error_backend) << Message;
/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/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp53 std::string Message; local
/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...]
/external/chromium_org/chrome/browser/devtools/
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/content/child/
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/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/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/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dmessage.h35 // Defines Message, the abstract interface implemented by non-lite
79 // // Same as the last block, but do it dynamically via the Message
81 // Message* foo = new Foo;
133 class Message;
161 // See also MessageLite, which contains most every-day operations. Message
165 // default implementations based on reflection. Message classes which are
169 class LIBPROTOBUF_EXPORT Message : public MessageLite { class in namespace:google::protobuf
171 inline Message() {} function in class:google::protobuf::Message
172 virtual ~Message();
179 virtual Message* Ne
[all...]
/external/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/lldb/utils/test/
H A Dras.py20 from email.message import Message namespace

Completed in 645 milliseconds

123456