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

1 2 3 4 5

  /external/clang/include/clang/Basic/
PrettyStackTrace.h 25 /// live, the message is printed out along with the specified source location.
29 const char *Message;
32 : SM(sm), Loc(L), Message(Msg) {}
  /external/clang/include/clang/Sema/
PrettyDeclStackTrace.h 35 const char *Message;
39 : S(S), TheDecl(D), Loc(Loc), 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/include/llvm/TableGen/
Error.h 24 std::string Message;
26 TGError(SMLoc loc, const std::string &message) : Loc(loc), Message(message) {}
29 const std::string &getMessage() const { return Message; }
  /external/llvm/lib/Bitcode/Reader/
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_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());
  /external/chromium/sdch/open-vcdiff/src/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/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/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/testing/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/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/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/webkit/Source/WebKit/android/smoke/
MessageTypes.h 46 // Message base class. Defines the public run() method and contains generic
50 // member function to the generic void* and Message::* types. During run(),
54 class Message {
56 typedef void (Message::*GenericMemberFunction)(void);
58 virtual ~Message() {}
61 // The wall time that the message is supposed to run.
68 Message(void* object, GenericMemberFunction member, long delay = 0)
81 Message(const Message&);
89 class MemberFunctionMessage<T, void> : public Message {
    [all...]
  /external/llvm/lib/VMCore/
LeaksContext.h 65 bool hasGarbage(const std::string& Message) {
71 errs() << "Leaked " << Name << " objects found: " << Message << ":\n";
  /external/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;
95 // // Parse the message
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
Message.java 27 public abstract class Message {
30 * Message length
35 * Returns message type
41 * Returns message length
49 * Sends message
  /external/v8/include/
v8-debug.h 97 * A message object passed to the debug message handler.
99 class Message {
102 * Check type of message.
117 * debugger event that started the debug message loop.
137 * request that led to the message or NULL if the message is an event. The
139 * no message handler.
143 virtual ~Message() {}
179 * there is no message handler
    [all...]
  /external/clang/include/clang/Frontend/
LogDiagnosticPrinter.h 24 /// The primary message line of the diagnostic.
25 std::string Message;
  /external/clang/lib/Basic/
SourceLocation.cpp 31 OS << Message << '\n';
  /hardware/ti/omap4xxx/libtiutils/
MessageQueue.h 25 ///Uncomment this macro to debug the message queue implementation
52 ///Message type
53 struct Message
63 ///Message queue implementation
71 ///Get a message from the queue
72 android::status_t get(Message*);
74 ///Get the input file descriptor of the message queue
77 ///Set the input file descriptor for the message queue
80 ///Queue a message
81 android::status_t put(Message*);
    [all...]
  /external/chromium/chrome/browser/chromeos/
wm_ipc.h 39 struct Message {
41 Message() {
45 explicit Message(WmIpcMessageType type) {
75 // Type of message that was sent.
80 // use the first one to store the message type.
101 // Sends a message to the WM.
102 void SendMessage(const Message& msg);
104 // If |event| is a valid Message it is decoded into |msg| and true is
105 // returned. If false is returned, |event| is not a valid Message.
106 bool DecodeMessage(const GdkEventClient& event, Message* msg)
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 74 static void Message(const char *Type, const Twine &Msg) {
79 Message("error", Msg);
98 return Error("unable to read input: '" + ec.message() + "'");
  /external/protobuf/python/google/protobuf/
message.py 45 class Message(object):
49 Protocol message classes are almost always generated by the protocol
50 compiler. These generated types subclass Message and implement the methods
81 """Merges the contents of the specified message into current message.
83 This method merges the contents of the specified message into the current
84 message. Singular fields that are set in the specified message overwrite
85 the corresponding fields in the current message. Repeated fields are
89 other_msg: Message to merge into the current message
    [all...]
  /external/clang/tools/scan-view/
Reporter.py 28 from email.message import Message
139 raise ReportFailure('Unable to send message via SMTP.')
141 return "Message sent!"
228 # We expect (int: bugID, str: message)
232 bugID,message = values
236 raise ReportFailure(message)
  /external/llvm/lib/Support/
SourceMgr.cpp 141 /// @param Type - If non-null, the kind of message (e.g., "error") which is
142 /// prefixed to the message.
199 // Report the message with the diagnostic handler if present.
224 Message(Msg), LineContents(LineStr), Ranges(Ranges.vec()) {
253 S << Message << '\n';

Completed in 433 milliseconds

1 2 3 4 5