/external/protobuf/src/google/protobuf/ |
D | descriptor_database_unittest.cc | 385 TEST_P(DescriptorDatabaseTest, FindAllExtensionNumbers) { in TEST_P() argument 409 EXPECT_TRUE(database_->FindAllExtensionNumbers("Foo", &numbers)); in TEST_P() 418 EXPECT_TRUE(database_->FindAllExtensionNumbers("corge.Bar", &numbers)); in TEST_P() 427 EXPECT_FALSE(database_->FindAllExtensionNumbers("NoSuchType", &numbers)); in TEST_P() 433 EXPECT_FALSE(database_->FindAllExtensionNumbers("Bar", &numbers)); in TEST_P() 758 TEST_F(MergedDescriptorDatabaseTest, FindAllExtensionNumbers) { in TEST_F() argument 762 EXPECT_TRUE(forward_merged_.FindAllExtensionNumbers("Foo", &numbers)); in TEST_F() 770 EXPECT_TRUE(forward_merged_.FindAllExtensionNumbers("Bar", &numbers)); in TEST_F() 778 EXPECT_TRUE(forward_merged_.FindAllExtensionNumbers("Baz", &numbers)); in TEST_F() 787 EXPECT_TRUE(reverse_merged_.FindAllExtensionNumbers("Baz", &numbers)); in TEST_F() [all …]
|
D | descriptor_database.h | 105 virtual bool FindAllExtensionNumbers(const std::string& /* extendee_type */, in FindAllExtensionNumbers() function 184 bool FindAllExtensionNumbers(const std::string& extendee_type, 210 bool FindAllExtensionNumbers(const std::string& containing_type, 330 bool FindAllExtensionNumbers(const std::string& extendee_type, 361 bool FindAllExtensionNumbers(const std::string& extendee_type, 393 bool FindAllExtensionNumbers(const std::string& extendee_type,
|
D | descriptor_database.cc | 269 bool SimpleDescriptorDatabase::DescriptorIndex<Value>::FindAllExtensionNumbers( in FindAllExtensionNumbers() function in google::protobuf::SimpleDescriptorDatabase::DescriptorIndex 363 bool SimpleDescriptorDatabase::FindAllExtensionNumbers( in FindAllExtensionNumbers() function in google::protobuf::SimpleDescriptorDatabase 365 return index_.FindAllExtensionNumbers(extendee_type, output); in FindAllExtensionNumbers() 456 bool EncodedDescriptorDatabase::FindAllExtensionNumbers( in FindAllExtensionNumbers() function in google::protobuf::EncodedDescriptorDatabase 458 return index_.FindAllExtensionNumbers(extendee_type, output); in FindAllExtensionNumbers() 512 bool DescriptorPoolDatabase::FindAllExtensionNumbers( in FindAllExtensionNumbers() function in google::protobuf::DescriptorPoolDatabase 593 bool MergedDescriptorDatabase::FindAllExtensionNumbers( in FindAllExtensionNumbers() function in google::protobuf::MergedDescriptorDatabase 600 if (sources_[i]->FindAllExtensionNumbers(extendee_type, &results)) { in FindAllExtensionNumbers()
|
D | descriptor.cc | 1563 if (fallback_database_->FindAllExtensionNumbers(extendee->full_name(), in FindAllExtensions()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | descriptor_database.h | 70 bool FindAllExtensionNumbers(const string& containing_type,
|
D | descriptor_database.cc | 150 bool PyDescriptorDatabase::FindAllExtensionNumbers( in FindAllExtensionNumbers() function in google::protobuf::python::PyDescriptorDatabase
|
/external/grpc-grpc/test/cpp/util/ |
D | proto_reflection_descriptor_database.h | 73 bool FindAllExtensionNumbers(const string& extendee_type,
|
D | proto_reflection_descriptor_database.cc | 216 bool ProtoReflectionDescriptorDatabase::FindAllExtensionNumbers( in FindAllExtensionNumbers() function in grpc::ProtoReflectionDescriptorDatabase
|
/external/protobuf/python/google/protobuf/ |
D | descriptor_database.py | 147 def FindAllExtensionNumbers(self, extendee_name): member in DescriptorDatabase
|
D | descriptor_pool.py | 584 all_numbers = self._descriptor_db.FindAllExtensionNumbers(full_name)
|