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

  /system/core/libutils/
LinearAllocator.cpp 115 , mPages(0)
122 Page* p = mPages;
157 if (!mPages) {
158 mPages = mCurrentPage;
170 page->setNext(mPages);
171 mPages = page;
173 mCurrentPage = mPages;
  /frameworks/base/core/jni/android/graphics/pdf/
PdfDocument.cpp 62 mPages.push_back(page);
84 for (unsigned i = 0; i < mPages.size(); i++) {
85 PageRecord* page = mPages[i];
100 for (unsigned i = 0; i < mPages.size(); i++) {
101 delete mPages[i];
112 std::vector<PageRecord*> mPages;
  /system/core/include/utils/
LinearAllocator.h 86 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 154 private ExportWizardPage mPages[] = new ExportWizardPage[5];
189 addPage(mPages[0] = new ProjectCheckPage(this, PAGE_PROJECT_CHECK));
190 addPage(mKeystoreSelectionPage = mPages[1] = new KeystoreSelectionPage(this,
192 addPage(mKeyCreationPage = mPages[2] = new KeyCreationPage(this, PAGE_KEY_CREATION));
193 addPage(mKeySelectionPage = mPages[3] = new KeySelectionPage(this, PAGE_KEY_SELECTION));
194 addPage(mKeyCheckPage = mPages[4] = new KeyCheckPage(this, PAGE_KEY_CHECK));
513 for (ExportWizardPage page : mPages) {

Completed in 181 milliseconds