HomeSort by relevance Sort by last modified time
    Searched defs:currentPage (Results 1 - 25 of 33) sorted by null

1 2

  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewWithDraggableItems.java 153 final View currentPage = getPageAt(mCurrentPage);
154 if (currentPage != null) {
155 currentPage.cancelLongPress();
PagedView.java 310 void setCurrentPage(int currentPage) {
314 // don't introduce any checks like mCurrentPage == currentPage here-- if we change the
321 mCurrentPage = Math.max(0, Math.min(currentPage, getPageCount() - 1));
    [all...]
Folder.java 815 int currentPage = mLauncher.getWorkspace().getCurrentPage();
818 mLauncher.getWorkspace().setFinalScrollForPageChange(currentPage);
820 CellLayout currentLayout = (CellLayout) mLauncher.getWorkspace().getChildAt(currentPage);
825 mLauncher.getWorkspace().resetFinalScrollForPageChange(currentPage);
    [all...]
Workspace.java 665 final CellLayout currentPage = (CellLayout) getChildAt(mCurrentPage);
666 if (!currentPage.lastDownOnOccupiedCell()) {
    [all...]
AppsCustomizePagedView.java 389 int currentPage = getCurrentPage();
390 if (currentPage < mNumAppsPages) {
391 PagedViewCellLayout layout = (PagedViewCellLayout) getPageAt(currentPage);
396 i = (currentPage * numItemsPerPage) + (childCount / 2);
400 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(currentPage);
405 ((currentPage - mNumAppsPages) * numItemsPerPage) + (childCount / 2);
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
StackBounds.cpp 205 static inline void* getLowerStackBound(char* currentPage, DWORD pageSize)
207 while (currentPage > 0) {
209 if (currentPage >= reinterpret_cast<char*>(pageSize))
210 currentPage -= pageSize;
212 currentPage = 0;
214 if (!isPageWritable(currentPage))
215 return currentPage + pageSize;
221 static inline void* getUpperStackBound(char* currentPage, DWORD pageSize)
225 currentPage += pageSize;
226 } while (isPageWritable(currentPage));
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ConversationDialogActivity.java 93 ConversationUtils.ConversationPage currentPage = conversation.pages.get(page);
94 CharSequence text = currentPage.text;
129 currentPage.text = spannedText.subSequence(lastPageStart, currentOffset);
133 newPage.imageResource = currentPage.imageResource;
135 newPage.title = currentPage.title;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorDelegate.java 326 int currentPage = getEditor().getActivePage();
346 getEditor().selectDefaultPage(Integer.toString(currentPage));
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
PinyinIME.java 514 int currentPage = mCandidatesContainer.getCurrentPage();
515 if (activePos < mDecInfo.getCurrentPageSize(currentPage)) {
517 + mDecInfo.getCurrentPageStart(currentPage);
598 int currentPage = mCandidatesContainer.getCurrentPage();
599 if (activePos < mDecInfo.getCurrentPageSize(currentPage)) {
601 + mDecInfo.getCurrentPageStart(currentPage);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 577 org.eclipse.ui.part.IPage currentPage = pbv.getCurrentPage();
578 if (currentPage instanceof OutlinePage) {
580 if (canvas != null && canvas.getOutlinePage() != currentPage) {
    [all...]
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /sdk/testapps/jarCheckTests1/app/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests2/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests2/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests3/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/javaProjectTest/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/javaProjectTest/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/libsAndJarTest/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/libsAndJarTest/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar 
  /development/samples/training/basic/FragmentBasics/libs/
android-support-v4.jar 
  /development/samples/training/bitmapfun/libs/
android-support-v4.jar 
  /development/samples/training/location-aware/libs/
android-support-v4.jar 

Completed in 967 milliseconds

1 2