/third_party/protobuf/python/google/protobuf/internal/ |
H A D | extension_dict.py | 123 my_fields = self._extended_message.ListFields() 124 other_fields = other._extended_message.ListFields() 136 fields = self._extended_message.ListFields() 196 return (f[0] for f in self._extended_message.ListFields()
|
H A D | python_message.py | 819 value should be included in the list returned by ListFields().""" 832 def ListFields(self): function 837 cls.ListFields = ListFields 1005 if not self.ListFields() == other.ListFields(): 1075 for field_descriptor, field_value in self.ListFields(): 1125 for field_descriptor, field_value in self.ListFields(): 1237 # Performance is critical so we avoid HasField() and ListFields(). 1281 for field, value in self.ListFields() [all...] |
H A D | reflection_test.py | 324 proto.ListFields()) 333 proto.ListFields()) 352 proto.ListFields()) 1087 proto.ListFields()) 1092 proto.ListFields()) 1108 proto.ListFields()) 1114 proto.ListFields()) 1126 proto.ListFields()) 3158 for field_descriptor, _ in proto.ListFields(): 3164 for field_descriptor, _ in proto.ListFields() [all...] |
H A D | unknown_fields_test.py | 85 # Make sure ListFields doesn't return unknown fields. 86 self.assertEqual(0, len(self.empty_message.ListFields()))
|
H A D | descriptor_test.py | 204 self.assertEqual(len(message_proto.options.ListFields()),
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | ArchiveCommandLine.h | 77 AString ListFields;
member
|
H A D | ArchiveCommandLine.cpp | 1012 options.ListFields = GetAnsiString(s);
in Parse1()
|
/third_party/protobuf/benchmarks/util/ |
H A D | data_proto2_to_proto3_util.h | 20 reflection->ListFields(*message, &set_fields); in StripMessage()
|
/third_party/protobuf/python/google/protobuf/ |
H A D | message.py | 248 def ListFields(self): member in Message
|
H A D | json_format.py | 220 fields = message.ListFields() 325 if not message.ListFields():
|
/third_party/protobuf/src/google/protobuf/util/ |
H A D | message_differencer_unittest.cc | 805 msg1.GetReflection()->ListFields(msg1, &fields1); in TEST() 806 msg2.GetReflection()->ListFields(msg2, &fields2); in TEST() 820 msg1.GetReflection()->ListFields(msg1, &fields1); in TEST() 821 msg2.GetReflection()->ListFields(msg2, &fields2); in TEST() 849 msg1.GetReflection()->ListFields(msg1, &fields); in TEST() 895 msg1.GetReflection()->ListFields(msg1, &fields1); in TEST() 896 msg2.GetReflection()->ListFields(msg2, &fields2); in TEST() 914 msg1.GetReflection()->ListFields(msg1, &fields1); in TEST() 941 reflection->ListFields(msg1, &fields1); in TEST() 969 msg1.GetReflection()->ListFields(msg in TEST() [all...] |
H A D | type_resolver_util.cc | 148 reflection->ListFields(options, &fields); in ConvertOptionsInternal()
|
H A D | message_differencer.cc | 611 reflection->ListFields(message, &tmp_message_fields_); in RetrieveFields() 619 reflection->ListFields(message, &tmp_message_fields_); in RetrieveFields()
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | extension_dict.cc | 71 self->parent->message->GetReflection()->ListFields(*self->parent->message, in len() 79 // ListFields() has the same behavior. in len() 117 self->parent->message->GetReflection()->ListFields(*self->parent->message, in GetIter() 422 // ListFields() has the same behavior. in IterNext()
|
H A D | message.cc | 2057 static PyObject* ListFields(CMessage* self) { in ListFields() function 2059 self->message->GetReflection()->ListFields(*self->message, &fields); in ListFields() 2536 { "ListFields", (PyCFunction)ListFields, METH_NOARGS,
|
/third_party/protobuf/src/google/protobuf/ |
H A D | test_util.h | 1114 reflection->ListFields(*message, &output); in RemoveLastRepeatedsViaReflection() 1128 reflection->ListFields(*message, &output); in ReleaseLastRepeatedsViaReflection() 1148 reflection->ListFields(*message, &output); in SwapRepeatedsViaReflection() 1162 reflection->ListFields(*message, &fields); in SetAllocatedOptionalMessageFieldsToNullViaReflection() 1182 from_reflection->ListFields(*from_message, &fields); in SetAllocatedOptionalMessageFieldsToMessageViaReflection()
|
H A D | generated_message_reflection_unittest.cc | 259 reflection->ListFields(message2, &fields); in TEST() 274 reflection->ListFields(message1, &fields); in TEST() 683 reflection->ListFields(message, &fields); in TEST()
|
H A D | extension_set_unittest.cc | 360 reflection->ListFields(message3, &fields); in TEST() 377 reflection->ListFields(message1, &fields); in TEST() 486 reflection->ListFields(*message1, &fields); in TEST() 501 reflection->ListFields(message1, &fields); in TEST()
|
H A D | reflection_ops.cc | 332 reflection->ListFields(*message, &fields); in DiscardUnknownFields()
|
H A D | map_test_util.h | 835 reflection->ListFields(*message, &output); in RemoveLastMapsViaReflection() 848 reflection->ListFields(*message, &output); in ReleaseLastMapsViaReflection() 864 reflection->ListFields(*message, &output); in SwapMapsViaReflection()
|
H A D | proto3_arena_unittest.cc | 275 r->ListFields(msg, &fields); in TEST()
|
H A D | message.h | 493 void ListFields(const Message& message, 915 // fields and stripped fields. See ListFields for details.
|
H A D | wire_format.cc | 1048 message_reflection->ListFields(message, &fields); in _InternalSerialize() 1462 message_reflection->ListFields(message, &fields); in ByteSize()
|
/third_party/protobuf/src/google/protobuf/compiler/java/ |
H A D | java_file.cc | 94 reflection->ListFields(message, &fields); in CollectExtensions()
|
/third_party/lzma/CPP/7zip/UI/Console/ |
H A D | Main.cpp | 1550 callback.PrintFields = options.ListFields;
|