Lines Matching refs:FindMethodByName
1582 TEST_F(ServiceDescriptorTest, FindMethodByName) {
1583 EXPECT_EQ(foo_, service_->FindMethodByName("Foo"));
1584 EXPECT_EQ(bar_, service_->FindMethodByName("Bar"));
1585 EXPECT_EQ(foo2_, service2_->FindMethodByName("Foo"));
1586 EXPECT_EQ(baz2_, service2_->FindMethodByName("Baz"));
1588 EXPECT_TRUE(service_->FindMethodByName("NoSuchMethod") == nullptr);
1589 EXPECT_TRUE(service_->FindMethodByName("Baz") == nullptr);
1590 EXPECT_TRUE(service2_->FindMethodByName("Bar") == nullptr);
3008 const MethodDescriptor* method = service->FindMethodByName("Foo");
3450 const MethodDescriptor* method = service->FindMethodByName("Method");
6965 EXPECT_TRUE(test_service->FindMethodByName("NoSuchMethod") == nullptr);
6980 EXPECT_TRUE(pool.FindMethodByName("TestService.NoSuchMethod") == nullptr);
7115 EXPECT_TRUE(pool.FindMethodByName("Foo") == nullptr);
7300 const MethodDescriptor* m_desc = s_desc->FindMethodByName("Method");
8038 // Verify calling FindServiceByName or FindMethodByName doesn't build the
8043 const MethodDescriptor* method = service->FindMethodByName("A");