Home
last modified time | relevance | path

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

/external/protobuf/php/src/Google/Protobuf/
DDescriptor.php88 public function getOneofDecl($index) function in Google\\Protobuf\\Descriptor
90 return $this->getPublicDescriptor($this->internal_desc->getOneofDecl()[$index]);
98 return count($this->internal_desc->getOneofDecl());
/external/protobuf/php/src/Google/Protobuf/Internal/
DDescriptor.php61 public function getOneofDecl() function in Google\\Protobuf\\Internal\\Descriptor
214 foreach ($proto->getOneofDecl() as $oneof_proto) {
DDescriptorProto.php271 public function getOneofDecl() function in Google\\Protobuf\\Internal\\DescriptorProto
DMessage.php148 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
181 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
194 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
550 $oneof = $this->desc->getOneofDecl()[$field->getOneofIndex()];
1503 $oneof = $this->desc->getOneofDecl()[$oneof_index];
/external/protobuf/php/tests/
Ddescriptors_test.php88 $this->assertInstanceOf('\Google\Protobuf\OneofDescriptor', $desc->getOneofDecl(0));
229 $oneofDesc = $desc->getOneofDecl(0);
Dphp_implementation_test.php333 $this->assertSame(0, sizeof($desc->getOneofDecl()));
/external/protobuf/php/ext/google/protobuf/
Ddef.c143 PHP_ME(Descriptor, getOneofDecl, NULL, ZEND_ACC_PUBLIC)
231 PHP_METHOD(Descriptor, getOneofDecl) { in PHP_METHOD() argument
Dprotobuf.h808 PHP_METHOD(Descriptor, getOneofDecl);
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DDescriptors.java868 oneofs[i] = new OneofDescriptor(proto.getOneofDecl(i), file, this, i); in Descriptor()
929 oneofs[i].setProto(proto.getOneofDecl(i)); in setProto()