/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/preferences/ |
H A D | SearchableItemsFragment.java | 33 protected void handlePreferenceGroup(PreferenceGroup screen) { argument 34 getController().handlePreference(screen);
|
/packages/apps/Calendar/src/com/android/calendar/ |
H A D | OtherPreferences.java | 48 public boolean onPreferenceTreeClick(PreferenceScreen screen, Preference preference) { argument 55 return super.onPreferenceTreeClick(screen, preference);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
H A D | InstallShortcutReceiver.java | 43 int screen = Launcher.getScreen(); 45 if (!installShortcut(context, data, screen)) { 46 // The target screen is full, let's try the other screens 48 if (i != screen && installShortcut(context, data, i)) break; 53 private boolean installShortcut(Context context, Intent data, int screen) { argument 56 if (findEmptyCell(context, mCoordinates, screen)) { 69 LauncherSettings.Favorites.CONTAINER_DESKTOP, screen, mCoordinates[0], 92 private static boolean findEmptyCell(Context context, int[] xy, int screen) { argument 103 if (item.screen == screen) { [all...] |
H A D | ItemInfo.java | 55 * Iindicates the screen in which the shortcut appears. 57 int screen = -1; field in class:ItemInfo 98 screen = info.screen; 112 values.put(LauncherSettings.Favorites.SCREEN, screen); 160 + " screen=" + screen + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX
|
H A D | CellLayout.java | 106 // If we're actively dragging something over this screen, mIsDragOverlapping is true 266 // the padding extends outside the visible screen size, but it looked fine anyway. 277 // the padding extends outside the visible screen size, but it looked fine anyway. 562 // per workspace screen 643 mCellInfo.screen = ((ViewGroup) getParent()).indexOfChild(this); 1040 // If the item isn't fully on this screen, snap to the edges 1285 * @param ignoreView The home screen item we should treat as not occupying any space 1298 * @param ignoreView The home screen item we should treat as not occupying any space 1417 * screen, but it is re-parented before this method is called. 1806 // its spanX, spanY, and the screen i 1816 int screen; field in class:CellLayout.CellInfo [all...] |
H A D | LauncherModel.java | 103 // LauncherModel that are directly on the home screen (however, no widgets or shortcuts 197 * <container, screen, cellX, cellY> 200 int screen, int cellX, int cellY) { 203 addItemToDatabase(context, item, container, screen, cellX, cellY, false); 206 moveItemInDatabase(context, item, container, screen, cellX, cellY); 251 * Move an item in the DB to a new <container, screen, cellX, cellY> 254 final int screen, final int cellX, final int cellY) { 261 if (context instanceof Launcher && screen < 0 && 263 item.screen = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY); 265 item.screen 199 addOrMoveItemInDatabase(Context context, ItemInfo item, long container, int screen, int cellX, int cellY) argument 253 moveItemInDatabase(Context context, final ItemInfo item, final long container, final int screen, final int cellX, final int cellY) argument 413 addItemToDatabase(Context context, final ItemInfo item, final long container, final int screen, final int cellX, final int cellY, final boolean notify) argument 475 getCellLayoutChildId( long container, int screen, int localCellX, int localCellY, int spanX, int spanY) argument 1774 addShortcut(Context context, Intent data, long container, int screen, int cellX, int cellY, boolean notify) argument [all...] |
H A D | Launcher.java | 239 // Determines how long to wait after a rotation before restoring the screen orientation to 268 int screen; field in class:Launcher.PendingAddArguments 351 // On large interfaces, we want the screen to auto-rotate based on the current orientation 468 static void setScreen(int screen) { argument 470 sScreen = screen; 482 completeAddApplication(args.intent, args.container, args.screen, args.cellX, 489 completeAddShortcut(args.intent, args.container, args.screen, args.cellX, 498 completeAddAppWidget(appWidgetId, args.container, args.screen); 526 args.screen = mPendingAddInfo.screen; 837 completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) argument 869 completeAddShortcut(Intent data, long container, int screen, int cellX, int cellY) argument 951 completeAddAppWidget(final int appWidgetId, long container, int screen) argument 1473 processShortcutFromDrop(ComponentName componentName, long container, int screen, int[] cell, int[] loc) argument 1498 addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen, int[] cell, int[] loc) argument 1536 addFolder(CellLayout layout, long container, final int screen, int cellX, int cellY) argument 1982 getCellLayout(long container, int screen) argument [all...] |
H A D | Workspace.java | 439 * @return The open folder on the current screen, or null if there is none 460 * Adds the specified child in the specified screen. The position and dimension of 464 * @param screen The screen in which to add the child. 465 * @param x The X position of the child in the screen's grid. 466 * @param y The Y position of the child in the screen's grid. 470 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY) { argument 471 addInScreen(child, container, screen, x, y, spanX, spanY, false); 475 * Adds the specified child in the specified screen. The position and dimension of 479 * @param screen Th 486 addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY, boolean insert) argument 1989 addApplicationShortcut(ShortcutInfo info, CellLayout target, long container, int screen, int cellX, int cellY, boolean insertAtFirst, int intersectX, int intersectY) argument 2305 setFinalScrollForPageChange(int screen) argument 2318 resetFinalScrollForPageChange(int screen) argument [all...] |
/packages/apps/Settings/src/com/android/settings/wifi/ |
H A D | AdvancedWifiSettings.java | 139 public boolean onPreferenceTreeClick(PreferenceScreen screen, Preference preference) { argument 151 return super.onPreferenceTreeClick(screen, preference);
|
H A D | WifiSettings.java | 81 * other decorations specific to that screen. 380 public boolean onPreferenceTreeClick(PreferenceScreen screen, Preference preference) { argument 392 return super.onPreferenceTreeClick(screen, preference); 730 * Wifi setup screens, not in usual wifi settings screen.
|
/packages/apps/Launcher2/ |
H A D | print_db.py | 176 screen = row["screen"] variable 177 hotseat[screen] = row 187 screen = [] variable 192 screen.append(m) 193 screens.append(screen) 196 screen = screens[row["screen"]] variable 206 screen[j][k] = occupied 207 screen[cell [all...] |
/packages/apps/Settings/src/com/android/settings/inputmethod/ |
H A D | SpellCheckersSettings.java | 57 public boolean onPreferenceTreeClick(PreferenceScreen screen, Preference preference) { argument
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
H A D | DeviceProfilesSettings.java | 228 public boolean onPreferenceTreeClick(PreferenceScreen screen, Preference preference) { argument 236 return super.onPreferenceTreeClick(screen, preference);
|
/packages/apps/Settings/src/com/android/settings/wifi/p2p/ |
H A D | WifiP2pSettings.java | 261 public boolean onPreferenceTreeClick(PreferenceScreen screen, Preference preference) { argument 270 return super.onPreferenceTreeClick(screen, preference);
|
/packages/apps/Settings/src/com/android/settings/ |
H A D | TetherSettings.java | 553 public boolean onPreferenceTreeClick(PreferenceScreen screen, Preference preference) { argument 594 return super.onPreferenceTreeClick(screen, preference);
|
/packages/apps/Camera/src/com/android/camera/ |
H A D | VideoCamera.java | 553 // When the screen is unlocked, display rotation may change. Always 1084 // We're pausing, the screen is off and we already stopped 1494 PreferenceGroup screen) { 1497 CameraSettings.removePreferenceFromScreen(screen, 1502 CameraSettings.removePreferenceFromScreen(screen, 1505 return screen; 1493 filterPreferenceScreenByIntent( PreferenceGroup screen) argument
|