Home
last modified time | relevance | path

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

/plugin/swiftmail/Swift/Iterator/
DMySQLResult.php26 protected $resultSet; variable in Swift_Iterator_MySQLResult
49 $this->resultSet = $rs;
58 return $this->resultSet;
76 $this->currentRow = mysql_fetch_array($this->resultSet);
92 mysql_data_seek($this->resultSet, $pos);
93 $this->currentRow = mysql_fetch_array($this->resultSet);
94 mysql_data_seek($this->resultSet, $pos);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
DScroll.php172 protected function _setScrollId(ResultSet $resultSet): void argument
175 …$this->totalPages = $resultSet->count() > 0 ? \ceil($resultSet->getTotalHits() / $resultSet->count…
178 $this->_currentResultSet = $resultSet;
181 if ($resultSet->getResponse()->isOk()) {
182 $this->_nextScrollId = $resultSet->getResponse()->getScrollId();
183 if (0 === $resultSet->count()) {
DSearch.php384 $resultSet = $this->builder->buildResultSet($response, $query);
386 return $fullResult ? $resultSet : $resultSet->getTotalHits();
/plugin/elasticsearch/vendor/ruflin/elastica/src/ResultSet/
DProcessingBuilder.php34 $resultSet = $this->builder->buildResultSet($response, $query);
36 $this->processor->process($resultSet);
38 return $resultSet;
DChainProcessor.php29 public function process(ResultSet $resultSet): void argument
32 $processor->process($resultSet);
DProcessorInterface.php13 public function process(ResultSet $resultSet); argument
/plugin/elasticsearch/vendor/ruflin/elastica/src/Multi/
DResultSet.php67 foreach ($this->getResultSets() as $resultSet) {
68 if ($resultSet->getResponse()->hasError()) {