Searched refs:getOneofDecl (Results 1 – 9 of 9) sorted by relevance
/external/protobuf/php/src/Google/Protobuf/ |
D | Descriptor.php | 88 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/ |
D | Descriptor.php | 61 public function getOneofDecl() function in Google\\Protobuf\\Internal\\Descriptor 214 foreach ($proto->getOneofDecl() as $oneof_proto) {
|
D | DescriptorProto.php | 271 public function getOneofDecl() function in Google\\Protobuf\\Internal\\DescriptorProto
|
D | Message.php | 148 $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/ |
D | descriptors_test.php | 88 $this->assertInstanceOf('\Google\Protobuf\OneofDescriptor', $desc->getOneofDecl(0)); 229 $oneofDesc = $desc->getOneofDecl(0);
|
D | php_implementation_test.php | 333 $this->assertSame(0, sizeof($desc->getOneofDecl()));
|
/external/protobuf/php/ext/google/protobuf/ |
D | def.c | 143 PHP_ME(Descriptor, getOneofDecl, NULL, ZEND_ACC_PUBLIC) 231 PHP_METHOD(Descriptor, getOneofDecl) { in PHP_METHOD() argument
|
D | protobuf.h | 808 PHP_METHOD(Descriptor, getOneofDecl);
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | Descriptors.java | 868 oneofs[i] = new OneofDescriptor(proto.getOneofDecl(i), file, this, i); in Descriptor() 929 oneofs[i].setProto(proto.getOneofDecl(i)); in setProto()
|