Home
last modified time | relevance | path

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

/external/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;
DOneofDescriptor.php72 if ($field->getOneofIndex() == $index) {
DMessage.php147 } else if ($field->getOneofIndex() !== -1) {
148 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
181 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
194 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
549 } else if ($field->getOneofIndex() !== -1) {
550 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
1501 $oneof_index = $field->getOneofIndex();
DFieldDescriptorProto.php379 public function getOneofIndex() function in Google\\Protobuf\\Internal\\FieldDescriptorProto
/external/protobuf/php/src/Google/Protobuf/
DField.php255 public function getOneofIndex() function in Google\\Protobuf\\Field
/external/protobuf/php/tests/
Dwell_known_test.php227 $this->assertSame(1, $m->getOneofIndex());
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DDescriptors.java1359 if (proto.getOneofIndex() < 0 in FieldDescriptor()
1360 || proto.getOneofIndex() >= parent.toProto().getOneofDeclCount()) { in FieldDescriptor()
1365 containingOneof = parent.getOneofs().get(proto.getOneofIndex()); in FieldDescriptor()
/external/protobuf/php/ext/google/protobuf/
Dprotobuf.h1302 PHP_METHOD(Field, getOneofIndex);
Dmessage.c2015 PHP_ME(Field, getOneofIndex, NULL, ZEND_ACC_PUBLIC)