Searched refs:mPageCount (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/print/
H A DPrintDocumentInfo.java119 private @IntRange(from = -1) int mPageCount; field in class:PrintDocumentInfo
137 mPageCount = prototype.mPageCount;
149 mPageCount = parcel.readInt();
150 Preconditions.checkArgument(mPageCount == PAGE_COUNT_UNKNOWN || mPageCount > 0);
173 return mPageCount;
217 parcel.writeInt(mPageCount);
228 result = prime * result + mPageCount;
252 if (mPageCount !
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPagingIndicator.java109 private int mPageCount; field in class:PagingIndicator
230 mPageCount = pages;
231 mDots = new Dot[mPageCount];
232 for (int i = 0; i < mPageCount; ++i) {
264 mDotSelectedX = new int[mPageCount];
265 mDotSelectedPrevX = new int[mPageCount];
266 mDotSelectedNextX = new int[mPageCount];
273 for (int i = 1; i < mPageCount; i++) {
284 for (int i = 1; i < mPageCount; i++) {
296 return mPageCount;
[all...]
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java44 private int mPageCount; field in class:PdfEditor
83 mPageCount = nativeGetPageCount(mNativeDocument);
94 return mPageCount;
105 mPageCount = nativeRemovePage(mNativeDocument, pageIndex);
263 if (pageIndex < 0 || pageIndex >= mPageCount) {
H A DPdfRenderer.java108 private final int mPageCount; field in class:PdfRenderer
158 mPageCount = nativeGetPageCount(mNativeDocument);
179 return mPageCount;
250 if (pageIndex < 0 || pageIndex >= mPageCount) {
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPageContentRepository.java425 private int mPageCount = PrintDocumentInfo.PAGE_COUNT_UNKNOWN; field in class:PageContentRepository.AsyncRenderer
502 mPageCount = PrintDocumentInfo.PAGE_COUNT_UNKNOWN;
547 if (lastShownPage + halfPreloadCount >= mPageCount) {
548 excessFromEnd = (lastShownPage + halfPreloadCount) - mPageCount;
555 mPageCount - 1);
573 return mPageCount;
709 mPageCount = PrintDocumentInfo.PAGE_COUNT_UNKNOWN;
715 mPageCount = PrintDocumentInfo.PAGE_COUNT_UNKNOWN;
721 mPageCount = pageCount;
H A DRemotePrintDocument.java977 private final int mPageCount; field in class:RemotePrintDocument.WriteCommand
994 mPageCount = pageCount;
1092 mPages, writtenPages, mPageCount);
/frameworks/base/libs/hwui/utils/
H A DLinearAllocator.cpp119 , mPageCount(0)
239 mPageCount++;
265 ALOGD("%sPages %zu (dedicated %zu)", prefix, mPageCount, mDedicatedPageCount);
H A DLinearAllocator.h150 size_t mPageCount; member in class:android::uirenderer::LinearAllocator

Completed in 175 milliseconds