/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/ |
D | def.hpp | 204 OneofDefPtr FindOneofByName(const char* name, size_t len) const { in FindOneofByName() function in upb::MessageDefPtr 208 OneofDefPtr FindOneofByName(const char* name) const { in FindOneofByName() function in upb::MessageDefPtr 213 OneofDefPtr FindOneofByName(const T& str) const { in FindOneofByName() function in upb::MessageDefPtr 214 return FindOneofByName(str.c_str(), str.size()); in FindOneofByName()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | descriptor_pool.h | 115 PyObject* FindOneofByName(PyDescriptorPool* self, PyObject* arg);
|
D | descriptor_pool.cc | 339 PyObject* FindOneofByName(PyDescriptorPool* self, PyObject* arg) { in FindOneofByName() function 347 self->pool->FindOneofByName(string(name, name_size)); in FindOneofByName() 357 return FindOneofByName(reinterpret_cast<PyDescriptorPool*>(self), arg); in FindOneofByNameMethod()
|
D | descriptor_containers.cc | 1268 return GetDescriptor(self)->FindOneofByName(name); in GetByName()
|
D | message.cc | 1387 descriptor->FindOneofByName(field_name); in FindFieldWithOneofs() 2013 self->message->GetDescriptor()->FindOneofByName(oneof_name); in WhichOneof()
|
/external/perfetto/tools/ftrace_proto_gen/ |
D | ftrace_descriptor_gen.cc | 30 ftrace_event->FindOneofByName("event"); in GenerateFtraceDescriptors()
|
/external/protobuf/python/google/protobuf/internal/ |
D | descriptor_pool_test.py | 256 self.assertRaises(error_type, self.pool.FindOneofByName, 0) 313 oneof = self.pool.FindOneofByName( 317 self.pool.FindOneofByName('Does not exist') 580 self.pool.FindOneofByName('protobuf_unittest.TestAllTypes.oneof_field'), 695 self.pool.FindOneofByName('collector.ErrorMessage.MyOneof')
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.h | 314 const OneofDescriptor* FindOneofByName(const std::string& name) const; 1598 const OneofDescriptor* FindOneofByName(const std::string& name) const;
|
D | descriptor_unittest.cc | 1124 EXPECT_EQ(oneof_, oneof_message_->FindOneofByName("foo")); in TEST_F() 1125 EXPECT_EQ(oneof2_, oneof_message_->FindOneofByName("bar")); in TEST_F() 1126 EXPECT_TRUE(oneof_message_->FindOneofByName("no_such_oneof") == nullptr); in TEST_F() 2982 const OneofDescriptor* oneof = message->FindOneofByName("AnOneof"); in TEST()
|
D | arena_unittest.cc | 951 const OneofDescriptor* oneof = desc->FindOneofByName("oneof_field"); in TEST()
|
D | descriptor.cc | 1457 const OneofDescriptor* DescriptorPool::FindOneofByName( in FindOneofByName() function in google::protobuf::DescriptorPool 1626 const OneofDescriptor* Descriptor::FindOneofByName( in FindOneofByName() function in google::protobuf::Descriptor
|
/external/protobuf/python/google/protobuf/ |
D | descriptor.py | 734 return _message.default_pool.FindOneofByName(full_name)
|
D | descriptor_pool.py | 498 def FindOneofByName(self, full_name): member in DescriptorPool
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.h | 2578 OneofDef* FindOneofByName(const char* name, size_t len); 2579 const OneofDef* FindOneofByName(const char* name, size_t len) const; 2581 OneofDef* FindOneofByName(const char* name) { 2582 return FindOneofByName(name, strlen(name)); 2584 const OneofDef* FindOneofByName(const char* name) const { 2585 return FindOneofByName(name, strlen(name)); 2589 OneofDef* FindOneofByName(const T& str) { 2590 return FindOneofByName(str.c_str(), str.size()); 2593 const OneofDef* FindOneofByName(const T& str) const { 2594 return FindOneofByName(str.c_str(), str.size()); [all …]
|
/external/protobuf/php/ext/google/protobuf/ |
D | upb.h | 3609 OneofDefPtr FindOneofByName(const char* name, size_t len) const { in FindOneofByName() function 3613 OneofDefPtr FindOneofByName(const char *name) const { in FindOneofByName() function 3618 OneofDefPtr FindOneofByName(const T &str) const { in FindOneofByName() function 3619 return FindOneofByName(str.c_str(), str.size()); in FindOneofByName()
|
/external/protobuf/ |
D | CHANGES.txt | 365 * Add descriptor pool FindOneofByName in pure python.
|