Home
last modified time | relevance | path

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

/plugin/swiftmail/Swift/Iterator/
H A 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/
H A DScroll.php172 protected function _setScrollId(ResultSet $resultSet): void
175 $this->totalPages = $resultSet->count() > 0 ? \ceil($resultSet->getTotalHits() / $resultSet->count()) : 0;
178 $this->_currentResultSet = $resultSet;
181 if ($resultSet->getResponse()->isOk()) {
182 $this->_nextScrollId = $resultSet->getResponse()->getScrollId();
183 if (0 === $resultSet->count()) {
153 _setScrollId(ResultSet $resultSet) global() argument
H A DSearch.php384 $resultSet = $this->builder->buildResultSet($response, $query);
386 return $fullResult ? $resultSet : $resultSet->getTotalHits();
/plugin/elasticsearch/vendor/ruflin/elastica/src/ResultSet/
H A DProcessingBuilder.php34 $resultSet = $this->builder->buildResultSet($response, $query);
36 $this->processor->process($resultSet);
38 return $resultSet;
H A DChainProcessor.php29 public function process(ResultSet $resultSet): void argument
32 $processor->process($resultSet);
H A DProcessorInterface.php13 public function process(ResultSet $resultSet); argument
/plugin/elasticsearch/vendor/ruflin/elastica/src/Multi/
H A DResultSet.php67 foreach ($this->getResultSets() as $resultSet) {
68 if ($resultSet->getResponse()->hasError()) {