Home
last modified time | relevance | path

Searched refs:ListFields (Results 1 – 17 of 17) sorted by relevance

/external/protobuf/src/google/protobuf/
Dreflection_ops.cc61 from_reflection->ListFields(from, &fields); in Merge()
127 reflection->ListFields(*message, &fields); in Clear()
150 reflection->ListFields(message, &fields); in IsInitialized()
180 reflection->ListFields(*message, &fields); in DiscardUnknownFields()
235 reflection->ListFields(message, &fields); in FindInitializationErrors()
Dmessage.h435 virtual void ListFields(const Message& message,
Dgenerated_message_reflection.h147 void ListFields(const Message& message,
Dwire_format.cc718 message_reflection->ListFields(message, &fields); in SerializeWithCachedSizes()
888 message_reflection->ListFields(message, &fields); in ByteSize()
Dtext_format_unittest.cc1067 proto.message_set().GetReflection()->ListFields( in TEST_F()
Dtext_format.cc902 reflection->ListFields(message, &fields); in Print()
Dgenerated_message_reflection.cc641 void GeneratedMessageReflection::ListFields( in ListFields() function in google::protobuf::internal::GeneratedMessageReflection
Dtest_util.cc2831 reflection->ListFields(*message, &output); in RemoveLastRepeatedsViaReflection()
2844 reflection->ListFields(*message, &output); in SwapRepeatedsViaReflection()
Ddescriptor_unittest.cc1946 file->options().GetReflection()->ListFields(file->options(), &fields); in TEST_F()
Ddescriptor.cc1495 reflection->ListFields(options, &fields); in RetrieveOptions()
/external/protobuf/python/google/protobuf/
Dreflection.py627 def ListFields(self): function
632 cls.ListFields = ListFields
726 return self.ListFields() == other.ListFields()
776 for field_descriptor, field_value in self.ListFields():
811 for field_descriptor, field_value in self.ListFields():
912 for field, value in self.ListFields():
1102 my_fields = self._extended_message.ListFields()
1103 other_fields = other._extended_message.ListFields()
Dmessage.py209 def ListFields(self): member in Message
Dtext_format.py65 for field, value in message.ListFields():
/external/protobuf/src/google/protobuf/compiler/javamicro/
Djavamicro_file.cc60 reflection->ListFields(message, &fields); in UsesExtensions()
/external/protobuf/python/google/protobuf/internal/
Dreflection_test.py364 proto.ListFields())
373 proto.ListFields())
392 proto.ListFields())
403 proto.ListFields())
419 proto.ListFields())
431 proto.ListFields())
2222 for field_descriptor, _ in proto.ListFields():
2228 for field_descriptor, _ in proto.ListFields():
/external/protobuf/src/google/protobuf/compiler/java/
Djava_file.cc62 reflection->ListFields(message, &fields); in UsesExtensions()
/external/protobuf/
DCHANGES.txt277 * Corrected ListFields() signature in Message base class to match what