Home
last modified time | relevance | path

Searched refs:OneofDescriptor (Results 1 – 25 of 158) sorted by relevance

1234567

/external/protobuf/php/src/Google/Protobuf/Internal/
DOneofDescriptor.php35 class OneofDescriptor class
44 $this->public_desc = new \Google\Protobuf\OneofDescriptor($this);
69 $oneof = new OneofDescriptor();
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DOneofAccessor.cs46 private OneofDescriptor descriptor;
48 …internal OneofAccessor(PropertyInfo caseProperty, MethodInfo clearMethod, OneofDescriptor descript… in OneofAccessor()
67 public OneofDescriptor Descriptor { get { return descriptor; } }
DOneofDescriptor.cs45 public sealed class OneofDescriptor : DescriptorBase class
52 …internal OneofDescriptor(OneofDescriptorProto proto, FileDescriptor file, MessageDescriptor parent… in OneofDescriptor() method in Google.Protobuf.Reflection.OneofDescriptor
DMessageDescriptor.cs79 … new OneofDescriptor(oneof, file, this, index, generatedCodeInfo?.OneofNames[index])); in MessageDescriptor()
218 public IList<OneofDescriptor> Oneofs { get; }
283 foreach (OneofDescriptor oneof in Oneofs) in CrossLink()
/external/protobuf/src/google/protobuf/
Ddescriptor.h83 class OneofDescriptor; variable
311 const OneofDescriptor* oneof_decl(int index) const;
314 const OneofDescriptor* FindOneofByName(const std::string& name) const;
466 OneofDescriptor* oneof_decls_;
498 friend class OneofDescriptor; variable
679 const OneofDescriptor* containing_oneof() const;
800 const OneofDescriptor* containing_oneof_;
837 friend class OneofDescriptor; variable
843 class PROTOBUF_EXPORT OneofDescriptor {
909 OneofDescriptor() {} in OneofDescriptor() function
[all …]
Dmessage.h432 const OneofDescriptor* oneof_descriptor) const;
435 const OneofDescriptor* oneof_descriptor) const;
439 const Message& message, const OneofDescriptor* oneof_descriptor) const;
974 const OneofDescriptor* oneof_descriptor) const;
976 Message* message, const OneofDescriptor* oneof_descriptor) const;
1003 const OneofDescriptor* oneof_descriptor) const;
/external/protobuf/src/google/protobuf/compiler/java/
Djava_context.h45 class OneofDescriptor; variable
80 const OneofDescriptor* oneof) const;
102 std::map<const OneofDescriptor*, OneofGeneratorInfo>
Djava_context.cc118 const OneofDescriptor* oneof = message->oneof_decl(i); in InitializeFieldGeneratorInfoForMessage()
182 const OneofDescriptor* oneof) const { in GetOneofGeneratorInfo()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DDynamicMessage.java38 import com.google.protobuf.Descriptors.OneofDescriptor;
171 public boolean hasOneof(OneofDescriptor oneof) { in hasOneof()
181 public FieldDescriptor getOneofFieldDescriptor(OneofDescriptor oneof) { in getOneofFieldDescriptor()
310 private void verifyOneofContainingType(OneofDescriptor oneof) {
475 public boolean hasOneof(OneofDescriptor oneof) {
485 public FieldDescriptor getOneofFieldDescriptor(OneofDescriptor oneof) {
491 public Builder clearOneof(OneofDescriptor oneof) {
534 OneofDescriptor oneofDescriptor = field.getContainingOneof();
559 OneofDescriptor oneofDescriptor = field.getContainingOneof();
624 private void verifyOneofContainingType(OneofDescriptor oneof) {
DMessageOrBuilder.java90 boolean hasOneof(Descriptors.OneofDescriptor oneof); in hasOneof()
93 Descriptors.FieldDescriptor getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof); in getOneofFieldDescriptor()
DAbstractMessage.java35 import com.google.protobuf.Descriptors.OneofDescriptor;
99 public boolean hasOneof(OneofDescriptor oneof) { in hasOneof()
105 public FieldDescriptor getOneofFieldDescriptor(OneofDescriptor oneof) { in getOneofFieldDescriptor()
330 public boolean hasOneof(OneofDescriptor oneof) { in hasOneof()
336 public FieldDescriptor getOneofFieldDescriptor(OneofDescriptor oneof) { in getOneofFieldDescriptor()
342 public BuilderType clearOneof(OneofDescriptor oneof) { in clearOneof()
DMessageReflection.java281 boolean hasOneof(Descriptors.OneofDescriptor oneof); in hasOneof()
287 MergeTarget clearOneof(Descriptors.OneofDescriptor oneof); in clearOneof()
290 Descriptors.FieldDescriptor getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof); in getOneofFieldDescriptor()
398 public boolean hasOneof(Descriptors.OneofDescriptor oneof) { in hasOneof()
403 public MergeTarget clearOneof(Descriptors.OneofDescriptor oneof) { in clearOneof()
409 public Descriptors.FieldDescriptor getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof) { in getOneofFieldDescriptor()
600 public boolean hasOneof(Descriptors.OneofDescriptor oneof) { in hasOneof()
605 public MergeTarget clearOneof(Descriptors.OneofDescriptor oneof) { in clearOneof()
611 public Descriptors.FieldDescriptor getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof) { in getOneofFieldDescriptor()
DDescriptors.java701 public List<OneofDescriptor> getOneofs() { in getOneofs()
823 private final OneofDescriptor[] oneofs;
848 this.oneofs = new OneofDescriptor[0]; in Descriptor()
866 oneofs = new OneofDescriptor[proto.getOneofDeclCount()]; in Descriptor()
868 oneofs[i] = new OneofDescriptor(proto.getOneofDecl(i), file, this, i); in Descriptor()
896 OneofDescriptor oneofDescriptor = fields[i].getContainingOneof(); in Descriptor()
1124 public OneofDescriptor getContainingOneof() { in getContainingOneof()
1211 private OneofDescriptor containingOneof;
2597 public static final class OneofDescriptor extends GenericDescriptor { class in Descriptors
2648 private OneofDescriptor( in OneofDescriptor() method in Descriptors.OneofDescriptor
/external/protobuf/src/google/protobuf/compiler/objectivec/
Dobjectivec_oneof.h47 explicit OneofGenerator(const OneofDescriptor* descriptor);
67 const OneofDescriptor* descriptor_;
Dobjectivec_helpers.h117 string PROTOC_EXPORT OneofEnumName(const OneofDescriptor* descriptor);
118 string PROTOC_EXPORT OneofName(const OneofDescriptor* descriptor);
119 string PROTOC_EXPORT OneofNameCapitalized(const OneofDescriptor* descriptor);
/external/protobuf/python/google/protobuf/pyext/
Ddescriptor_containers.h45 class OneofDescriptor; variable
83 PyObject* NewOneofFieldsSeq(const OneofDescriptor* descriptor);
Ddescriptor.h62 PyObject* PyOneofDescriptor_FromDescriptor(const OneofDescriptor* descriptor);
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upbc/
Dmessage_layout.cc165 std::vector<const protobuf::OneofDescriptor*> oneof_order; in PlaceOneofFields()
170 [](const protobuf::OneofDescriptor* a, in PlaceOneofFields()
171 const protobuf::OneofDescriptor* b) { in PlaceOneofFields()
Dmessage_layout.h52 const google::protobuf::OneofDescriptor* oneof) const { in GetOneofCaseOffset()
99 absl::flat_hash_map<const google::protobuf::OneofDescriptor*, Size>
/external/protobuf/src/google/protobuf/compiler/javanano/
Djavanano_helpers.h57 string UnderscoresToCamelCase(const OneofDescriptor* oneof);
59 string UnderscoresToCapitalizedCamelCase(const OneofDescriptor* oneof);
/external/protobuf/src/google/protobuf/compiler/python/
Dpython_generator.h52 class OneofDescriptor; variable
156 void FixOptionsForOneof(const OneofDescriptor& oneof) const;
/external/protobuf/php/src/Google/Protobuf/
DOneofDescriptor.php37 class OneofDescriptor class
DDescriptor.php86 * @return OneofDescriptor
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs208 public void OneofDescriptor() in OneofDescriptor() method in Google.Protobuf.Reflection.DescriptorsTest
210OneofDescriptor descriptor = TestAllTypes.Descriptor.FindDescriptor<OneofDescriptor>("oneof_field"… in OneofDescriptor()
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs318 public void OneofDescriptor() in OneofDescriptor() method in Google.Protobuf.Reflection.DescriptorsTest
320OneofDescriptor descriptor = TestAllTypes.Descriptor.FindDescriptor<OneofDescriptor>("oneof_field"… in OneofDescriptor()

1234567