/external/protobuf/src/google/protobuf/ |
D | generated_message_reflection.h | 134 const Message* default_instance, 170 const Message* default_instance, 190 const Message* default_instance, 203 const Message* default_instance, 214 const UnknownFieldSet& GetUnknownFields(const Message& message) const; 215 UnknownFieldSet* MutableUnknownFields(Message* message) const; 217 int SpaceUsed(const Message& message) const; 219 bool HasField(const Message& message, const FieldDescriptor* field) const; 220 int FieldSize(const Message& message, const FieldDescriptor* field) const; 221 void ClearField(Message* message, const FieldDescriptor* field) const; [all …]
|
D | message.h | 132 class Message; variable 179 class LIBPROTOBUF_EXPORT Message : public MessageLite { 181 inline Message() {} in Message() function 182 virtual ~Message(); 189 virtual Message* New() const = 0; 194 virtual Message* New(::google::protobuf::Arena* arena) const { in New() 195 Message* message = New(); in New() 205 virtual void CopyFrom(const Message& from); 212 virtual void MergeFrom(const Message& from); 343 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Message); [all …]
|
D | message.cc | 65 Message::~Message() {} in ~Message() 67 void Message::MergeFrom(const Message& from) { in MergeFrom() 76 void Message::CheckTypeAndMergeFrom(const MessageLite& other) { in CheckTypeAndMergeFrom() 77 MergeFrom(*down_cast<const Message*>(&other)); in CheckTypeAndMergeFrom() 80 void Message::CopyFrom(const Message& from) { in CopyFrom() 89 string Message::GetTypeName() const { in GetTypeName() 93 void Message::Clear() { in Clear() 97 bool Message::IsInitialized() const { in IsInitialized() 101 void Message::FindInitializationErrors(vector<string>* errors) const { in FindInitializationErrors() 105 string Message::InitializationErrorString() const { in InitializationErrorString() [all …]
|
D | generated_message_reflection.cc | 177 const Message* default_instance, in GeneratedMessageReflection() 204 const Message* default_instance, in GeneratedMessageReflection() 256 const Message& message) const { in GetUnknownFields() 269 Message* message) const { in MutableUnknownFields() 278 int GeneratedMessageReflection::SpaceUsed(const Message& message) const { in SpaceUsed() 330 .SpaceUsedExcludingSelf<GenericTypeHandler<Message> >(); in SpaceUsed() 379 const Message* sub_message = GetRaw<const Message*>(message, field); in SpaceUsed() 393 Message* message1, in SwapField() 394 Message* message2, in SwapField() 428 Swap<GenericTypeHandler<google::protobuf::Message> >( in SwapField() [all …]
|
/external/protobuf/src/google/protobuf/util/ |
D | message_differencer.h | 118 static bool Equals(const Message& message1, const Message& message2); 130 static bool Equivalent(const Message& message1, const Message& message2); 142 static bool ApproximatelyEquals(const Message& message1, 143 const Message& message2); 157 static bool ApproximatelyEquivalent(const Message& message1, 158 const Message& message2); 223 const Message& message1, const Message& message2, 228 const Message& message1, 229 const Message& message2, 234 const Message& message1, [all …]
|
/external/skia/include/private/ |
D | SkMessageBus.h | 17 template <typename Message> 21 static void Post(const Message& m); 29 void poll(SkTArray<Message>* out); 32 SkTArray<Message> fMessages; 36 void receive(const Message& m); // SkMessageBus is a friend only to call this. 49 #define DECLARE_SKMESSAGEBUS_MESSAGE(Message) \ argument 51 SkMessageBus<Message>* SkMessageBus<Message>::Get() { \ 53 static SkMessageBus<Message>* bus; \ 54 once([] { bus = new SkMessageBus<Message>(); }); \ 60 template<typename Message> [all …]
|
/external/protobuf/js/ |
D | message.js | 135 jspb.Message = function() { class in jspb 181 jspb.Message.SUPPORTS_UINT8ARRAY_ = (typeof Uint8Array == 'function'); 189 jspb.Message.prototype.array; 199 jspb.Message.prototype.wrappers_; 208 jspb.Message.prototype.extensionObject_; 217 jspb.Message.prototype.pivot_; 226 jspb.Message.prototype.messageId_; 234 jspb.Message.prototype.convertedFloatingPointFields_; 246 jspb.Message.prototype.messageXid; 255 jspb.Message.prototype.getJsPbMessageId = function() { [all …]
|
/external/tcpdump/tests/ |
D | lmp.out | 1 IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Begin Verify Message, length: 56 2 IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Hello Message, length: 28 3 IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Config NACK Message, length: 56 4 IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Config ACK Message, length: 48 5 IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Config Message, length: 40 6 IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Link Summary ACK Message, length: 16 7 IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Link Summary NACK Message, length: 96 8 IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Begin Verify ACK Message, length: 40 9 IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 Begin Verify NACK Message, length: 32 10 IP 10.0.12.1.49998 > 10.0.12.2.49998: LMPv1 End Verify Message, length: 24 [all …]
|
/external/protobuf/gtest/test/ |
D | gtest-message_test.cc | 40 using ::testing::Message; 44 const char* ToCString(const Message& msg) { in ToCString() 54 const Message msg; in TEST() 60 const Message msg1("Hello"); in TEST() 61 const Message msg2(msg1); in TEST() 67 Message msg("Hello"); in TEST() 73 const char* const s = ToCString(Message() << 1.23456F << " " << 2.34567F); in TEST() 81 const char* const s = ToCString(Message() << 1260570880.4555497 << " " in TEST() 92 EXPECT_STRNE("(null)", ToCString(Message() << p)); in TEST() 98 EXPECT_STREQ("(null)", ToCString(Message() << p)); in TEST() [all …]
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest-message_test.cc | 40 using ::testing::Message; 43 const char* ToCString(const Message& msg) { in ToCString() 53 const Message msg; in TEST() 59 const Message msg1("Hello"); in TEST() 60 const Message msg2(msg1); in TEST() 66 Message msg("Hello"); in TEST() 72 const char* const s = ToCString(Message() << 1.23456F << " " << 2.34567F); in TEST() 80 const char* const s = ToCString(Message() << 1260570880.4555497 << " " in TEST() 91 EXPECT_STRNE("(null)", ToCString(Message() << p)); in TEST() 97 EXPECT_STREQ("(null)", ToCString(Message() << p)); in TEST() [all …]
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | MessageTest.java | 12 import android.os.Message; 19 assertNotNull(new Message().getData()); in testGetDataShouldLazilyCreateBundle() 20 assertTrue(new Message().getData().isEmpty()); in testGetDataShouldLazilyCreateBundle() 25 Message m = new Message(); in testGetData() 33 assertNull(new Message().peekData()); in testPeekData() 35 Message m = new Message(); in testPeekData() 43 Message m = new Message(); in testGetTarget() 52 Message m = new Message(); in testCopyFrom() 59 Message m2 = new Message(); in testCopyFrom() 72 Message m = Message.obtain(); in testObtain() [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowMessage.java | 11 import android.os.Message; 13 @Implements(Message.class) 20 private Message message; 51 public void copyFrom(Message m) { in copyFrom() 60 public static Message obtain() { in obtain() 61 return new Message(); in obtain() 65 public static Message obtain(Handler h) { in obtain() 66 Message m = new Message(); in obtain() 72 public static Message obtain(Handler h, int what) { in obtain() 73 Message m = obtain(h); in obtain() [all …]
|
/external/libmojo/ipc/ |
D | ipc_message.cc | 49 Message::~Message() { in ~Message() 52 Message::Message() : base::Pickle(sizeof(Header)) { in Message() function in IPC::Message 65 Message::Message(int32_t routing_id, uint32_t type, PriorityValue priority) in Message() function in IPC::Message 81 Message::Message(const char* data, int data_len) in Message() function in IPC::Message 86 Message::Message(const Message& other) : base::Pickle(other) { in Message() function in IPC::Message 92 void Message::Init() { in Init() 102 Message& Message::operator=(const Message& other) { in operator =() 109 void Message::SetHeaderValues(int32_t routing, uint32_t type, uint32_t flags) { in SetHeaderValues() 118 void Message::EnsureMessageAttachmentSet() { in EnsureMessageAttachmentSet() 124 void Message::set_sent_time(int64_t time) { in set_sent_time() [all …]
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
D | gtest-message_test.cc | 40 using ::testing::Message; 46 const Message msg; in TEST() 52 const Message msg1("Hello"); in TEST() 53 const Message msg2(msg1); in TEST() 59 Message msg("Hello"); in TEST() 65 const std::string s = (Message() << 1.23456F << " " << 2.34567F).GetString(); in TEST() 73 const std::string s = (Message() << 1260570880.4555497 << " " in TEST() 84 EXPECT_NE("(null)", (Message() << p).GetString()); in TEST() 90 EXPECT_EQ("(null)", (Message() << p).GetString()); in TEST() 95 EXPECT_EQ("Foo", (Message() << "Foo").GetString()); in TEST() [all …]
|
/external/googletest/googletest/test/ |
D | gtest-message_test.cc | 40 using ::testing::Message; 46 const Message msg; in TEST() 52 const Message msg1("Hello"); in TEST() 53 const Message msg2(msg1); in TEST() 59 Message msg("Hello"); in TEST() 65 const std::string s = (Message() << 1.23456F << " " << 2.34567F).GetString(); in TEST() 73 const std::string s = (Message() << 1260570880.4555497 << " " in TEST() 84 EXPECT_NE("(null)", (Message() << p).GetString()); in TEST() 90 EXPECT_EQ("(null)", (Message() << p).GetString()); in TEST() 95 EXPECT_EQ("Foo", (Message() << "Foo").GetString()); in TEST() [all …]
|
/external/v8/testing/gtest/test/ |
D | gtest-message_test.cc | 40 using ::testing::Message; 46 const Message msg; in TEST() 52 const Message msg1("Hello"); in TEST() 53 const Message msg2(msg1); in TEST() 59 Message msg("Hello"); in TEST() 65 const std::string s = (Message() << 1.23456F << " " << 2.34567F).GetString(); in TEST() 73 const std::string s = (Message() << 1260570880.4555497 << " " in TEST() 84 EXPECT_NE("(null)", (Message() << p).GetString()); in TEST() 90 EXPECT_EQ("(null)", (Message() << p).GetString()); in TEST() 95 EXPECT_EQ("Foo", (Message() << "Foo").GetString()); in TEST() [all …]
|
/external/deqp/execserver/ |
D | xsProtocol.hpp | 67 class Message class 72 Message (MessageType type_) : type(type_) {} in Message() function in xs::Message 73 virtual ~Message (void) {} in ~Message() 83 Message (const Message& other); 84 Message& operator= (const Message& other); 89 class SimpleMessage : public Message 92 …SimpleMessage (const deUint8* data, size_t dataSize) : Message((MessageType)MsgType) { DE_UNREF(da… in SimpleMessage() 93 SimpleMessage (void) : Message((MessageType)MsgType) {} in SimpleMessage() 103 class HelloMessage : public Message 109 HelloMessage (void) : Message(MESSAGETYPE_HELLO), version(PROTOCOL_VERSION) {} in HelloMessage() [all …]
|
/external/deqp/framework/egl/ |
D | egluCallLogWrapper.inl | 10 m_log << TestLog::Message << "eglBindAPI(" << getAPIStr(api) << ");" << TestLog::EndMessage; 13 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes… 20 …m_log << TestLog::Message << "eglBindTexImage(" << dpy << ", " << toHex(surface) << ", " << buffer… 23 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes… 30 …m_log << TestLog::Message << "eglChooseConfig(" << dpy << ", " << getConfigAttribListStr(attrib_li… 34 …m_log << TestLog::Message << "// configs = " << getPointerStr(configs, (num_config && returnValue)… 35 …m_log << TestLog::Message << "// num_config = " << (num_config ? de::toString(*num_config) : "NULL… 38 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes… 45 …m_log << TestLog::Message << "eglClientWaitSync(" << dpy << ", " << sync << ", " << flags << ", " … 48 m_log << TestLog::Message << "// " << returnValue << " returned" << TestLog::EndMessage; [all …]
|
/external/v8/testing/gtest/include/gtest/ |
D | gtest-message.h | 85 class GTEST_API_ Message { 93 Message(); 96 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() function 101 explicit Message(const char* str) : ss_(new ::std::stringstream) { in Message() function 108 inline Message& operator <<(const T& value) { 115 inline Message& operator <<(const T& val) { 149 inline Message& operator <<(T* const& pointer) { // NOLINT 165 Message& operator <<(BasicNarrowIoManip val) { 171 Message& operator <<(bool b) { 177 Message& operator <<(const wchar_t* wide_c_str); [all …]
|
/external/mesa3d/src/gtest/include/gtest/ |
D | gtest-message.h | 85 class GTEST_API_ Message { 93 Message(); 96 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() function 101 explicit Message(const char* str) : ss_(new ::std::stringstream) { in Message() function 108 inline Message& operator <<(const T& value) { 115 inline Message& operator <<(const T& val) { 149 inline Message& operator <<(T* const& pointer) { // NOLINT 165 Message& operator <<(BasicNarrowIoManip val) { 171 Message& operator <<(bool b) { 177 Message& operator <<(const wchar_t* wide_c_str); [all …]
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/ |
D | gtest-message.h | 85 class GTEST_API_ Message { 93 Message(); 96 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() function 101 explicit Message(const char* str) : ss_(new ::std::stringstream) { in Message() function 108 inline Message& operator <<(const T& value) { 115 inline Message& operator <<(const T& val) { 149 inline Message& operator <<(T* const& pointer) { // NOLINT 165 Message& operator <<(BasicNarrowIoManip val) { 171 Message& operator <<(bool b) { 177 Message& operator <<(const wchar_t* wide_c_str); [all …]
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/ |
D | gtest-message.h | 85 class GTEST_API_ Message { 93 Message(); 96 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() function 101 explicit Message(const char* str) : ss_(new ::std::stringstream) { in Message() function 108 inline Message& operator <<(const T& value) { 115 inline Message& operator <<(const T& val) { 149 inline Message& operator <<(T* const& pointer) { // NOLINT 165 Message& operator <<(BasicNarrowIoManip val) { 171 Message& operator <<(bool b) { 177 Message& operator <<(const wchar_t* wide_c_str); [all …]
|
/external/protobuf/gtest/include/gtest/ |
D | gtest-message.h | 82 class GTEST_API_ Message { 94 Message() : ss_(new internal::StrStream) { in Message() function 101 Message(const Message& msg) : ss_(new internal::StrStream) { // NOLINT in Message() function 106 explicit Message(const char* str) : ss_(new internal::StrStream) { in Message() function 110 ~Message() { delete ss_; } in ~Message() 114 inline Message& operator <<(const T& value) { 121 inline Message& operator <<(const T& val) { 140 inline Message& operator <<(T* const& pointer) { // NOLINT 156 Message& operator <<(BasicNarrowIoManip val) { 162 Message& operator <<(bool b) { [all …]
|
/external/googletest/googletest/include/gtest/ |
D | gtest-message.h | 85 class GTEST_API_ Message { 93 Message(); 96 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() function 101 explicit Message(const char* str) : ss_(new ::std::stringstream) { in Message() function 108 inline Message& operator <<(const T& value) { 115 inline Message& operator <<(const T& val) { 149 inline Message& operator <<(T* const& pointer) { // NOLINT 165 Message& operator <<(BasicNarrowIoManip val) { 171 Message& operator <<(bool b) { 177 Message& operator <<(const wchar_t* wide_c_str); [all …]
|
/external/google-breakpad/src/testing/gtest/include/gtest/ |
D | gtest-message.h | 82 class GTEST_API_ Message { 94 Message() : ss_(new ::std::stringstream) { in Message() function 101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() function 106 explicit Message(const char* str) : ss_(new ::std::stringstream) { in Message() function 113 inline Message& operator <<(const T& value) { 120 inline Message& operator <<(const T& val) { 139 inline Message& operator <<(T* const& pointer) { // NOLINT 155 Message& operator <<(BasicNarrowIoManip val) { 161 Message& operator <<(bool b) { 167 Message& operator <<(const wchar_t* wide_c_str) { [all …]
|