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

  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewWithDraggableItems.java 151 final View currentPage = getPageAt(mCurrentPage);
152 if (currentPage != null) {
153 currentPage.cancelLongPress();
PagedView.java 300 void setCurrentPage(int currentPage) {
304 // don't introduce any checks like mCurrentPage == currentPage here-- if we change the
310 mCurrentPage = Math.max(0, Math.min(currentPage, getPageCount() - 1));
868 final View currentPage = getPageAt(mCurrentPage);
869 currentPage.cancelLongPress();
    [all...]
Folder.java 795 CellLayout currentPage = mLauncher.getWorkspace().getCurrentDropLayout();
796 CellLayoutChildren boundingLayout = currentPage.getChildrenLayout();
    [all...]
Workspace.java 630 final CellLayout currentPage = (CellLayout) getChildAt(mCurrentPage);
631 if (!currentPage.lastDownOnOccupiedCell()) {
    [all...]
AppsCustomizePagedView.java 293 int currentPage = getCurrentPage();
294 if (currentPage < mNumAppsPages) {
295 PagedViewCellLayout layout = (PagedViewCellLayout) getPageAt(currentPage);
300 i = (currentPage * numItemsPerPage) + (childCount / 2);
304 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(currentPage);
309 ((currentPage - mNumAppsPages) * numItemsPerPage) + (childCount / 2);
705 private void updateCurrentTab(int currentPage) {
710 if (currentPage >= mNumAppsPages &&
713 } else if (currentPage < mNumAppsPages &&
    [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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditor.java 276 int currentPage = getActivePage();
295 selectDefaultPage(Integer.toString(currentPage));
  /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 382 IPage currentPage = pbv.getCurrentPage();
383 if (currentPage instanceof OutlinePage) {
385 if (canvas != null && canvas.getOutlinePage() != currentPage) {
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 

Completed in 302 milliseconds