Home
last modified time | relevance | path

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

/third_party/protobuf/php/src/Google/Protobuf/Internal/
DFieldDescriptor.php62 public function getOneofIndex() function in Google\\Protobuf\\Internal\\FieldDescriptor
231 $oneof_index = $proto->hasOneofIndex() ? $proto->getOneofIndex() : -1;
DMessage.php148 } else if ($field->getOneofIndex() !== -1) {
149 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
182 $oneof_index = $field->getOneofIndex();
207 $oneof_index = $field->getOneofIndex();
218 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
231 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
240 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
595 } else if ($field->getOneofIndex() !== -1) {
596 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
1576 } else if ($field->getOneofIndex() !== -1) {
[all …]
DOneofDescriptor.php72 if ($field->getOneofIndex() == $index) {
DFieldDescriptorProto.php439 public function getOneofIndex() function in Google\\Protobuf\\Internal\\FieldDescriptorProto
/third_party/protobuf/php/src/Google/Protobuf/
DField.php255 public function getOneofIndex() function in Google\\Protobuf\\Field
/third_party/protobuf/php/tests/
DWellKnownTest.php228 $this->assertSame(1, $m->getOneofIndex());
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DDescriptors.java1415 if (proto.getOneofIndex() < 0 in FieldDescriptor()
1416 || proto.getOneofIndex() >= parent.toProto().getOneofDeclCount()) { in FieldDescriptor()
1421 containingOneof = parent.getOneofs().get(proto.getOneofIndex()); in FieldDescriptor()