Home
last modified time | relevance | path

Searched refs:oneof_name (Results 1 – 6 of 6) sorted by relevance

/external/protobuf/src/google/protobuf/compiler/csharp/
Dcsharp_field_base.cc96 (*variables)["oneof_name"] = oneof_name(); in SetCommonOneofFieldVariables()
98 oneof_name() + "Case_ == " + oneof_property_name() + in SetCommonOneofFieldVariables()
139 std::string FieldGeneratorBase::oneof_name() { in oneof_name() function in google::protobuf::compiler::csharp::FieldGeneratorBase
Dcsharp_field_base.h79 std::string oneof_name();
/external/protobuf/python/google/protobuf/
Djson_format.py350 oneof_name = field.containing_oneof.name
351 if oneof_name in names:
354 message.DESCRIPTOR.full_name, oneof_name))
355 names.append(oneof_name)
/external/protobuf/src/google/protobuf/util/
Dtype_resolver_util_test.cc104 const string& oneof_name) { in FieldInOneof() argument
110 return type.oneofs(field->oneof_index() - 1) == oneof_name; in FieldInOneof()
/external/protobuf/python/google/protobuf/internal/
Dpython_message.py1263 def WhichOneof(self, oneof_name): argument
1266 field = message_descriptor.oneofs_by_name[oneof_name]
1269 'Protocol message has no oneof "%s" field.' % oneof_name)
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2061 string oneof_name = string(name_data, name_size); in CheckAndGetInteger() local
2063 self->message->GetDescriptor()->FindOneofByName(oneof_name); in CheckAndGetInteger()
2067 oneof_name.c_str()); in CheckAndGetInteger()