Searched defs:page (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Browser/tests/src/com/android/browser/
H A DPopularUrlsTest.java303 Log.w(TAG, "page timeout. trying to stop.");
304 // try to stop page load
321 private int page; field in class:PopularUrlsTest.RunStatus
333 page = 0;
345 page = Integer.parseInt(line);
380 output.write(page + newLine);
398 page = 0;
402 ++page;
411 return page;
433 * @param clearCache determines whether the cache is cleared before loading each page
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DParser.java57 // Where tags start in a page
71 // The current tag table (i.e. the tag table for the current page)
92 // The current page
93 public int page; field in class:Parser
156 String[] page = pages[i];
157 if (page.length > 0) {
158 tagTables[i] = page;
293 * looking for it, generate an EodException. The tag returned consists of the page number
302 // Lose the page information
305 // If we're a start, set tag to include the page an
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAppsCustomizePagedView.java92 page = p;
102 page = p;
129 int page; field in class:AsyncTaskPageData
144 page = p;
157 // All the widget previews are loaded, so we can just callback to inflate the page
168 // The page that this async task is associated with
170 int page; field in class:AppsCustomizeAsyncTask
233 * The Apps/Customize page that displays all the applications, widgets, and shortcuts.
384 /** Returns the item index of the center item on this page so that we can restore to this
412 /** Get the index of the item to restore to if we need to restore the current page
1057 syncAppsPageItems(int page, boolean immediate) argument
1092 getWidgetPageLoadPriority(int page) argument
1116 getThreadPriorityForPage(int page) argument
1127 getSleepForPage(int page) argument
1134 prepareLoadWidgetPreviewsTask(int page, ArrayList<Object> widgets, int cellWidth, int cellHeight, int cellCountX) argument
1379 syncWidgetPageItems(final int page, final boolean immediate) argument
1578 syncPageItems(int page, boolean immediate) argument
1868 getAssociatedLowerPageBound(int page) argument
1874 getAssociatedUpperPageBound(int page) argument
[all...]
H A DPagedView.java59 // the min drag distance for a fling to register, to prevent random page shifts
70 // The page is moved more than halfway, automatically move to the next page on touch up.
162 // to switch to a new page
270 * Returns the index of the currently displayed page.
272 * @return The index of the currently displayed page.
294 * Updates the scroll of the current page immediately to its final scroll position. We use this
296 * the previous tab page.
308 * Sets the current page.
361 * Registers the specified listener on each page containe
1086 getScrollProgress(int screenCenter, View v, int page) argument
1610 loadAssociatedPages(int page) argument
1613 loadAssociatedPages(int page, boolean immediateAndOnly) argument
1647 getAssociatedLowerPageBound(int page) argument
1650 getAssociatedUpperPageBound(int page) argument
1667 syncPageItems(int page, boolean immediate) argument
[all...]
H A DWorkspace.java70 * Each page contains a number of icons, folders or widgets the user can
170 /** Is the user is dragging an item near the edge of a page? */
587 * Check if the point (x, y) hits a given page.
590 final View page = getChildAt(index);
591 if (page != null) {
593 mapPointFromSelfToChild(page, localXY);
594 return (localXY[0] >= 0 && localXY[0] < page.getWidth()
595 && localXY[1] >= 0 && localXY[1] < page.getHeight());
603 // Calculating "next page" this way ensures that you scroll to whatever page yo
964 computeWallpaperScrollRatio(int page) argument
3752 syncPageItems(int page, boolean immediate) argument
[all...]

Completed in 105 milliseconds