Searched refs:FindMethodByName (Results 1 - 7 of 7) sorted by relevance

/external/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc1196 TEST_F(ServiceDescriptorTest, FindMethodByName) {
1197 EXPECT_EQ(foo_ , service_ ->FindMethodByName("Foo"));
1198 EXPECT_EQ(bar_ , service_ ->FindMethodByName("Bar"));
1199 EXPECT_EQ(foo2_, service2_->FindMethodByName("Foo"));
1200 EXPECT_EQ(baz2_, service2_->FindMethodByName("Baz"));
1202 EXPECT_TRUE(service_ ->FindMethodByName("NoSuchMethod") == NULL);
1203 EXPECT_TRUE(service_ ->FindMethodByName("Baz" ) == NULL);
1204 EXPECT_TRUE(service2_->FindMethodByName("Bar" ) == NULL);
2381 const MethodDescriptor* method = service->FindMethodByName("Foo");
2807 const MethodDescriptor* method = service->FindMethodByName("Metho
[all...]
H A Ddescriptor.h872 const MethodDescriptor* FindMethodByName(const string& name) const;
916 // ServiceDescriptor::FindMethodByName(). Use DescriptorPool to construct your
1229 const MethodDescriptor* FindMethodByName(const string& name) const;
H A Ddescriptor.cc1117 const MethodDescriptor* DescriptorPool::FindMethodByName( function in class:google::protobuf::DescriptorPool
1315 ServiceDescriptor::FindMethodByName(const string& key) const { function in class:google::protobuf::ServiceDescriptor
/external/protobuf/python/google/protobuf/internal/
H A Ddescriptor_test.py148 method_descriptor = service_descriptor.FindMethodByName("Foo")
329 method_descriptor = service_descriptor.FindMethodByName("Method")
/external/nanopb-c/generator/google/protobuf/
H A Ddescriptor.py597 def FindMethodByName(self, name): member in class:ServiceDescriptor
/external/protobuf/python/google/protobuf/
H A Ddescriptor.py650 def FindMethodByName(self, name): member in class:ServiceDescriptor
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_unittest.cc1196 foo_(descriptor_->FindMethodByName("Foo")),
1197 bar_(descriptor_->FindMethodByName("Bar")),

Completed in 582 milliseconds