Home
last modified time | relevance | path

Searched refs:OneofField (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/protobuf-codegen/src/
Doneof.rs22 pub(crate) struct OneofField<'a> { struct
29 impl<'a> OneofField<'a> { argument
57 ) -> OneofField<'a> { in parse()
58 let boxed = OneofField::need_boxed(field, root_scope, &oneof.message.name_absolute().path); in parse()
60 OneofField { in parse()
83 oneof_field: OneofField<'a>,
106 oneof_field: OneofField::parse( in parse()
/external/protobuf/php/src/Google/Protobuf/Internal/
DOneofField.php35 class OneofField class
DMessage.php150 $this->$oneof_name = new OneofField($oneof);
552 $this->$oneof_name = new OneofField($oneof);
/external/rust/crates/protobuf-codegen/src/field/
Dmod.rs13 use oneof::OneofField;
206 Oneof(OneofField<'a>),
487 FieldKind::Oneof(OneofField::parse(&oneof, &field, elem, root_scope)) in parse()
527 pub fn oneof(&self) -> &OneofField { in oneof() argument
598 FieldKind::Oneof(OneofField { ref elem, .. }) => &elem, in elem()
648 | FieldKind::Oneof(OneofField { ref elem, .. }) => elem.rust_storage_type(), in set_xxx_param_type()
662 | FieldKind::Oneof(OneofField { ref elem, .. }) => elem.rust_storage_type(), in mut_xxx_return_type()
671 | FieldKind::Oneof(OneofField { ref elem, .. }) => match elem.is_copy() { in get_xxx_return_type()
894 FieldKind::Oneof(OneofField { ref elem, .. }) => { in accessor_fn()
1155 FieldKind::Oneof(OneofField { in write_for_self_field()
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
DUnittestCustomOptionsProto3.cs287 case AnOneofOneofCase.OneofField: in TestMessageWithCustomOptions()
288 OneofField = other.OneofField; in TestMessageWithCustomOptions()
314 public int OneofField { property in UnitTest.Issues.TestProtos.TestMessageWithCustomOptions
315 get { return anOneofCase_ == AnOneofOneofCase.OneofField ? (int) anOneof_ : 0; }
318 anOneofCase_ = AnOneofOneofCase.OneofField;
326 OneofField = 2, enumerator
354 if (OneofField != other.OneofField) return false; in Equals()
363 if (anOneofCase_ == AnOneofOneofCase.OneofField) hash ^= OneofField.GetHashCode(); in GetHashCode()
382 if (anOneofCase_ == AnOneofOneofCase.OneofField) { in WriteTo()
384 output.WriteInt32(OneofField); in WriteTo()
[all …]
/external/golang-protobuf/protoc-gen-go/testdata/import_public/sub/
Da.pb.go140 OneofField isM_OneofField `protobuf_oneof:"oneof_field"` member
200 return m.OneofField
/external/protobuf/
DMakefile.am809 php/src/Google/Protobuf/Internal/OneofField.php \