Searched refs:FindMethodByName (Results 1 – 8 of 8) sorted by relevance
76 public MethodDescriptor FindMethodByName(String name) in FindMethodByName() method in Google.Protobuf.Reflection.ServiceDescriptor
1443 TEST_F(ServiceDescriptorTest, FindMethodByName) { in TEST_F() argument1444 EXPECT_EQ(foo_ , service_ ->FindMethodByName("Foo")); in TEST_F()1445 EXPECT_EQ(bar_ , service_ ->FindMethodByName("Bar")); in TEST_F()1446 EXPECT_EQ(foo2_, service2_->FindMethodByName("Foo")); in TEST_F()1447 EXPECT_EQ(baz2_, service2_->FindMethodByName("Baz")); in TEST_F()1449 EXPECT_TRUE(service_ ->FindMethodByName("NoSuchMethod") == NULL); in TEST_F()1450 EXPECT_TRUE(service_ ->FindMethodByName("Baz" ) == NULL); in TEST_F()1451 EXPECT_TRUE(service2_->FindMethodByName("Bar" ) == NULL); in TEST_F()2712 const MethodDescriptor* method = service->FindMethodByName("Foo"); in TEST()3138 const MethodDescriptor* method = service->FindMethodByName("Method"); in TEST()[all …]
1020 const MethodDescriptor* FindMethodByName(const string& name) const;1418 const MethodDescriptor* FindMethodByName(const string& name) const;
1263 const MethodDescriptor* DescriptorPool::FindMethodByName( in FindMethodByName() function in google::protobuf::DescriptorPool1466 ServiceDescriptor::FindMethodByName(const string& key) const { in FindMethodByName() function in google::protobuf::ServiceDescriptor
148 method_descriptor = service_descriptor.FindMethodByName("Foo")334 method_descriptor = service_descriptor.FindMethodByName("Method")
597 def FindMethodByName(self, name): member in ServiceDescriptor
725 def FindMethodByName(self, name): member in ServiceDescriptor
1252 foo_(descriptor_->FindMethodByName("Foo")), in GeneratedServiceTest()1253 bar_(descriptor_->FindMethodByName("Bar")), in GeneratedServiceTest()