| /third_party/protobuf/src/google/protobuf/ |
| H A D | message.h | 35 // 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; 140 class Message; 197 inline To* GetPointerAtOffset(Message* message, uint32 offset) { in GetPointerAtOffset() 202 const To* GetConstPointerAtOffset(const Message* message, uint32 offset) { in GetConstPointerAtOffset() 208 const To& GetConstRefAtOffset(const Message& message, uint32 offset) { in GetConstRefAtOffset() 217 // See also MessageLite, which contains most every-day operations. Message 221 // default implementations based on reflection. Message classes which are 228 class PROTOBUF_EXPORT Message class 230 inline Message() {} Message() function in google::protobuf::Message 362 inline explicit Message(Arena* arena) : MessageLite(arena) {} Message() function in google::protobuf::Message [all...] |
| H A D | message.cc | 81 void Message::MergeFrom(const Message& from) { in MergeFrom() 93 void Message::CheckTypeAndMergeFrom(const MessageLite& other) { in CheckTypeAndMergeFrom() 94 MergeFrom(*down_cast<const Message*>(&other)); in CheckTypeAndMergeFrom() 97 void Message::CopyFrom(const Message& from) { in CopyFrom() 109 std::string Message::GetTypeName() const { in GetTypeName() 113 void Message::Clear() { ReflectionOps::Clear(this); } in Clear() 115 bool Message::IsInitialized() const { in IsInitialized() 119 void Message [all...] |
| H A D | generated_message_reflection.cc | 117 " Message type: " in ReportReflectionUsageError() 140 " Message type: " in ReportReflectionUsageTypeError() 161 " Message type: " in ReportReflectionUsageEnumTypeError() 230 const Message& message) const { in GetUnknownFields() 235 UnknownFieldSet* Reflection::MutableUnknownFields(Message* message) const { in MutableUnknownFields() 240 size_t Reflection::SpaceUsedLong(const Message& message) const { in SpaceUsedLong() 291 .SpaceUsedExcludingSelfLong<GenericTypeHandler<Message> >(); in SpaceUsedLong() 348 const Message* sub_message = GetRaw<const Message*>(message, field); in SpaceUsedLong() 360 void Reflection::SwapField(Message* message [all...] |
| H A D | text_format.h | 74 static bool Print(const Message& message, io::ZeroCopyOutputStream* output); 85 static bool PrintToString(const Message& message, std::string* output); 96 static void PrintFieldValueToString(const Message& message, 141 virtual void PrintFieldName(const Message& message, int field_index, 145 virtual void PrintFieldName(const Message& message, 149 virtual void PrintMessageStart(const Message& message, int field_index, 157 virtual bool PrintMessageContent(const Message& message, int field_index, 160 virtual void PrintMessageEnd(const Message& message, int field_index, 183 virtual std::string PrintFieldName(const Message& message, 186 virtual std::string PrintMessageStart(const Message [all...] |
| H A D | reflection_ops.h | 56 // methods of the Message interface, though they are likely to be 60 // the Message interface. 65 static void Copy(const Message& from, Message* to); 66 static void Merge(const Message& from, Message* to); 67 static void Clear(Message* message); 68 static bool IsInitialized(const Message& message); 69 static bool IsInitialized(const Message& message, bool check_fields, 71 static void DiscardUnknownFields(Message* messag [all...] |
| /third_party/protobuf/js/ |
| H A D | message.js | 32 * @fileoverview Definition of jspb.Message. 39 goog.provide('jspb.Message'); 83 * @param {?function(new: jspb.Message, Array=)} ctor 84 * @param {?function((boolean|undefined),!jspb.Message):!Object} toObjectFn 134 * @return {boolean} Does this field represent a sub Message? 155 * WARNING - Property serializeBinary never defined on jspb.Message 161 jspb.Message = function() { 173 jspb.Message.GENERATE_TO_OBJECT = 174 goog.define('jspb.Message.GENERATE_TO_OBJECT', true); 186 jspb.Message [all...] |
| /third_party/protobuf/src/google/protobuf/util/ |
| H A D | message_differencer.h | 52 #include <google/protobuf/message.h> // Message 112 // unpacks Any::value into a Message and compares its individual fields. 131 static bool Equals(const Message& message1, const Message& message2); 144 static bool Equivalent(const Message& message1, const Message& message2); 156 static bool ApproximatelyEquals(const Message& message1, 157 const Message& message2); 171 static bool ApproximatelyEquivalent(const Message& message1, 172 const Message [all...] |
| /third_party/skia/src/core/ |
| H A D | SkMessageBus.h | 22 * The following method must have a specialization for type 'Message': 24 * bool SkShouldPostMessageToBus(const Message&, IDType msgBusUniqueID) 27 * sending to all inboxes when the specialization for type 'Message' is not present. 29 template <typename Message, typename IDType, bool AllowCopyableMessage = true> 37 static_assert(AllowCopyableMessage || is_sk_sp<Message>::value || 38 !std::is_copy_constructible<Message>::value, 41 // Post a message to be received by Inboxes for this Message type. Checks 43 static void Post(Message m); 53 void poll(SkTArray<Message>* out); 56 SkTArray<Message> fMessage [all...] |
| /third_party/protobuf/php/ext/google/protobuf/ |
| H A D | message.c | 49 // Message 57 } Message; typedef 67 * PHP class entry function to allocate and initialize a new Message object. 70 Message *intern = emalloc(sizeof(Message)); in Message_create() 82 * Object handler to destroy a Message. This releases all resources associated 87 Message* intern = (Message*)obj; in Message_dtor() 98 static const upb_fielddef *get_field(Message *msg, PROTO_STR *member) { in get_field() 132 Message* inter in Message_has_property() [all...] |
| /third_party/vk-gl-cts/execserver/ |
| H A 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(data); XS_CHECK_MSG(dataSize == 0, "No payload expected"); } in SimpleMessage() 93 SimpleMessage (void) : Message((MessageTyp in SimpleMessage() [all...] |
| /third_party/node/deps/openssl/openssl/util/perl/ |
| H A D | checkhandshake.pm | 79 $numsh++ if ($lastmt != TLSProxy::Message::MT_SERVER_HELLO 80 && $handmessages[$loop][0] == TLSProxy::Message::MT_SERVER_HELLO); 112 $chnum++ if $message->mt() == TLSProxy::Message::MT_CLIENT_HELLO; 113 $shnum++ if $message->mt() == TLSProxy::Message::MT_SERVER_HELLO; 115 next if ($message->mt() != TLSProxy::Message::MT_CLIENT_HELLO 116 && $message->mt() != TLSProxy::Message::MT_SERVER_HELLO 118 TLSProxy::Message::MT_ENCRYPTED_EXTENSIONS 119 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE 120 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE_REQUEST); 122 next if $message->mt() == TLSProxy::Message [all...] |
| /third_party/openssl/util/perl/ |
| H A D | checkhandshake.pm | 79 $numsh++ if ($lastmt != TLSProxy::Message::MT_SERVER_HELLO 80 && $handmessages[$loop][0] == TLSProxy::Message::MT_SERVER_HELLO); 112 $chnum++ if $message->mt() == TLSProxy::Message::MT_CLIENT_HELLO; 113 $shnum++ if $message->mt() == TLSProxy::Message::MT_SERVER_HELLO; 115 next if ($message->mt() != TLSProxy::Message::MT_CLIENT_HELLO 116 && $message->mt() != TLSProxy::Message::MT_SERVER_HELLO 118 TLSProxy::Message::MT_ENCRYPTED_EXTENSIONS 119 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE 120 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE_REQUEST); 122 next if $message->mt() == TLSProxy::Message [all...] |
| /third_party/googletest/googletest/test/ |
| H A D | googletest-message-test.cc | 31 // Tests for the Message class. 41 using ::testing::Message; 43 // Tests the testing::Message class 47 const Message msg; in TEST() 53 const Message msg1("Hello"); in TEST() 54 const Message msg2(msg1); in TEST() 58 // Tests constructing a Message from a C-string. 60 Message msg("Hello"); in TEST() 66 const std::string s = (Message() << 1.23456F << " " << 2.34567F).GetString(); in TEST() 75 (Message() << 1260570880.455549 in TEST() [all...] |
| /third_party/googletest/googletest/include/gtest/ |
| H A D | gtest-message.h | 32 // This header file defines the Message class. 63 // See Message& operator<<(...) below for why. 68 // The Message class works like an ostream repeater. 72 // 1. You stream a bunch of values to a Message object. 74 // 2. Then you stream the Message object to an ostream. 75 // This causes the text in the Message to be streamed 80 // testing::Message foo; 86 // Message is not intended to be inherited from. In particular, its 91 // latter (it causes an access violation if you do). The Message 94 class GTEST_API_ Message { class 105 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT Message() function in testing::Message 110 explicit Message(const char* str) : ss_(new ::std::stringstream) { Message() function in testing::Message [all...] |
| /third_party/mesa3d/src/gtest/include/gtest/ |
| H A D | gtest-message.h | 33 // This header file defines the Message class. 59 // See Message& operator<<(...) below for why. 64 // The Message class works like an ostream repeater. 68 // 1. You stream a bunch of values to a Message object. 70 // 2. Then you stream the Message object to an ostream. 71 // This causes the text in the Message to be streamed 76 // testing::Message foo; 82 // Message is not intended to be inherited from. In particular, its 87 // latter (it causes an access violation if you do). The Message 90 class GTEST_API_ Message { class 101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT Message() function in testing::Message 106 explicit Message(const char* str) : ss_(new ::std::stringstream) { Message() function in testing::Message [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_shading_rate/ |
| H A D | vktFragmentShadingRateTests.cpp | 57 log << tcu::TestLog::Message << "pipelineFragmentShadingRate is not supported" << tcu::TestLog::EndMessage; in testLimits() 63 log << tcu::TestLog::Message << "primitiveFragmentShadingRateWithMultipleViewports " in testLimits() 71 log << tcu::TestLog::Message << "primitiveFragmentShadingRateWithMultipleViewports limit should only " in testLimits() 79 log << tcu::TestLog::Message << "layeredShadingRateAttachments should only be supported if attachmentFragmentShadingRate is supported" << tcu::TestLog::EndMessage; in testLimits() 87 log << tcu::TestLog::Message << "layeredShadingRateAttachments should only be supported if at least one of the geometryShader feature, multiview feature, " in testLimits() 95 log << tcu::TestLog::Message << "fragmentShadingRateNonTrivialCombinerOps should only be supported if at least one of primitiveFragmentShadingRate " in testLimits() 102 log << tcu::TestLog::Message << "maxFragmentSizeAspectRatio should be less than or equal to the maximum width / height of maxFragmentSize" << tcu::TestLog::EndMessage; in testLimits() 108 log << tcu::TestLog::Message << "maxFragmentSizeAspectRatio should be at least 2" << tcu::TestLog::EndMessage; in testLimits() 114 log << tcu::TestLog::Message << "maxFragmentSizeAspectRatio should be power of 2" << tcu::TestLog::EndMessage; in testLimits() 120 log << tcu::TestLog::Message << "maxFragmentShadingRateCoverageSample in testLimits() [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_rate/ |
| H A D | vktFragmentShadingRateTests.cpp | 56 log << tcu::TestLog::Message << "pipelineFragmentShadingRate is not supported" << tcu::TestLog::EndMessage; in testLimits() 62 log << tcu::TestLog::Message << "primitiveFragmentShadingRateWithMultipleViewports " in testLimits() 70 log << tcu::TestLog::Message << "primitiveFragmentShadingRateWithMultipleViewports limit should only " in testLimits() 78 log << tcu::TestLog::Message << "layeredShadingRateAttachments should only be supported if attachmentFragmentShadingRate is supported" << tcu::TestLog::EndMessage; in testLimits() 86 log << tcu::TestLog::Message << "layeredShadingRateAttachments should only be supported if at least one of the geometryShader feature, multiview feature, " in testLimits() 94 log << tcu::TestLog::Message << "fragmentShadingRateNonTrivialCombinerOps should only be supported if at least one of primitiveFragmentShadingRate " in testLimits() 101 log << tcu::TestLog::Message << "maxFragmentSizeAspectRatio should be less than or equal to the maximum width / height of maxFragmentSize" << tcu::TestLog::EndMessage; in testLimits() 107 log << tcu::TestLog::Message << "maxFragmentSizeAspectRatio should be at least 2" << tcu::TestLog::EndMessage; in testLimits() 113 log << tcu::TestLog::Message << "maxFragmentSizeAspectRatio should be power of 2" << tcu::TestLog::EndMessage; in testLimits() 119 log << tcu::TestLog::Message << "maxFragmentShadingRateCoverageSample in testLimits() [all...] |
| /third_party/node/deps/googletest/include/gtest/ |
| H A D | gtest-message.h | 32 // This header file defines the Message class. 70 // See Message& operator<<(...) below for why. 75 // The Message class works like an ostream repeater. 79 // 1. You stream a bunch of values to a Message object. 81 // 2. Then you stream the Message object to an ostream. 82 // This causes the text in the Message to be streamed 87 // testing::Message foo; 93 // Message is not intended to be inherited from. In particular, its 98 // latter (it causes an access violation if you do). The Message 101 class GTEST_API_ Message { class 112 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT Message() function in testing::Message 117 explicit Message(const char* str) : ss_(new ::std::stringstream) { Message() function in testing::Message [all...] |
| /third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
| H A D | DynamicMessageTest.java | 59 Message.Builder builder = in testDynamicMessageAccessors() 62 Message message = builder.build(); in testDynamicMessageAccessors() 67 Message.Builder builder = in testSettersAfterBuild() 69 Message firstMessage = builder.build(); in testSettersAfterBuild() 76 Message message = builder.build(); in testSettersAfterBuild() 87 Message.Builder builder = in testUnknownFields() 93 Message message = builder.build(); in testUnknownFields() 96 Message.Builder newBuilder = builder.clone(); in testUnknownFields() 107 Message.Builder builder = in testDynamicMessageSettersRejectNull() 116 Message in testDynamicMessageExtensionAccessors() [all...] |
| /third_party/typescript/tests/baselines/reference/ |
| H A D | collectionPatternNoError.js | 2 interface MsgConstructor<T extends Message> { 5 class Message { 10 interface MessageList<T extends Message> extends Message { 14 function fetchMsg<V extends Message>(protoCtor: MsgConstructor<V>): V { 18 class DataProvider<T extends Message, U extends MessageList<T>> { 34 T extends Message 41 var Message = /** @class */ (function () {
42 function Message() {
44 Message [all...] |
| /third_party/vk-gl-cts/modules/gles3/performance/ |
| H A D | es3pDepthTests.cpp | 683 log << TestLog::Message << "Occluding geometry is green with shade dependent on depth (rgb == 0, depth, 0)" << TestLog::EndMessage; in logGeometry() 684 log << TestLog::Message << "Occluded geometry is red with shade dependent on depth (rgb == depth, 0, 0)" << TestLog::EndMessage; in logGeometry() 685 log << TestLog::Message << "Primitive edges are a lighter shade of red/green" << TestLog::EndMessage; in logGeometry() 767 log << TestLog::Message << "Offset & coefficient presented as [confidence interval min, estimate, confidence interval max]. Reported confidence interval for this test is " << confidence << TestLog::EndMessage; in logAnalysis() 768 log << TestLog::Message << "Render time for scene with depth test was\n\t" in logAnalysis() 778 log << TestLog::Message << "Coefficient confidence bounds include values below 0.0, the operation likely has neglible per-pixel cost" << TestLog::EndMessage; in logAnalysis() 783 log << TestLog::Message << "Coefficient confidence range is extremely large, cannot give reliable result" << TestLog::EndMessage; in logAnalysis() 788 log << TestLog::Message << "Culled hidden pixels @ " << mpxPerS << "Mpx/s" << TestLog::EndMessage; in logAnalysis() 1076 log << TestLog::Message << "Constant operation sequence timing may vary as a function of workload. Result quality extremely low" << TestLog::EndMessage; in logAnalysis() 1082 log << TestLog::Message << "Workloa in logAnalysis() [all...] |
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| H A D | MessageReflection.java | 48 Message message, in writeMessageTo() 70 output.writeMessageSetExtension(field.getNumber(), (Message) value); in writeMessageTo() 84 static int getSerializedSize(Message message, Map<FieldDescriptor, Object> fields) { in getSerializedSize() 97 CodedOutputStream.computeMessageSetExtensionSize(field.getNumber(), (Message) value); in getSerializedSize() 140 for (final Message element : (List<Message>) entry.getValue()) { in isInitialized() 146 if (!((Message) entry.getValue()).isInitialized()) { in isInitialized() 247 * the same type that {@link Message#getField(Descriptors.FieldDescriptor)} would return. 260 * Message#getRepeatedField(Descriptors.FieldDescriptor, int)} would return. 300 Message defaultInstanc in parseGroup() [all...] |
| /third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
| H A D | DynamicMessageTest.java | 62 Message.Builder builder = DynamicMessage.newBuilder(TestAllTypes.getDescriptor()); in testDynamicMessageAccessors() 64 Message message = builder.build(); in testDynamicMessageAccessors() 69 Message.Builder builder = DynamicMessage.newBuilder(TestAllTypes.getDescriptor()); in testSettersAfterBuild() 70 Message firstMessage = builder.build(); in testSettersAfterBuild() 77 Message message = builder.build(); in testSettersAfterBuild() 88 Message.Builder builder = DynamicMessage.newBuilder(TestEmptyMessage.getDescriptor()); in testUnknownFields() 94 Message message = builder.build(); in testUnknownFields() 97 Message.Builder newBuilder = builder.clone(); in testUnknownFields() 108 Message.Builder builder = DynamicMessage.newBuilder(TestAllTypes.getDescriptor()); in testDynamicMessageSettersRejectNull() 116 Message in testDynamicMessageExtensionAccessors() [all...] |
| /third_party/vk-gl-cts/modules/egl/ |
| H A D | teglQueryConfigTests.cpp | 50 log << TestLog::Message << " " << eglu::getConfigAttribName(attrib) << ": " << eglu::getConfigAttribValueStr(attrib, value) << TestLog::EndMessage; in logConfigAttribute() 133 log << TestLog::Message << numConfigReturned << " configs returned" << TestLog::EndMessage; in checkGetConfigsBounds() 148 log << TestLog::Message << numOverwritten << " values actually written" << TestLog::EndMessage; in checkGetConfigsBounds() 152 log << TestLog::Message << "Fail, more configs returned than requested." << TestLog::EndMessage; in checkGetConfigsBounds() 158 log << TestLog::Message << "Fail, buffer overflow detected." << TestLog::EndMessage; in checkGetConfigsBounds() 163 log << TestLog::Message << "Fail, reported number of returned configs differs from number of values written." << TestLog::EndMessage; in checkGetConfigsBounds() 178 log << TestLog::Message << numConfigAll << " configs available" << TestLog::EndMessage; in iterate() 179 log << TestLog::Message << TestLog::EndMessage; in iterate() 188 log << TestLog::Message << TestLog::EndMessage; in iterate() 257 log << TestLog::Message << "N in iterate() [all...] |
| /third_party/vk-gl-cts/external/openglcts/modules/gl/ |
| H A D | gl4cDirectStateAccessXFBTests.cpp | 115 << tcu::TestLog::Message in iterate() 132 m_context.getTestContext().getLog() << tcu::TestLog::Message in iterate() 148 m_context.getTestContext().getLog() << tcu::TestLog::Message in iterate() 157 m_context.getTestContext().getLog() << tcu::TestLog::Message in iterate() 305 m_context.getTestContext().getLog() << tcu::TestLog::Message << "Function pointers are set to NULL values." in prepare() 342 << tcu::TestLog::Message in testBuffersBindingPoints() 354 << tcu::TestLog::Message in testBuffersBindingPoints() 388 << tcu::TestLog::Message in testBuffersDimensions() 400 << tcu::TestLog::Message in testBuffersDimensions() 423 << tcu::TestLog::Message in testBuffersDimensions() [all...] |