FindServiceByName 965 third_party/protobuf/src/google/protobuf/descriptor.h const ServiceDescriptor* FindServiceByName(const string& name) const; FindServiceByName 1118 third_party/protobuf/src/google/protobuf/descriptor.h const ServiceDescriptor* FindServiceByName(const string& name) const; FindServiceByName 320 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc TEST_F(FileDescriptorTest, FindServiceByName) { FindServiceByName 321 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_EQ(foo_service_, foo_file_->FindServiceByName("FooService")); FindServiceByName 322 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_EQ(bar_service_, bar_file_->FindServiceByName("BarService")); FindServiceByName 324 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(foo_file_->FindServiceByName("BarService") == NULL); FindServiceByName 325 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(bar_file_->FindServiceByName("FooService") == NULL); FindServiceByName 326 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(baz_file_->FindServiceByName("FooService") == NULL); FindServiceByName 328 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(foo_file_->FindServiceByName("NoSuchService") == NULL); FindServiceByName 329 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(foo_file_->FindServiceByName("FooMessage") == NULL); FindServiceByName 2139 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc file->FindServiceByName("TestServiceWithCustomOptions"); FindServiceByName 2400 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc const ServiceDescriptor* service = file->FindServiceByName( FindServiceByName 4346 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc const ServiceDescriptor* test_service = pool.FindServiceByName("TestService"); FindServiceByName 4363 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(file->FindServiceByName("NO_SUCH_VALUE") == NULL); FindServiceByName 4432 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc EXPECT_TRUE(pool.FindServiceByName("Foo") == NULL); FindServiceByName 4543 third_party/protobuf/src/google/protobuf/descriptor_unittest.cc const ServiceDescriptor *s_desc = file_desc->FindServiceByName("S");