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

1 2 3 4 5 6 7 8 910

  /external/llvm/bindings/ocaml/linker/
linker_ocaml.c 24 void llvm_raise(value Prototype, char *Message);
28 char* Message;
30 if (LLVMLinkModules(Dst, Src, 0, &Message))
31 llvm_raise(*caml_named_value("Llvm_linker.Error"), Message);
  /external/llvm/bindings/ocaml/bitreader/
bitreader_ocaml.c 21 void llvm_raise(value Prototype, char *Message);
26 char *Message;
28 if (LLVMGetBitcodeModuleInContext(C, MemBuf, &M, &Message))
29 llvm_raise(*caml_named_value("Llvm_bitreader.Error"), Message);
37 char *Message;
39 if (LLVMParseBitcodeInContext(C, MemBuf, &M, &Message))
40 llvm_raise(*caml_named_value("Llvm_bitreader.Error"), Message);
  /external/llvm/bindings/ocaml/irreader/
irreader_ocaml.c 21 void llvm_raise(value Prototype, char *Message);
29 char *Message;
31 if (LLVMParseIRInContext(C, MemBuf, &M, &Message))
32 llvm_raise(*caml_named_value("Llvm_irreader.Error"), 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/jmonkeyengine/engine/src/networking/com/jme3/network/
Message.java 44 public interface Message
47 * Sets this message to 'reliable' or not and returns this
48 * message.
50 public Message setReliable(boolean f);
53 * Indicates which way an outgoing message should be sent
54 * or which way an incoming message was sent.
  /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/protobuf/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/google-breakpad/src/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 28 char *Message;
29 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message);
35 String = copy_string(Message);
39 LLVMDisposeMessage(Message);
  /external/llvm/lib/Bitcode/Reader/
BitReader.cpp 24 Optionally returns a human-readable error message via OutMessage. */
38 std::string Message;
39 raw_string_ostream Stream(Message);
47 *OutMessage = strdup(Message.c_str());
59 Optionally returns a human-readable error message via OutMessage. */
64 std::string Message;
74 *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...]
  /frameworks/compile/slang/
slang_diagnostic_buffer.cpp 40 std::string Message;
41 llvm::raw_string_ostream stream(Message);
69 // 100 is enough for storing general diagnosis Message
75 if (mIncludedMessages.find(Message) == mIncludedMessages.end()) {
76 mIncludedMessages.insert(Message);
77 (*mSOS) << Message;
  /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/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/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...]
  /ndk/sources/third_party/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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email_codecs.py 11 from email.message import Message
59 msg = Message()
test_email_codecs_renamed.py 11 from email.message import Message
59 msg = Message()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email_codecs.py 11 from email.message import Message
59 msg = Message()
test_email_codecs_renamed.py 11 from email.message import Message
59 msg = Message()
  /external/clang/lib/Basic/
SourceLocation.cpp 31 OS << Message << '\n';

Completed in 828 milliseconds

1 2 3 4 5 6 7 8 910