Home
last modified time | relevance | path

Searched refs:toArray (Results 1 – 25 of 241) sorted by relevance

12345678910

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/
H A DProxyRequestHandler.php64 $this->ldap()->sendAndReceive($modify, ...$context->controls()->toArray());
72 $this->ldap()->sendAndReceive($modifyDn, ...$context->controls()->toArray());
80 $this->ldap()->sendAndReceive($delete, ...$context->controls()->toArray());
88 $this->ldap()->sendAndReceive($add, ...$context->controls()->toArray());
96 return $this->ldap()->search($search, ...$context->controls()->toArray());
104 $response = $this->ldap()->sendAndReceive($compare, ...$context->controls()->toArray())->getResponse();
117 $this->ldap()->send($extended, ...$context->controls()->toArray());
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DObjectComparator.php73 $this->toArray($expected),
74 $this->toArray($actual),
101 protected function toArray($object) function in SebastianBergmann\\Comparator\\ObjectComparator
103 return $this->exporter->toArray($object);
H A DMockObjectComparator.php37 protected function toArray($object) function in SebastianBergmann\\Comparator\\MockObjectComparator
39 $array = parent::toArray($object);
H A DExceptionComparator.php37 protected function toArray($object) function in SebastianBergmann\\Comparator\\ExceptionComparator
39 $array = parent::toArray($object);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DArrayTest.php32 $result = $this->serializer->toArray($order);
48 $result = $this->serializer->toArray($input);
77 $result = $this->serializer->toArray(new Author(null));
87 $result = $this->serializer->toArray($list);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DArraySubset.php52 $other = $this->toArray($other);
53 $this->subset = $this->toArray($this->subset);
94 private function toArray($other) function in PHPUnit_Framework_Constraint_ArraySubset
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DPipeline.php72 $endpoint->setBody($this->toArray());
120 $this->_processors['processors'] = $processor->toArray();
123 $this->_processors['processors'] = \array_merge($this->_processors['processors'], $processor->toArray());
163 public function toArray(): array
160 public function toArray(): array global() function in Elastica\\Pipeline
H A DRequest.php53 return JSON::stringify($this->toArray());
182 // Refactor: Not full toArray needed in exec?
183 return $transport->exec($this, $this->getConnection()->toArray());
189 public function toArray() function in Elastica\\Request
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DGlobalAggregation.php12 public function toArray(): array function in Elastica\\Aggregation\\GlobalAggregation
14 $array = parent::toArray();
H A DReverseNested.php38 public function toArray(): array function in Elastica\\Aggregation\\ReverseNested
40 $array = parent::toArray();
H A DDerivative.php43 public function toArray(): array function in Elastica\\Aggregation\\Derivative
49 return parent::toArray();
H A DStatsBucket.php43 public function toArray(): array function in Elastica\\Aggregation\\StatsBucket
49 return parent::toArray();
H A DSumBucket.php43 public function toArray(): array function in Elastica\\Aggregation\\SumBucket
49 return parent::toArray();
H A DAvgBucket.php45 public function toArray(): array function in Elastica\\Aggregation\\AvgBucket
51 return parent::toArray();
H A DFilter.php37 public function toArray(): array function in Elastica\\Aggregation\\Filter
44 'filter' => $this->getParam('filter')->toArray(),
H A DAbstractSimpleAggregation.php36 public function toArray(): array function in Elastica\\Aggregation\\AbstractSimpleAggregation
41 $array = parent::toArray();
H A DPercentilesBucket.php34 public function toArray(): array function in Elastica\\Aggregation\\PercentilesBucket
40 return parent::toArray();
H A DSerialDiff.php64 public function toArray(): array function in Elastica\\Aggregation\\SerialDiff
70 return parent::toArray();
H A DBucketScript.php70 public function toArray(): array
79 return parent::toArray();
62 public function toArray(): array global() function in Elastica\\Aggregation\\BucketScript
H A DNormalizeAggregation.php60 public function toArray(): array function in Elastica\\Aggregation\\NormalizeAggregation
70 return parent::toArray();
/plugin/revealjs/js/
H A Dreveal.js410 var images = toArray( document.getElementsByTagName( 'img' ) ),
411 iframes = toArray( document.getElementsByTagName( 'iframe' ) );
761 dom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) );
763 dom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) );
821 toArray( node.childNodes ).forEach( function( child ) {
1699 function toArray( o ) { function
2306 var slides = toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) );
2547 toArray( dom.background.childNodes ).forEach( function( hbackground, h ) {
3187 var slides = toArray( dom.wrapper.querySelectorAll( selector ) ),
4711 fragments = toArray( fragments );
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DDn.php90 return new ArrayIterator($this->toArray());
127 public function toArray(): array
144 (new self($dn))->toArray();
110 public function toArray(): array global() function in FreeDSx\\Ldap\\Entry\\Dn
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DScript.php44 public function toArray(): array function in Elastica\\Query\\Script
46 $array = parent::toArray();
H A DHasParent.php67 public function toArray(): array function in Elastica\\Query\\HasParent
69 $array = parent::toArray();
/plugin/recaptcha2/lib/ReCaptcha/
H A DRequestParameters.php79 public function toArray() function in ReCaptcha\\RequestParameters
101 return http_build_query($this->toArray(), '', '&');

12345678910