/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 | 260 reflection->ListFields(message2, &fields); in TEST() 275 reflection->ListFields(message1, &fields); in TEST() 612 reflection->ListFields(message, &fields); in TEST()
|
D | extension_set_unittest.cc | 299 reflection->ListFields(message3, &fields); in TEST() 316 reflection->ListFields(message1, &fields); in TEST() 426 reflection->ListFields(*message1, &fields); in TEST() 441 reflection->ListFields(message1, &fields); in TEST()
|
D | wire_format.cc | 796 message_reflection->ListFields(message, &fields); in SerializeWithCachedSizes() 974 message_reflection->ListFields(message, &fields); in ByteSize()
|
D | generated_message_reflection.h | 232 void ListFields(const Message& message,
|
D | message.h | 489 virtual void ListFields(
|
D | map_test_util.cc | 871 reflection->ListFields(*message, &output); in RemoveLastMapsViaReflection() 884 reflection->ListFields(*message, &output); in ReleaseLastMapsViaReflection() 900 reflection->ListFields(*message, &output); in SwapMapsViaReflection()
|
D | test_util.cc | 3234 reflection->ListFields(*message, &output); in RemoveLastRepeatedsViaReflection() 3248 reflection->ListFields(*message, &output); in ReleaseLastRepeatedsViaReflection() 3267 reflection->ListFields(*message, &output); in SwapRepeatedsViaReflection() 3282 reflection->ListFields(*message, &fields); in SetAllocatedOptionalMessageFieldsToNullViaReflection() 3302 from_reflection->ListFields(*from_message, &fields); in SetAllocatedOptionalMessageFieldsToMessageViaReflection()
|
D | text_format_unittest.cc | 1476 proto.message_set().GetReflection()->ListFields( in TEST_F()
|
D | arena_unittest.cc | 357 reflection->ListFields(*arena1_message, &fields); in TEST()
|
D | text_format.cc | 1569 reflection->ListFields(message, &fields); in Print()
|
D | generated_message_reflection.cc | 1031 void GeneratedMessageReflection::ListFields( in ListFields() function in google::protobuf::internal::GeneratedMessageReflection
|
/external/protobuf/python/google/protobuf/internal/ |
D | python_message.py | 800 def ListFields(self): function 805 cls.ListFields = ListFields 965 if not self.ListFields() == other.ListFields(): 1029 for field_descriptor, field_value in self.ListFields(): 1067 for field_descriptor, field_value in self.ListFields(): 1185 for field, value in self.ListFields(): 1290 for field, value in self.ListFields(): 1488 my_fields = self._extended_message.ListFields() 1489 other_fields = other._extended_message.ListFields()
|
D | reflection_test.py | 463 proto.ListFields()) 472 proto.ListFields()) 491 proto.ListFields()) 502 proto.ListFields()) 518 proto.ListFields()) 530 proto.ListFields()) 2830 for field_descriptor, _ in proto.ListFields(): 2836 for field_descriptor, _ in proto.ListFields():
|
D | unknown_fields_test.py | 87 self.assertEqual(0, len(self.empty_message.ListFields()))
|
/external/tensorflow/tensorflow/python/util/protobuf/ |
D | compare.py | 138 for desc, values in pb.ListFields(): 228 return dict((desc.number, value) for desc, value in pb.ListFields())
|
/external/protobuf/python/google/protobuf/ |
D | message.py | 226 def ListFields(self): member in Message
|
D | json_format.py | 119 fields = message.ListFields() 209 if not message.ListFields():
|
D | text_format.py | 214 fields = message.ListFields()
|
/external/protobuf/src/google/protobuf/util/ |
D | message_differencer_unittest.cc | 795 msg1.GetReflection()->ListFields(msg1, &fields1); in TEST() 796 msg2.GetReflection()->ListFields(msg2, &fields2); in TEST() 810 msg1.GetReflection()->ListFields(msg1, &fields1); in TEST() 811 msg2.GetReflection()->ListFields(msg2, &fields2); in TEST() 839 msg1.GetReflection()->ListFields(msg1, &fields); in TEST() 885 msg1.GetReflection()->ListFields(msg1, &fields1); in TEST() 886 msg2.GetReflection()->ListFields(msg2, &fields2); in TEST() 903 msg1.GetReflection()->ListFields(msg1, &fields1); in TEST() 930 reflection->ListFields(msg1, &fields1); in TEST() 958 msg1.GetReflection()->ListFields(msg1, &fields1); in TEST() [all …]
|
D | message_differencer.cc | 479 reflection1->ListFields(message1, &message1_fields); in Compare() 480 reflection2->ListFields(message2, &message2_fields); in Compare()
|
/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/src/google/protobuf/compiler/java/ |
D | java_file.cc | 94 reflection->ListFields(message, &fields); in CollectExtensions()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 2083 static PyObject* ListFields(CMessage* self) { in CheckAndGetInteger() function 2085 self->message->GetReflection()->ListFields(*self->message, &fields); in CheckAndGetInteger() 2604 { "ListFields", (PyCFunction)ListFields, METH_NOARGS, in CheckAndGetInteger()
|