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

1 2 3 4 5 6 7 8 91011>>

  /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/protobuf/js/
test_bootstrap.js 39 // Enable the fromObject method on the message class.
40 'jspb.Message.GENERATE_FROM_OBJECT': true
message.js 32 * @fileoverview Definition of jspb.Message.
38 goog.provide('jspb.Message');
75 * binary{Reader,Writer}Fn and (if message type) binaryMessageSerializeFn are
78 * this extension, and binaryMessageSerializeFn is a reference to the message
83 * @param {?function(new: jspb.Message, Array=)} ctor
84 * @param {?function((boolean|undefined),!jspb.Message):!Object} toObjectFn
123 * @return {boolean} Does this field represent a sub Message?
135 jspb.Message = function() {
147 goog.define('jspb.Message.GENERATE_TO_OBJECT', true);
162 goog.define('jspb.Message.GENERATE_FROM_OBJECT', !goog.DISALLOW_TEST_ONLY_CODE)
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
json1.go 13 type Message struct {
22 m := Message{"Alice", "Hello", 1294706395881547000}
38 var m Message
45 expected := Message{
55 m = Message{
66 var m Message
75 expected := Message{
  /prebuilts/go/linux-x86/doc/progs/
json1.go 13 type Message struct {
22 m := Message{"Alice", "Hello", 1294706395881547000}
38 var m Message
45 expected := Message{
55 m = Message{
66 var m Message
75 expected := 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/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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());
  /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());
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
message.go 9 // A Message represents a routing message.
13 type Message interface {
36 func ParseRIB(typ RIBType, b []byte) ([]Message, error) {
40 var msgs []Message
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
message.go 9 // A Message represents a routing message.
13 type Message interface {
36 func ParseRIB(typ RIBType, b []byte) ([]Message, error) {
40 var msgs []Message
  /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/libmojo/mojo/edk/system/ports/
message.cc 17 bool Message::Parse(const void* bytes,
74 Message::Message(size_t num_payload_bytes, size_t num_ports)
75 : Message(sizeof(EventHeader) + sizeof(UserEventData) +
81 Message::Message(size_t num_header_bytes,
90 void Message::InitializeUserMessageHeader(void* start) {
  /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/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...]
  /external/pdfium/xfa/fxfa/parser/
cscript_logpseudomodel.cpp 23 void CScript_LogPseudoModel::Message(CFXJSE_Arguments* pArguments) {}
  /external/swiftshader/third_party/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/swiftshader/third_party/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...]
  /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;
  /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)),

Completed in 1095 milliseconds

1 2 3 4 5 6 7 8 91011>>