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

  /frameworks/native/libs/utils/
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/native/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));
  /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 111 milliseconds