Home
last modified time | relevance | path

Searched refs:oneof_descriptor (Results 1 – 9 of 9) sorted by relevance

/external/protobuf/src/google/protobuf/
Dgenerated_message_reflection.cc516 const OneofDescriptor* oneof_descriptor) const { in SwapOneofField()
517 uint32 oneof_case1 = GetOneofCase(*message1, oneof_descriptor); in SwapOneofField()
518 uint32 oneof_case2 = GetOneofCase(*message2, oneof_descriptor); in SwapOneofField()
597 ClearOneof(message1, oneof_descriptor); in SwapOneofField()
629 ClearOneof(message2, oneof_descriptor); in SwapOneofField()
1771 const OneofDescriptor* oneof_descriptor) const { in GetOneofFieldDescriptor()
1772 uint32 field_number = GetOneofCase(message, oneof_descriptor); in GetOneofFieldDescriptor()
1944 const OneofDescriptor* oneof_descriptor) const { in GetOneofCase()
1947 return reinterpret_cast<const uint32*>(ptr)[oneof_descriptor->index()]; in GetOneofCase()
1952 const OneofDescriptor* oneof_descriptor) const { in MutableOneofCase()
[all …]
Dgenerated_message_reflection.h223 const OneofDescriptor* oneof_descriptor) const;
264 const OneofDescriptor* oneof_descriptor) const;
474 const OneofDescriptor* oneof_descriptor) const;
477 const OneofDescriptor* oneof_descriptor) const;
506 const OneofDescriptor* oneof_descriptor) const;
Ddescriptor.cc273 const OneofDescriptor* oneof_descriptor; member
299 CONSTRUCTOR(OneofDescriptor , ONEOF , oneof_descriptor ) in CONSTRUCTOR()
312 case ONEOF : return oneof_descriptor ->containing_type()->file(); in CONSTRUCTOR()
1241 return (result.type == Symbol::ONEOF) ? result.oneof_descriptor : NULL; in FindOneofByName()
1372 return result.oneof_descriptor; in FindOneofByName()
/external/protobuf/python/google/protobuf/pyext/
Ddescriptor_pool.cc298 const OneofDescriptor* oneof_descriptor = in FindOneofByName() local
300 if (oneof_descriptor == NULL) { in FindOneofByName()
305 return PyOneofDescriptor_FromDescriptor(oneof_descriptor); in FindOneofByName()
Ddescriptor_containers.h81 namespace oneof_descriptor {
Ddescriptor.cc1421 namespace oneof_descriptor { namespace
1497 oneof_descriptor::Getters, // tp_getset
1502 const OneofDescriptor* oneof_descriptor) { in PyOneofDescriptor_FromDescriptor() argument
1504 &PyOneofDescriptor_Type, oneof_descriptor, NULL); in PyOneofDescriptor_FromDescriptor()
Ddescriptor_containers.cc1360 namespace oneof_descriptor { namespace
/external/protobuf/python/google/protobuf/
Djson_format.py261 oneof_descriptor = message.DESCRIPTOR.fields_by_name[which]
262 return _FieldToJsonObject(oneof_descriptor, value)
/external/protobuf/python/google/protobuf/internal/
Dpython_message.py329 oneof_descriptor = None
331 oneof_descriptor = field_descriptor
344 cls._decoders_by_tag[tag_bytes] = (field_decoder, oneof_descriptor)