Searched refs:FindMethodByName (Results 1 – 10 of 10) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Reflection/ |
D | ServiceDescriptor.cs | 76 public MethodDescriptor FindMethodByName(String name) in FindMethodByName() method in Google.Protobuf.Reflection.ServiceDescriptor
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/pyext/ |
D | descriptor_pool.cc | 325 PyObject* FindMethodByName(PyDescriptorPool* self, PyObject* arg) { in FindMethodByName() function 333 self->pool->FindMethodByName(string(name, name_size)); in FindMethodByName() 530 { "FindMethodByName", (PyCFunction)FindMethodByName, METH_O,
|
D | descriptor.cc | 1574 static PyObject* FindMethodByName(PyBaseDescriptor *self, PyObject* arg) { in FindMethodByName() function 1582 _GetDescriptor(self)->FindMethodByName(string(name, name_size)); in FindMethodByName() 1613 { "FindMethodByName", (PyCFunction)FindMethodByName, METH_O },
|
D | descriptor_containers.cc | 1451 return GetDescriptor(self)->FindMethodByName(name); in GetByName()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | descriptor_unittest.cc | 1442 TEST_F(ServiceDescriptorTest, FindMethodByName) { in TEST_F() argument 1443 EXPECT_EQ(foo_ , service_ ->FindMethodByName("Foo")); in TEST_F() 1444 EXPECT_EQ(bar_ , service_ ->FindMethodByName("Bar")); in TEST_F() 1445 EXPECT_EQ(foo2_, service2_->FindMethodByName("Foo")); in TEST_F() 1446 EXPECT_EQ(baz2_, service2_->FindMethodByName("Baz")); in TEST_F() 1448 EXPECT_TRUE(service_ ->FindMethodByName("NoSuchMethod") == NULL); in TEST_F() 1449 EXPECT_TRUE(service_ ->FindMethodByName("Baz" ) == NULL); in TEST_F() 1450 EXPECT_TRUE(service2_->FindMethodByName("Bar" ) == NULL); in TEST_F() 2712 const MethodDescriptor* method = service->FindMethodByName("Foo"); in TEST() 3140 const MethodDescriptor* method = service->FindMethodByName("Method"); in TEST() [all …]
|
D | descriptor.h | 1026 const MethodDescriptor* FindMethodByName(const string& name) const; 1424 const MethodDescriptor* FindMethodByName(const string& name) const;
|
D | descriptor.cc | 1263 const MethodDescriptor* DescriptorPool::FindMethodByName( in FindMethodByName() function in google::protobuf::DescriptorPool 1466 ServiceDescriptor::FindMethodByName(const string& key) const { in FindMethodByName() function in google::protobuf::ServiceDescriptor
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/ |
D | descriptor.py | 740 def FindMethodByName(self, name): member in ServiceDescriptor 775 return _message.default_pool.FindMethodByName(full_name)
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/ |
D | descriptor_test.py | 146 method_descriptor = service_descriptor.FindMethodByName('Foo') 335 method_descriptor = service_descriptor.FindMethodByName("Method")
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/cpp/ |
D | cpp_unittest.cc | 1252 foo_(descriptor_->FindMethodByName("Foo")), in GeneratedServiceTest() 1253 bar_(descriptor_->FindMethodByName("Bar")), in GeneratedServiceTest()
|