HomeSort by relevance Sort by last modified time
    Searched refs:mPages (Results 1 - 14 of 14) sorted by null

  /frameworks/support/paging/common/src/main/java/androidx/paging/
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;
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/
PagedTileLayout.java 46 private final ArrayList<TilePage> mPages = new ArrayList<>();
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.size())
    [all...]
  /frameworks/base/core/jni/android/graphics/pdf/
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;
  /frameworks/base/libs/hwui/utils/
LinearAllocator.cpp 109 , mPages(0)
121 Page* p = mPages;
157 if (!mPages) {
158 mPages = mCurrentPage;
170 page->setNext(mPages);
171 mPages = page;
172 if (!mCurrentPage) mCurrentPage = mPages;
LinearAllocator.h 144 Page* mPages;
  /external/replicaisland/src/com/replica/replicaisland/
ConversationDialogActivity.java 45 private ArrayList<ConversationUtils.ConversationPage> mPages;
67 mPages = null;
159 if (mCurrentPage < mPages.size()) {
160 showPage(mPages.get(mCurrentPage));
209 if (mPages == null) {
210 mPages = mConversation.pages;
211 showPage(mPages.get(0));
  /frameworks/base/graphics/java/android/graphics/pdf/
PdfDocument.java 83 private final List<PageInfo> mPages = new ArrayList<PageInfo>();
150 mPages.add(page.getInfo());
184 return Collections.unmodifiableList(mPages);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ExportWizard.java 158 private ExportWizardPage mPages[] = new ExportWizardPage[5];
193 addPage(mPages[0] = new ProjectCheckPage(this, PAGE_PROJECT_CHECK));
194 addPage(mKeystoreSelectionPage = mPages[1] = new KeystoreSelectionPage(this,
196 addPage(mKeyCreationPage = mPages[2] = new KeyCreationPage(this, PAGE_KEY_CREATION));
197 addPage(mKeySelectionPage = mPages[3] = new KeySelectionPage(this, PAGE_KEY_SELECTION));
198 addPage(mKeyCheckPage = mPages[4] = new KeyCheckPage(this, PAGE_KEY_CHECK));
521 for (ExportWizardPage page : mPages) {
  /frameworks/support/compat/src/main/java/androidx/core/app/
NotificationCompat.java     [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
RemotePrintDocument.java     [all...]
  /frameworks/base/core/java/android/app/
Notification.java     [all...]
  /prebuilts/maven_repo/android/android/arch/paging/common/1.0.0-alpha3/
common-1.0.0-alpha3.jar 
  /prebuilts/sdk/current/androidx/m2repository/androidx/paging/paging-common/2.0.0-alpha1/
paging-common-2.0.0-alpha1.jar 
  /prebuilts/sdk/current/extras/app-toolkit/m2repository/android/arch/paging/common/28.0.0/
common-28.0.0.jar 

Completed in 455 milliseconds