Searched refs:FindMethodByName (Results 1 - 11 of 11) sorted by relevance
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
H A D | descriptor_unittest.cc | 1098 TEST_F(ServiceDescriptorTest, FindMethodByName) { 1099 EXPECT_EQ(foo_ , service_ ->FindMethodByName("Foo")); 1100 EXPECT_EQ(bar_ , service_ ->FindMethodByName("Bar")); 1101 EXPECT_EQ(foo2_, service2_->FindMethodByName("Foo")); 1102 EXPECT_EQ(baz2_, service2_->FindMethodByName("Baz")); 1104 EXPECT_TRUE(service_ ->FindMethodByName("NoSuchMethod") == NULL); 1105 EXPECT_TRUE(service_ ->FindMethodByName("Baz" ) == NULL); 1106 EXPECT_TRUE(service2_->FindMethodByName("Bar" ) == NULL); 2140 const MethodDescriptor* method = service->FindMethodByName("Foo"); 2402 const MethodDescriptor* method = service->FindMethodByName("Metho [all...] |
H A D | descriptor.h | 770 const MethodDescriptor* FindMethodByName(const string& name) const; 814 // ServiceDescriptor::FindMethodByName(). Use DescriptorPool to construct your 1115 const MethodDescriptor* FindMethodByName(const string& name) const;
|
H A D | descriptor.cc | 1043 const MethodDescriptor* DescriptorPool::FindMethodByName( function in class:google::protobuf::DescriptorPool 1225 ServiceDescriptor::FindMethodByName(const string& key) const { function in class:google::protobuf::ServiceDescriptor
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
H A D | descriptor_test.py | 148 method_descriptor = service_descriptor.FindMethodByName("Foo") 329 method_descriptor = service_descriptor.FindMethodByName("Method")
|
/external/protobuf/src/google/protobuf/ |
H A D | descriptor.h | 705 const MethodDescriptor* FindMethodByName(const string& name) const; 739 // ServiceDescriptor::FindMethodByName(). Use DescriptorPool to construct your 989 const MethodDescriptor* FindMethodByName(const string& name) const;
|
H A D | descriptor_unittest.cc | 1096 TEST_F(ServiceDescriptorTest, FindMethodByName) { 1097 EXPECT_EQ(foo_ , service_ ->FindMethodByName("Foo")); 1098 EXPECT_EQ(bar_ , service_ ->FindMethodByName("Bar")); 1099 EXPECT_EQ(foo2_, service2_->FindMethodByName("Foo")); 1100 EXPECT_EQ(baz2_, service2_->FindMethodByName("Baz")); 1102 EXPECT_TRUE(service_ ->FindMethodByName("NoSuchMethod") == NULL); 1103 EXPECT_TRUE(service_ ->FindMethodByName("Baz" ) == NULL); 1104 EXPECT_TRUE(service2_->FindMethodByName("Bar" ) == NULL); 1963 const MethodDescriptor* method = service->FindMethodByName("Foo"); 3881 EXPECT_TRUE(test_service->FindMethodByName("NoSuchMetho [all...] |
H A D | descriptor.cc | 949 const MethodDescriptor* DescriptorPool::FindMethodByName( function in class:google::protobuf::DescriptorPool 1132 ServiceDescriptor::FindMethodByName(const string& key) const { function in class:google::protobuf::ServiceDescriptor
|
/external/protobuf/python/google/protobuf/ |
H A D | descriptor.py | 509 def FindMethodByName(self, name): member in class:ServiceDescriptor
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
H A D | descriptor.py | 597 def FindMethodByName(self, name): member in class:ServiceDescriptor
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
H A D | cpp_unittest.cc | 1123 foo_(descriptor_->FindMethodByName("Foo")), 1124 bar_(descriptor_->FindMethodByName("Bar")),
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
H A D | cpp_unittest.cc | 1003 foo_(descriptor_->FindMethodByName("Foo")), 1004 bar_(descriptor_->FindMethodByName("Bar")),
|
Completed in 702 milliseconds