Home
last modified time | relevance | path

Searched refs:FindOneofByName (Results 1 – 4 of 4) sorted by relevance

/external/protobuf/src/google/protobuf/
Ddescriptor.h204 const OneofDescriptor* FindOneofByName(const string& name) const;
1225 const OneofDescriptor* FindOneofByName(const string& name) const;
Ddescriptor_unittest.cc740 EXPECT_EQ(oneof_, oneof_message_->FindOneofByName("foo")); in TEST_F()
741 EXPECT_EQ(oneof2_, oneof_message_->FindOneofByName("bar")); in TEST_F()
742 EXPECT_TRUE(oneof_message_->FindOneofByName("no_such_oneof") == NULL); in TEST_F()
Ddescriptor.cc1092 const OneofDescriptor* DescriptorPool::FindOneofByName( in FindOneofByName() function in google::protobuf::DescriptorPool
1222 Descriptor::FindOneofByName(const string& key) const { in FindOneofByName() function in google::protobuf::Descriptor
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc878 message->GetDescriptor()->FindOneofByName(field_name); in CheckAndGetInteger()
1467 self->message->GetDescriptor()->FindOneofByName(oneof_name); in CheckAndGetInteger()