/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | ServiceDescriptor.cs | 89 public MethodDescriptor FindMethodByName(String name) in FindMethodByName() method in Google.Protobuf.Reflection.ServiceDescriptor
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | descriptor_pool.cc | 380 static PyObject* FindMethodByName(PyObject* self, PyObject* arg) { in FindMethodByName() function 388 reinterpret_cast<PyDescriptorPool*>(self)->pool->FindMethodByName( in FindMethodByName() 663 { "FindMethodByName", FindMethodByName, METH_O,
|
D | descriptor.cc | 1685 static PyObject* FindMethodByName(PyBaseDescriptor *self, PyObject* arg) { in FindMethodByName() function 1693 _GetDescriptor(self)->FindMethodByName(StringParam(name, name_size)); in FindMethodByName() 1725 { "FindMethodByName", (PyCFunction)FindMethodByName, METH_O },
|
D | descriptor_containers.cc | 1458 return GetDescriptor(self)->FindMethodByName(name); in GetByName()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/ |
D | DescriptorDeclarationTest.cs | 68 var method = service.FindMethodByName("Foo"); in MethodComments()
|
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/ |
D | descriptor_test.py | 148 method_descriptor = service_descriptor.FindMethodByName("Foo") 329 method_descriptor = service_descriptor.FindMethodByName("Method")
|
/third_party/protobuf/src/google/protobuf/ |
D | descriptor_unittest.cc | 1582 TEST_F(ServiceDescriptorTest, FindMethodByName) { in TEST_F() argument 1583 EXPECT_EQ(foo_, service_->FindMethodByName("Foo")); in TEST_F() 1584 EXPECT_EQ(bar_, service_->FindMethodByName("Bar")); in TEST_F() 1585 EXPECT_EQ(foo2_, service2_->FindMethodByName("Foo")); in TEST_F() 1586 EXPECT_EQ(baz2_, service2_->FindMethodByName("Baz")); in TEST_F() 1588 EXPECT_TRUE(service_->FindMethodByName("NoSuchMethod") == nullptr); in TEST_F() 1589 EXPECT_TRUE(service_->FindMethodByName("Baz") == nullptr); in TEST_F() 1590 EXPECT_TRUE(service2_->FindMethodByName("Bar") == nullptr); in TEST_F() 3008 const MethodDescriptor* method = service->FindMethodByName("Foo"); in TEST() 3450 const MethodDescriptor* method = service->FindMethodByName("Method"); in TEST() [all …]
|
D | descriptor.h | 1270 const MethodDescriptor* FindMethodByName(ConstStringParam name) const; 1693 const MethodDescriptor* FindMethodByName(ConstStringParam name) const;
|
D | descriptor.cc | 1474 const MethodDescriptor* DescriptorPool::FindMethodByName( in FindMethodByName() function in google::protobuf::DescriptorPool 1741 const MethodDescriptor* ServiceDescriptor::FindMethodByName( in FindMethodByName() function in google::protobuf::ServiceDescriptor
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | descriptor_pool_test.py | 249 self.assertRaises(KeyError, self.pool.FindMethodByName, '') 262 self.assertRaises(error_type, self.pool.FindMethodByName, 0) 390 method = self.pool.FindMethodByName('protobuf_unittest.TestService.Foo') 393 self.pool.FindMethodByName('protobuf_unittest.TestService.Doesnotexist')
|
D | descriptor_test.py | 158 method_descriptor = service_descriptor.FindMethodByName('Foo') 360 method_descriptor = service_descriptor.FindMethodByName("Method") 920 method_descriptor = unittest_pb2.TestService.DESCRIPTOR.FindMethodByName(
|
/third_party/protobuf/python/google/protobuf/ |
D | descriptor.py | 824 def FindMethodByName(self, name): member in ServiceDescriptor 870 return _message.default_pool.FindMethodByName(full_name)
|
D | descriptor_pool.py | 688 def FindMethodByName(self, full_name): member in DescriptorPool
|
/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_unittest.inc | 1262 foo_(descriptor_->FindMethodByName("Foo")), 1263 bar_(descriptor_->FindMethodByName("Bar")),
|
/third_party/protobuf/ |
D | CHANGES.txt | 487 * Added DescriptorPool.FindMethodByName() method in pure python (c extension already has it)
|