Home
last modified time | relevance | path

Searched refs:itemsPerPage (Results 1 – 4 of 4) sorted by relevance

/external/jsoncpp/src/lib_json/
Djson_internalarray.inl56 malloc(sizeof(Value) * ValueInternalArray::itemsPerPage));
119 BatchAllocator<Value, ValueInternalArray::itemsPerPage> pagesAllocator_;
148 it.array_ && (it.currentPageIndex_ - it.array_->pages_) * itemsPerPage +
153 if (it.currentItemIndex_ == itemsPerPage) {
165 it.currentItemIndex_ = itemsPerPage - 1;
178 it.array_ && (it.currentPageIndex_ - it.array_->pages_) * itemsPerPage +
194 it.currentItemIndex_ = index % itemsPerPage;
195 it.currentPageIndex_ = pages_ + index / itemsPerPage;
206 PageIndex minNewPages = other.size_ / itemsPerPage;
214 if (index % itemsPerPage == 0) {
[all …]
/external/python/google-api-python-client/samples/searchforshopping/
Dpagination.py30 itemsPerPage = response['itemsPerPage']
32 for i in range(1, totalItems, itemsPerPage):
34 (i, i + itemsPerPage))
/external/doclava/res/assets/templates-sdk/assets/js/
Ddocs.js1295 itemsPerPage: this.data('itemsPerPage'),
1505 if (opts.itemsPerPage) {
1526 var initialResults = opts.initialResults || opts.itemsPerPage || resources.length;
1527 var max = firstPage ? initialResults : i + opts.itemsPerPage;
1531 if (opts.itemsPerPage) {
1580 var clicks = Math.ceil((i - initialResults) / opts.itemsPerPage);
5733 itemsPerPage: 18, property
/external/jsoncpp/include/json/
Dvalue.h763 itemsPerPage = 8 enumerator