Home
last modified time | relevance | path

Searched refs:numberOfPages (Results 1 – 25 of 361) sorted by relevance

12345678910>>...15

/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/fluid/Classes/ViewHelpers/Widget/Controller/
H A DPaginateController.php56 protected $numberOfPages = 1; variable in TYPO3\\CMS\\Fluid\\ViewHelpers\\Widget\\Controller\\PaginateController
76 $this->numberOfPages = $itemsPerPage > 0 ? ceil(count($this->objects) / $itemsPerPage) : 0;
90 if ($this->currentPage > $this->numberOfPages) {
119 if ($maximumNumberOfLinks > $this->numberOfPages) {
120 $maximumNumberOfLinks = $this->numberOfPages;
128 if ($this->displayRangeEnd > $this->numberOfPages) {
129 $this->displayRangeStart -= $this->displayRangeEnd - $this->numberOfPages;
132 $this->displayRangeEnd = (int)min($this->displayRangeEnd, $this->numberOfPages);
151 'numberOfPages' => $this->numberOfPages,
155 'hasMorePages' => $this->displayRangeEnd + 1 < $this->numberOfPages
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/fluid/Classes/ViewHelpers/Widget/Controller/
H A DPaginateController.php58 protected $numberOfPages = 1; variable in TYPO3\\CMS\\Fluid\\ViewHelpers\\Widget\\Controller\\PaginateController
78 $this->numberOfPages = $itemsPerPage > 0 ? ceil(count($this->objects) / $itemsPerPage) : 0;
92 if ($this->currentPage > $this->numberOfPages) {
121 if ($maximumNumberOfLinks > $this->numberOfPages) {
122 $maximumNumberOfLinks = $this->numberOfPages;
130 if ($this->displayRangeEnd > $this->numberOfPages) {
131 $this->displayRangeStart -= $this->displayRangeEnd - $this->numberOfPages;
134 $this->displayRangeEnd = (int)min($this->displayRangeEnd, $this->numberOfPages);
153 'numberOfPages' => $this->numberOfPages,
157 'hasMorePages' => $this->displayRangeEnd + 1 < $this->numberOfPages
[all …]
/dports/devel/itext/itext-4.2.0/rups/com/lowagie/rups/model/
H A DPageLoader.java35 protected int numberOfPages; field in PageLoader
48 numberOfPages = file.getNumPages(); in PageLoader()
49 busy = new boolean[numberOfPages]; in PageLoader()
50 done = new boolean[numberOfPages]; in PageLoader()
59 return numberOfPages; in getNumberOfPages()
85 for (int i = 0; i < numberOfPages; i++) { in doTask()
/dports/games/libretro-desmume2015/desmume2015-d6128e6/desmume/src/utils/libfat/
H A Dcache.c55 if (numberOfPages < 2) { in _FAT_cache_constructor()
56 numberOfPages = 2; in _FAT_cache_constructor()
70 cache->numberOfPages = numberOfPages; in _FAT_cache_constructor()
80 for (i = 0; i < numberOfPages; i++) { in _FAT_cache_constructor()
99 for (i = 0; i < cache->numberOfPages; i++) { in _FAT_cache_destructor()
120 unsigned int numberOfPages = cache->numberOfPages; in _FAT_cache_getPage() local
127 for(i=0;i<numberOfPages;i++) { in _FAT_cache_getPage()
274 unsigned int numberOfPages = cache->numberOfPages; in _FAT_cache_findPage() local
278 for(i=0;i<numberOfPages;i++) { in _FAT_cache_findPage()
347 for (i = 0; i < cache->numberOfPages; i++) { in _FAT_cache_flush()
[all …]
/dports/databases/pgfouine/pgfouine-1.2/include/postgresql/vacuum/lines/
H A DPostgreSQLVacuumRemovableInformationLine.class.php28 var $numberOfPages; variable in PostgreSQLVacuumRemovableInformationLine
30 …VacuumRemovableInformationLine($numberOfRemovableRows, $numberOfNonRemovableRows, $numberOfPages) { argument
35 $this->numberOfPages = $numberOfPages;
41 $logObject->setNumberOfPages($this->numberOfPages);
H A DPostgreSQLIndexCleanupInformationLine.class.php27 var $numberOfPages; variable in PostgreSQLIndexCleanupInformationLine
29 function PostgreSQLIndexCleanupInformationLine($indexName, $numberOfRowVersions, $numberOfPages) { argument
34 $this->numberOfPages = $numberOfPages;
38 …umIndexInformation($logObject, $this->indexName, $this->numberOfRowVersions, $this->numberOfPages);
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/fluid/Classes/ViewHelpers/Be/Widget/Controller/
H A DPaginateController.php44 protected $numberOfPages = 1; variable in TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\Widget\\Controller\\PaginateController
70 … $this->numberOfPages = $itemsPerPage > 0 ? (int)ceil($this->numberOfObjects / $itemsPerPage) : 0;
80 $this->currentPage = min($this->numberOfPages, $this->currentPage);
82 if ($this->currentPage > $this->numberOfPages) {
117 'numberOfPages' => $this->numberOfPages,
119 'hasMorePages' => $this->currentPage < $this->numberOfPages,
123 if ($this->currentPage < $this->numberOfPages) {
/dports/games/retroarch/RetroArch-1.9.7/wii/libogc/libfat/
H A Dcache.c49 CACHE* _FAT_cache_constructor (unsigned int numberOfPages, unsigned int sectorsPerPage, const DISC_… in _FAT_cache_constructor() argument
54 if (numberOfPages < 2) { in _FAT_cache_constructor()
55 numberOfPages = 2; in _FAT_cache_constructor()
69 cache->numberOfPages = numberOfPages; in _FAT_cache_constructor()
73 cacheEntries = (CACHE_ENTRY*) _FAT_mem_allocate ( sizeof(CACHE_ENTRY) * numberOfPages); in _FAT_cache_constructor()
79 for (i = 0; i < numberOfPages; i++) { in _FAT_cache_constructor()
98 for (i = 0; i < cache->numberOfPages; i++) { in _FAT_cache_destructor()
116 unsigned int numberOfPages = cache->numberOfPages; in _FAT_cache_getPage() local
123 for(i=0;i<numberOfPages;i++) { in _FAT_cache_getPage()
298 for (i = 0; i < cache->numberOfPages; i++) { in _FAT_cache_flush()
[all …]
/dports/games/retroarch/RetroArch-1.9.7/deps/libfat/
H A Dcache.c49 CACHE* _FAT_cache_constructor (unsigned int numberOfPages, unsigned int sectorsPerPage, const DISC_… in _FAT_cache_constructor() argument
55 if (numberOfPages < 2) in _FAT_cache_constructor()
56 numberOfPages = 2; in _FAT_cache_constructor()
67 cache->numberOfPages = numberOfPages; in _FAT_cache_constructor()
72 cacheEntries = (CACHE_ENTRY*) _FAT_mem_allocate ( sizeof(CACHE_ENTRY) * numberOfPages); in _FAT_cache_constructor()
79 for (i = 0; i < numberOfPages; i++) in _FAT_cache_constructor()
100 for (i = 0; i < cache->numberOfPages; i++) in _FAT_cache_destructor()
119 unsigned int numberOfPages = cache->numberOfPages; in _FAT_cache_getPage() local
126 for(i=0;i<numberOfPages;i++) in _FAT_cache_getPage()
312 for (i = 0; i < cache->numberOfPages; i++) in _FAT_cache_flush()
[all …]
/dports/www/grafana8/grafana-8.3.6/packages/grafana-ui/src/components/Pagination/
H A DPagination.story.tsx21 numberOfPages: {
30 export const WithPages: Story<Props> = ({ numberOfPages, hideWhenSinglePage }) => {
34 numberOfPages={numberOfPages}
42 numberOfPages: 5,
H A DPagination.tsx13 numberOfPages: number;
20 export const Pagination: React.FC<Props> = ({ currentPage, numberOfPages, onNavigate, hideWhenSingl…
22 const pages = [...new Array(numberOfPages).keys()];
24 const condensePages = numberOfPages > PAGE_LENGTH_TO_CONDENSE;
39 const upperBoundIndex = numberOfPages - PAGE_LENGTH_TO_CONDENSE + 1;
43 const isFirstOrLastPage = page === 1 || page === numberOfPages;
76 if (hideWhenSinglePage && numberOfPages <= 1) {
101 disabled={currentPage === numberOfPages}
/dports/www/grafana8/grafana-8.3.6/public/app/features/library-panels/components/LibraryPanelsView/
H A Dreducer.ts13 numberOfPages: number; property
23 numberOfPages: 0,
41 const numberOfPages = Math.ceil(totalCount / perPage);
48 numberOfPages,
49 page: page > numberOfPages ? page - 1 : page,
/dports/print/texlive-base/texlive-20150521-source/texk/dvisvgm/dvisvgm-1.9.2/src/
H A DDVIToSVG.cpp89 if (first > numberOfPages()) { in convert()
91 oss << "file contains only " << numberOfPages() << " page"; in convert()
92 if (numberOfPages() > 1) in convert()
96 last = min(last, numberOfPages()); in convert()
102 _svg.write(_out.getPageStream(getCurrentPageNumber(), numberOfPages())); in convert()
103 string fname = _out.filename(i, numberOfPages()); in convert()
110 pageinfo->second = numberOfPages(); in convert()
120 if (!ranges.parse(rangestr, numberOfPages())) in convert()
135 pageinfo->first = ranges.numberOfPages(); in convert()
136 pageinfo->second = numberOfPages(); in convert()
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/fluid/Classes/ViewHelpers/Be/Widget/Controller/
H A DPaginateController.php40 protected $numberOfPages = 1; variable in TYPO3\\CMS\\Fluid\\ViewHelpers\\Be\\Widget\\Controller\\PaginateController
66 $this->numberOfPages = $itemsPerPage > 0 ? ceil($this->numberOfObjects / $itemsPerPage) : 0;
79 if ($this->currentPage > $this->numberOfPages) {
113 'numberOfPages' => $this->numberOfPages,
115 'hasMorePages' => $this->currentPage < $this->numberOfPages,
119 if ($this->currentPage < $this->numberOfPages) {
/dports/databases/pgfouine/pgfouine-1.2/include/postgresql/vacuum/objects/
H A DVacuumIndexInformation.class.php28 var $numberOfPages = 0; variable in VacuumIndexInformation
36 …function VacuumIndexInformation(& $vacuumedTable, $indexName, $numberOfRowVersions, $numberOfPages argument
40 $this->numberOfPages = $numberOfPages;
69 return $this->numberOfPages;
H A DVacuumTableLogObject.class.php28 var $numberOfPages = 0; variable in VacuumTableLogObject
68 function setNumberOfPages($numberOfPages) { argument
69 $this->numberOfPages = $numberOfPages;
114 return $this->numberOfPages;
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Pagination/
H A DAbstractPaginator.php25 protected $numberOfPages = 1; variable in TYPO3\\CMS\\Core\\Pagination\\AbstractPaginator
75 return $this->numberOfPages;
131 $this->numberOfPages = max(1, (int)ceil($totalAmountOfItems / $this->itemsPerPage));
142 if ($this->currentPageNumber > $this->numberOfPages) {
143 $this->currentPageNumber = $this->numberOfPages;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Pagination/
H A DAbstractPaginator.php25 protected $numberOfPages = 1; variable in TYPO3\\CMS\\Core\\Pagination\\AbstractPaginator
75 return $this->numberOfPages;
131 $this->numberOfPages = max(1, (int)ceil($totalAmountOfItems / $this->itemsPerPage));
142 if ($this->currentPageNumber > $this->numberOfPages) {
143 $this->currentPageNumber = $this->numberOfPages;
/dports/graphics/dspdfviewer/dspdfviewer-1.15.1/
H A Ddspdfviewer.cpp71 audienceWindow.setPageNumberLimits(0, numberOfPages()-1); in DSPDFViewer()
94 secondaryWindow.setPageNumberLimits(0, numberOfPages()-1); in DSPDFViewer()
143 if ( pageNumber() < numberOfPages()-1 ) in goForward()
156 if ( m_pagenumber >= numberOfPages() ) { in renderPage()
157 DEBUGOUT << "Page number out of range, clamping to " << numberOfPages()-1; in renderPage()
158 m_pagenumber = numberOfPages()-1; in renderPage()
172 …agenumber; i<m_pagenumber+runtimeConfiguration.prerenderNextPages() && i < numberOfPages() ; i++) { in renderPage()
201 && numberOfPages() > pageNumber ) in gotoPage()
239 unsigned int DSPDFViewer::numberOfPages() const { in numberOfPages() function in DSPDFViewer
240 int pages = renderFactory.numberOfPages(); in numberOfPages()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/UI/MobileControls/
H A DItemPager.cs59 int numberOfPages = (itemCount - 1) / itemsPerPage + 1; in ItemPager()
62 _lastPageItemCount = itemCount - (numberOfPages - 1) * itemsPerPage; in ItemPager()
64 pager.PageCount += numberOfPages - 1; in ItemPager()
65 if (numberOfPages > 1) in ItemPager()
69 _lastPage = _firstPage + numberOfPages - 1; in ItemPager()
/dports/converters/wkhtmltopdf/qt-5db36ec/doc/src/snippets/printing-qprinter/
H A Dobject.cpp51 int numberOfPages = 10; in print() local
52 int lastPage = numberOfPages - 1; in print()
60 for (int page = 0; page < numberOfPages; ++page) { in print()
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/printsupport/doc/snippets/printing-qprinter/
H A Dobject.cpp66 int numberOfPages = 10; in print() local
67 int lastPage = numberOfPages - 1; in print()
75 for (int page = 0; page < numberOfPages; ++page) { in print()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/printsupport/doc/snippets/printing-qprinter/
H A Dobject.cpp66 int numberOfPages = 10; in print() local
67 int lastPage = numberOfPages - 1; in print()
75 for (int page = 0; page < numberOfPages; ++page) { in print()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/printsupport/doc/snippets/printing-qprinter/
H A Dobject.cpp66 int numberOfPages = 10; in print() local
67 int lastPage = numberOfPages - 1; in print()
75 for (int page = 0; page < numberOfPages; ++page) { in print()
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/printsupport/doc/snippets/printing-qprinter/
H A Dobject.cpp66 int numberOfPages = 10; in print() local
67 int lastPage = numberOfPages - 1; in print()
75 for (int page = 0; page < numberOfPages; ++page) { in print()

12345678910>>...15