Searched refs:mPageCount (Results 1 - 9 of 9) 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/packages/SystemUI/src/com/android/systemui/statusbar/car/
H A DPageIndicator.java53 private int mPageCount; field in class:PageIndicator
103 if (mPageCount <= 1)
106 int x = canvas.getWidth() / 2 - (mPageCount / 2) * mStep;
109 for (int i = 0; i < mPageCount; i++) {
153 if (mPageCount == count) {
158 mPageCount = count;
175 if (mPageCount <= position) {
176 Log.e(TAG, "Position out of bounds, position=" + position + " size=" + mPageCount);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPagingIndicator.java115 private int mPageCount; field in class:PagingIndicator
276 mPageCount = pages;
277 mDots = new Dot[mPageCount];
278 for (int i = 0; i < mPageCount; ++i) {
310 mDotSelectedX = new int[mPageCount];
311 mDotSelectedPrevX = new int[mPageCount];
312 mDotSelectedNextX = new int[mPageCount];
319 for (int i = 1; i < mPageCount; i++) {
330 for (int i = 1; i < mPageCount; i++) {
342 return 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);
301 if (pageIndex < 0 || pageIndex >= mPageCount) {
H A DPdfRenderer.java115 private final int mPageCount; field in class:PdfRenderer
168 mPageCount = nativeGetPageCount(mNativeDocument);
195 return mPageCount;
274 if (pageIndex < 0 || pageIndex >= 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
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPageContentRepository.java448 private int mPageCount = PrintDocumentInfo.PAGE_COUNT_UNKNOWN; field in class:PageContentRepository.AsyncRenderer
525 mPageCount = PrintDocumentInfo.PAGE_COUNT_UNKNOWN;
574 selectedPages = new PageRange[]{new PageRange(0, mPageCount - 1)};
636 return mPageCount;
772 mPageCount = PrintDocumentInfo.PAGE_COUNT_UNKNOWN;
778 mPageCount = PrintDocumentInfo.PAGE_COUNT_UNKNOWN;
784 mPageCount = pageCount;
H A DRemotePrintDocument.java1004 private final int mPageCount; field in class:RemotePrintDocument.WriteCommand
1021 mPageCount = pageCount;
1119 mPages, writtenPages, mPageCount);

Completed in 303 milliseconds