Lines Matching refs:offset

108      * @param int           $offset
113 …public function searchFamilyNames(array $trees, array $search, int $offset = 0, int $limit = PHP_I… argument
140 …is->paginateQuery($query, $this->familyRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
191 * @param int $offset
196 …public function searchIndividualNames(array $trees, array $search, int $offset = 0, int $limit = P… argument
210 …paginateQuery($query, $this->individualRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
240 * @param int $offset
245 …public function searchLocations(array $trees, array $search, int $offset = 0, int $limit = PHP_INT… argument
253 …->paginateQuery($query, $this->locationRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
261 * @param int $offset
266 …public function searchMedia(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_MAX… argument
273 …his->paginateQuery($query, $this->mediaRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
281 * @param int $offset
286 …public function searchNotes(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_MAX… argument
294 …this->paginateQuery($query, $this->noteRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
302 * @param int $offset
307 …public function searchSharedNotes(array $trees, array $search, int $offset = 0, int $limit = PHP_I… argument
315 …paginateQuery($query, $this->sharedNoteRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
323 * @param int $offset
328 …public function searchRepositories(array $trees, array $search, int $offset = 0, int $limit = PHP_… argument
336 …paginateQuery($query, $this->repositoryRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
344 * @param int $offset
349 …public function searchSources(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_M… argument
356 …is->paginateQuery($query, $this->sourceRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
364 * @param int $offset
369 …public function searchSourcesByName(array $trees, array $search, int $offset = 0, int $limit = PHP… argument
377 …is->paginateQuery($query, $this->sourceRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
385 * @param int $offset
390 …public function searchSurnames(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_… argument
400 ->skip($offset)
410 * @param int $offset
415 …public function searchSubmissions(array $trees, array $search, int $offset = 0, int $limit = PHP_I… argument
423 …paginateQuery($query, $this->submissionRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
431 * @param int $offset
436 …public function searchSubmitters(array $trees, array $search, int $offset = 0, int $limit = PHP_IN… argument
444 …>paginateQuery($query, $this->submitterRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
452 * @param int $offset
457 …public function searchPlaces(Tree $tree, string $search, int $offset = 0, int $limit = PHP_INT_MAX… argument
503 return $this->paginateQuery($query, $row_mapper, $filter, $offset, $limit);
1028 * @param int $offset Skip this many rows.
1033 …nateQuery(Builder $query, Closure $row_mapper, Closure $row_filter, int $offset, int $limit): Coll… argument
1046 if ($offset > 0) {
1047 $offset--;