HomeSort by relevance Sort by last modified time
    Searched defs:currentPage (Results 1 - 25 of 44) 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 340 void setCurrentPage(int currentPage) {
344 // don't introduce any checks like mCurrentPage == currentPage here-- if we change the
351 mCurrentPage = Math.max(0, Math.min(currentPage, getPageCount() - 1));
    [all...]
Folder.java 811 int currentPage = mLauncher.getWorkspace().getCurrentPage();
814 mLauncher.getWorkspace().setFinalScrollForPageChange(currentPage);
816 CellLayout currentLayout = (CellLayout) mLauncher.getWorkspace().getChildAt(currentPage);
821 mLauncher.getWorkspace().resetFinalScrollForPageChange(currentPage);
    [all...]
Workspace.java 661 final CellLayout currentPage = (CellLayout) getChildAt(mCurrentPage);
662 if (!currentPage.lastDownOnOccupiedCell()) {
    [all...]
AppsCustomizePagedView.java 296 int currentPage = getCurrentPage();
297 if (currentPage < mNumAppsPages) {
298 PagedViewCellLayout layout = (PagedViewCellLayout) getPageAt(currentPage);
303 i = (currentPage * numItemsPerPage) + (childCount / 2);
307 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(currentPage);
312 ((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 342 int currentPage = getEditor().getActivePage();
362 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 600 org.eclipse.ui.part.IPage currentPage = pbv.getCurrentPage();
601 if (currentPage instanceof OutlinePage) {
603 if (canvas != null && canvas.getOutlinePage() != currentPage) {
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
PagedView.java 438 void setCurrentPage(int currentPage) {
439 notifyPageSwitching(currentPage);
443 // don't introduce any checks like mCurrentPage == currentPage here-- if we change the
450 mCurrentPage = Math.max(0, Math.min(currentPage, getPageCount() - 1));
    [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 
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 
  /sdk/apps/NotificationStudio/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar 

Completed in 344 milliseconds

1 2