Searched refs:FindOneofByName (Results 1 – 12 of 12) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/pyext/ |
D | descriptor_pool.h | 146 PyObject* FindOneofByName(PyDescriptorPool* self, PyObject* arg);
|
D | descriptor_pool.cc | 291 PyObject* FindOneofByName(PyDescriptorPool* self, PyObject* arg) { in FindOneofByName() function 299 self->pool->FindOneofByName(string(name, name_size)); in FindOneofByName() 526 { "FindOneofByName", (PyCFunction)FindOneofByName, METH_O,
|
D | message.cc | 1366 descriptor->FindOneofByName(field_name); in CheckAndGetInteger() 2060 self->message->GetDescriptor()->FindOneofByName(oneof_name); in CheckAndGetInteger()
|
D | descriptor_containers.cc | 1265 return GetDescriptor(self)->FindOneofByName(name); in GetByName()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | descriptor.h | 254 const OneofDescriptor* FindOneofByName(const string& name) const; 1420 const OneofDescriptor* FindOneofByName(const string& name) const;
|
D | descriptor_unittest.cc | 986 EXPECT_EQ(oneof_, oneof_message_->FindOneofByName("foo")); in TEST_F() 987 EXPECT_EQ(oneof2_, oneof_message_->FindOneofByName("bar")); in TEST_F() 988 EXPECT_TRUE(oneof_message_->FindOneofByName("no_such_oneof") == NULL); in TEST_F() 2707 const OneofDescriptor* oneof = message->FindOneofByName("AnOneof"); in TEST()
|
D | arena_unittest.cc | 906 const OneofDescriptor* oneof = desc->FindOneofByName( in TEST()
|
D | descriptor.cc | 1238 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
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/php/ext/google/protobuf/ |
D | upb.h | 1910 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 …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/ext/google/protobuf_c/ |
D | upb.h | 2388 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 …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/ |
D | descriptor.py | 688 return _message.default_pool.FindOneofByName(full_name)
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/ |
D | descriptor_pool_test.py | 677 pool.FindOneofByName('protobuf_unittest.TestAllTypes.oneof_field'),
|