/external/protobuf/src/google/protobuf/ |
D | reflection_ops.cc | 67 from_reflection->ListFields(from, &fields); in Merge() 133 reflection->ListFields(*message, &fields); in Clear() 156 reflection->ListFields(message, &fields); in IsInitialized() 187 reflection->ListFields(*message, &fields); in DiscardUnknownFields() 242 reflection->ListFields(message, &fields); in FindInitializationErrors()
|
D | generated_message_reflection_unittest.cc | 254 reflection->ListFields(message2, &fields); in TEST() 269 reflection->ListFields(message1, &fields); in TEST() 555 reflection->ListFields(message, &fields); in TEST()
|
D | extension_set_unittest.cc | 297 reflection->ListFields(message3, &fields); in TEST() 314 reflection->ListFields(message1, &fields); in TEST() 329 reflection->ListFields(message1, &fields); in TEST()
|
D | generated_message_reflection.h | 196 void ListFields(const Message& message,
|
D | message.h | 442 virtual void ListFields(const Message& message,
|
D | wire_format.cc | 743 message_reflection->ListFields(message, &fields); in SerializeWithCachedSizes() 914 message_reflection->ListFields(message, &fields); in ByteSize()
|
D | test_util.cc | 3233 reflection->ListFields(*message, &output); in RemoveLastRepeatedsViaReflection() 3247 reflection->ListFields(*message, &output); in ReleaseLastRepeatedsViaReflection() 3266 reflection->ListFields(*message, &output); in SwapRepeatedsViaReflection() 3281 reflection->ListFields(*message, &fields); in SetAllocatedOptionalMessageFieldsToNullViaReflection() 3301 from_reflection->ListFields(*from_message, &fields); in SetAllocatedOptionalMessageFieldsToMessageViaReflection()
|
D | text_format_unittest.cc | 1471 proto.message_set().GetReflection()->ListFields( in TEST_F()
|
D | text_format.cc | 1422 reflection->ListFields(message, &fields); in Print()
|
D | generated_message_reflection.cc | 879 void GeneratedMessageReflection::ListFields( in ListFields() function in google::protobuf::internal::GeneratedMessageReflection
|
D | descriptor_unittest.cc | 2289 file->options().GetReflection()->ListFields(file->options(), &fields); in TEST_P()
|
/external/nanopb-c/generator/google/protobuf/internal/ |
D | python_message.py | 577 def ListFields(self): function 582 cls.ListFields = ListFields 677 if not self.ListFields() == other.ListFields(): 744 for field_descriptor, field_value in self.ListFields(): 782 for field_descriptor, field_value in self.ListFields(): 891 for field, value in self.ListFields(): 1101 my_fields = self._extended_message.ListFields() 1102 other_fields = other._extended_message.ListFields()
|
/external/protobuf/python/google/protobuf/internal/ |
D | python_message.py | 603 def ListFields(self): function 608 cls.ListFields = ListFields 723 if not self.ListFields() == other.ListFields(): 790 for field_descriptor, field_value in self.ListFields(): 828 for field_descriptor, field_value in self.ListFields(): 940 for field, value in self.ListFields(): 1201 my_fields = self._extended_message.ListFields() 1202 other_fields = other._extended_message.ListFields()
|
D | cpp_message.py | 594 def ListFields(self): function 596 field_list = self._cmsg.ListFields() 620 return self.ListFields() == other.ListFields()
|
D | unknown_fields_test.py | 142 self.assertEqual(0, len(self.empty_message.ListFields()))
|
D | reflection_test.py | 453 proto.ListFields()) 462 proto.ListFields()) 481 proto.ListFields()) 492 proto.ListFields()) 508 proto.ListFields()) 520 proto.ListFields()) 2790 for field_descriptor, _ in proto.ListFields(): 2796 for field_descriptor, _ in proto.ListFields():
|
/external/protobuf/python/google/protobuf/ |
D | message.py | 227 def ListFields(self): member in Message
|
D | text_format.py | 107 fields = message.ListFields()
|
/external/nanopb-c/generator/google/protobuf/ |
D | message.py | 223 def ListFields(self): member in Message
|
D | text_format.py | 69 for field, value in message.ListFields():
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
D | javamicro_file.cc | 62 reflection->ListFields(message, &fields); in UsesExtensions()
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
D | javanano_file.cc | 63 reflection->ListFields(message, &fields); in UsesExtensions()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 1483 static PyObject* ListFields(CMessage* self) { in CheckAndGetInteger() function 1485 self->message->GetReflection()->ListFields(*self->message, &fields); in CheckAndGetInteger() 1610 ScopedPyObjectPtr self_fields(ListFields(self)); in CheckAndGetInteger() 1611 ScopedPyObjectPtr other_fields(ListFields( in CheckAndGetInteger() 2166 { "ListFields", (PyCFunction)ListFields, METH_NOARGS, in CheckAndGetInteger()
|
/external/protobuf/src/google/protobuf/compiler/java/ |
D | java_file.cc | 76 reflection->ListFields(message, &fields); in CollectExtensions()
|
/external/protobuf/ |
D | CHANGES.txt | 482 * Corrected ListFields() signature in Message base class to match what
|