Searched defs:mPageCount (Results 1 - 7 of 7) 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/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java44 private int mPageCount; field in class:PdfEditor
85 mPageCount = nativeGetPageCount(mNativeDocument);
98 return mPageCount;
111 mPageCount = nativeRemovePage(mNativeDocument, pageIndex);
298 if (pageIndex < 0 || pageIndex >= mPageCount) {
H A DPdfRenderer.java114 private final int mPageCount; field in class:PdfRenderer
166 mPageCount = nativeGetPageCount(mNativeDocument);
189 return mPageCount;
265 if (pageIndex < 0 || pageIndex >= mPageCount) {
/frameworks/base/libs/hwui/utils/
H A DLinearAllocator.h150 size_t mPageCount; member in class:android::uirenderer::LinearAllocator
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPagingIndicator.java113 private int mPageCount; field in class:PagingIndicator
234 mPageCount = pages;
235 mDots = new Dot[mPageCount];
236 for (int i = 0; i < mPageCount; ++i) {
268 mDotSelectedX = new int[mPageCount];
269 mDotSelectedPrevX = new int[mPageCount];
270 mDotSelectedNextX = new int[mPageCount];
277 for (int i = 1; i < mPageCount; i++) {
288 for (int i = 1; i < mPageCount; i++) {
300 return mPageCount;
[all...]
/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.java978 private final int mPageCount; field in class:RemotePrintDocument.WriteCommand
995 mPageCount = pageCount;
1093 mPages, writtenPages, mPageCount);

Completed in 174 milliseconds