Home
last modified time | relevance | path

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

/external/protobuf/python/google/protobuf/pyext/
Ddescriptor_pool.cc291 PyObject* FindOneofByName(PyDescriptorPool* self, PyObject* arg) { in FindOneofByName() function
299 self->pool->FindOneofByName(string(name, name_size)); in FindOneofByName()
492 { "FindOneofByName", (PyCFunction)FindOneofByName, METH_O,
Ddescriptor_pool.h146 PyObject* FindOneofByName(PyDescriptorPool* self, PyObject* arg);
Dmessage.cc1366 descriptor->FindOneofByName(field_name); in CheckAndGetInteger()
2063 self->message->GetDescriptor()->FindOneofByName(oneof_name); in CheckAndGetInteger()
Ddescriptor_containers.cc1241 return GetDescriptor(self)->FindOneofByName(name); in GetByName()
/external/protobuf/src/google/protobuf/
Ddescriptor.h254 const OneofDescriptor* FindOneofByName(const string& name) const;
1414 const OneofDescriptor* FindOneofByName(const string& name) const;
Ddescriptor_unittest.cc987 EXPECT_EQ(oneof_, oneof_message_->FindOneofByName("foo")); in TEST_F()
988 EXPECT_EQ(oneof2_, oneof_message_->FindOneofByName("bar")); in TEST_F()
989 EXPECT_TRUE(oneof_message_->FindOneofByName("no_such_oneof") == NULL); in TEST_F()
Darena_unittest.cc907 const OneofDescriptor* oneof = desc->FindOneofByName( in TEST()
Ddescriptor.cc1238 const OneofDescriptor* DescriptorPool::FindOneofByName( in FindOneofByName() function in google::protobuf::DescriptorPool
1368 Descriptor::FindOneofByName(const string& key) const { in FindOneofByName() function in google::protobuf::Descriptor
/external/protobuf/php/ext/google/protobuf/
Dupb.h1910 OneofDef* FindOneofByName(const char* name, size_t len);
1911 const OneofDef* FindOneofByName(const char* name, size_t len) const;
1913 OneofDef* FindOneofByName(const char* name) { in FindOneofByName() function
1914 return FindOneofByName(name, strlen(name)); in FindOneofByName()
1916 const OneofDef* FindOneofByName(const char* name) const { in FindOneofByName() function
1917 return FindOneofByName(name, strlen(name)); in FindOneofByName()
1921 OneofDef* FindOneofByName(const T& str) { in FindOneofByName() function
1922 return FindOneofByName(str.c_str(), str.size()); in FindOneofByName()
1925 const OneofDef* FindOneofByName(const T& str) const { in FindOneofByName() function
1926 return FindOneofByName(str.c_str(), str.size()); in FindOneofByName()
[all …]
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.h2388 OneofDef* FindOneofByName(const char* name, size_t len);
2389 const OneofDef* FindOneofByName(const char* name, size_t len) const;
2391 OneofDef* FindOneofByName(const char* name) {
2392 return FindOneofByName(name, strlen(name));
2394 const OneofDef* FindOneofByName(const char* name) const {
2395 return FindOneofByName(name, strlen(name));
2399 OneofDef* FindOneofByName(const T& str) {
2400 return FindOneofByName(str.c_str(), str.size());
2403 const OneofDef* FindOneofByName(const T& str) const {
2404 return FindOneofByName(str.c_str(), str.size());
[all …]
/external/protobuf/python/google/protobuf/
Ddescriptor.py687 return _message.default_pool.FindOneofByName(full_name)
/external/protobuf/python/google/protobuf/internal/
Ddescriptor_pool_test.py659 pool.FindOneofByName('protobuf_unittest.TestAllTypes.oneof_field'),