Searched defs:mPages (Results 1 - 8 of 8) sorted by relevance
/frameworks/base/core/jni/android/graphics/pdf/ |
H A D | PdfDocument.cpp | 71 mPages.push_back(page); 92 for (unsigned i = 0; i < mPages.size(); i++) { 93 PageRecord* page = mPages[i]; 106 for (unsigned i = 0; i < mPages.size(); i++) { 107 delete mPages[i]; 116 std::vector<PageRecord*> mPages; member in class:android::PdfDocument
|
/frameworks/base/graphics/java/android/graphics/pdf/ |
H A D | PdfDocument.java | 83 private final List<PageInfo> mPages = new ArrayList<PageInfo>(); field in class:PdfDocument 150 mPages.add(page.getInfo()); 184 return Collections.unmodifiableList(mPages);
|
/frameworks/base/libs/hwui/utils/ |
H A D | LinearAllocator.h | 144 Page* mPages; member in class:android::uirenderer::LinearAllocator
|
/frameworks/support/paging/common/src/main/java/androidx/paging/ |
H A D | PagedStorage.java | 42 * Contiguous - all content in mPages is valid and loaded, but may return false from isTiled(). 45 * Non-contiguous - mPages may have nulls or a placeholder page, isTiled() always returns true. 46 * mPages may have nulls, or placeholder (empty) pages while content is loading. 48 private final ArrayList<List<T>> mPages; field in class:PagedStorage 53 * Number of items represented by {@link #mPages}. If tiling is enabled, unloaded items in 54 * {@link #mPages} may be null, but this value still counts them. 58 // If mPageSize > 0, tiling is enabled, 'mPages' may have gaps, and leadingPages is set 66 mPages = new ArrayList<>(); 82 mPages = new ArrayList<>(other.mPages); [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
H A D | PagedTileLayout.java | 46 private final ArrayList<TilePage> mPages = new ArrayList<>(); field in class:PagedTileLayout 79 item = mPages.size() - 1 - item; 92 for (TilePage tilePage : mPages) { 144 mPages.add((TilePage) LayoutInflater.from(getContext()) 192 for (int i = 0; i < mPages.size(); i++) { 193 mPages.get(i).setSelected(i == getCurrentItem() ? selected : false); 209 final int NP = mPages.size(); 211 mPages.get(i).removeAllViews(); 217 if (mPages.get(index).isFull()) { 218 if (++index == mPages [all...] |
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/ |
H A D | RemotePrintDocument.java | 995 private final PageRange[] mPages; field in class:RemotePrintDocument.WriteCommand 1012 mPages = Arrays.copyOf(pages, pages.length); 1046 mAdapter.write(mPages, sink, mRemoteResultCallback, mSequence); 1109 mPages, writtenPages, mPageCount);
|
/frameworks/support/compat/src/main/java/androidx/core/app/ |
H A D | NotificationCompat.java | 3808 private ArrayList<Notification> mPages = new ArrayList<Notification>(); field in class:NotificationCompat.WearableExtender 3854 Collections.addAll(mPages, pages); 3904 if (!mPages.isEmpty()) { 3905 wearableBundle.putParcelableArray(KEY_PAGES, mPages.toArray( 3906 new Notification[mPages.size()])); 3977 that.mPages = new ArrayList<>(this.mPages); 4096 mPages.add(page); 4111 mPages.addAll(pages); 4121 mPages [all...] |
/frameworks/base/core/java/android/app/ |
H A D | Notification.java | 8326 private ArrayList<Notification> mPages = new ArrayList<Notification>(); field in class:Notification.WearableExtender 8359 Collections.addAll(mPages, pages); 8396 if (!mPages.isEmpty()) { 8397 wearableBundle.putParcelableArray(KEY_PAGES, mPages.toArray( 8398 new Notification[mPages.size()])); 8442 that.mPages = new ArrayList<Notification>(this.mPages); 8561 mPages.add(page); 8576 mPages.addAll(pages); 8586 mPages [all...] |
Completed in 69 milliseconds