HomeSort by relevance Sort by last modified time
    Searched refs:Workspace (Results 26 - 50 of 53) sorted by null

12 3

  /packages/apps/Launcher2/src/com/android/launcher2/
AppWidgetResizeFrame.java 22 private Workspace mWorkspace;
85 mWorkspace = (Workspace) dragLayer.findViewById(R.id.workspace);
351 Rect landMetrics = Workspace.getCellLayoutMetrics(launcher, CellLayout.LANDSCAPE);
352 Rect portMetrics = Workspace.getCellLayoutMetrics(launcher, CellLayout.PORTRAIT);
FolderIcon.java 49 * An icon that can appear on in the workspace representing an {@link UserFolder}.
119 final Workspace workspace = (Workspace) cellLayout.getParent(); local
120 return !workspace.isSmall();
374 Workspace workspace = mLauncher.getWorkspace(); local
376 workspace.setFinalTransitionTransform((CellLayout) getParent().getParent());
385 workspace.resetTransitionTransform((CellLayout) getParent().getParent());
DeleteDropTarget.java 109 return (d.dragSource instanceof Workspace) || (d.dragSource instanceof Folder);
118 return (d.dragSource instanceof Workspace) && (d.dragInfo instanceof FolderInfo);
236 // Remove the folder from the workspace and delete the contents from launcher model
241 // Remove the widget from the workspace
FocusHelper.java 34 * A keyboard listener we set on all the workspace icons.
43 * A keyboard listener we set on all the workspace icons.
491 * Handles key events in the workspace hotseat (bottom of the screen).
496 final Workspace workspace = (Workspace) launcher.findViewById(R.id.workspace); local
499 final int pageIndex = workspace.getCurrentPage();
515 workspace.snapToPage(pageIndex - 1);
526 workspace.snapToPage(pageIndex + 1)
667 final Workspace workspace = (Workspace) layout.getParent(); local
    [all...]
Launcher.java 195 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
196 private State mState = State.WORKSPACE;
209 // How long to wait before the new-shortcut animation automatically pans the workspace
218 private Workspace mWorkspace;
246 // scroll issues (because the workspace may not have been measured yet) and extra work.
600 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
601 // that is subsequently removed from the workspace in startBinding().
645 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
647 // return to the workspace. Clearing mAddInfo.container here fixes this issue
728 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION
3461 final Workspace workspace = mWorkspace; local
3495 Workspace workspace = mWorkspace; local
3576 final Workspace workspace = mWorkspace; local
    [all...]
AppsCustomizePagedView.java 198 Workspace.ZInterpolator mZInterpolator = new Workspace.ZInterpolator(0.5f);
456 // Ensure that all widgets we show can be added on a workspace of this size
879 Workspace workspace = (Workspace) target; local
    [all...]
DragLayer.java 82 * @param attrs The attributes set containing the Workspace's customization values.
87 // Disable multitouch across the workspace/all apps/customize tray
508 toY -= scale * Workspace.DRAG_BITMAP_PADDING / 2;
563 * only used for the X dimension for the case of the workspace.
745 // This ensures that the workspace is drawn above the hotseat and qsb,
746 // except when the workspace is drawing a background gradient, in which
747 // case we want the workspace to stay behind these elements.
783 Workspace workspace = mLauncher.getWorkspace(); local
784 int width = workspace.getWidth()
    [all...]
Workspace.java 67 * The workspace is a wide area with a wallpaper and a finite number of pages.
69 * interact with. A workspace is meant to be used with a fixed width only.
71 public class Workspace extends SmoothPagedView
74 private static final String TAG = "Launcher.Workspace";
76 // Y rotation to apply to the workspace screens
206 // Variables relating to touch disambiguation (scrolling workspace vs. scrolling a widget)
232 // These variables are used for storing the initial and final values during workspace animations
264 * Used to inflate the Workspace from XML.
267 * @param attrs The attributes set containing the Workspace's customization values.
269 public Workspace(Context context, AttributeSet attrs)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
LauncherAccessibilityDelegate.java 38 import com.android.launcher3.Workspace;
166 Workspace workspace = mLauncher.getWorkspace();
167 workspace.snapToPage(workspace.getPageIndexForScreenId(screenId));
187 // Bind the item in next frame so that if a new workspace page was created,
354 Workspace workspace = mLauncher.getWorkspace(); local
356 Folder folder = workspace.getOpenFolder();
365 mDragSource = workspace;
401 Workspace workspace = mLauncher.getWorkspace(); local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsContainerView.java 49 import com.android.launcher3.Workspace;
490 // drop in Workspace
500 if (target instanceof Workspace) {
502 Workspace workspace = (Workspace) target; local
503 CellLayout layout = (CellLayout) workspace.getChildAt(currentScreen);
  /packages/apps/Launcher3/src/com/android/launcher3/
Launcher.java 212 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
214 @Thunk State mState = State.WORKSPACE;
224 // How long to wait before the new-shortcut animation automatically pans the workspace
234 @Thunk Workspace mWorkspace;
271 // scroll issues (because the workspace may not have been measured yet) and extra work.
553 // The underlying workspace and hotseat are temporarily suppressed by the search
647 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
648 // that is subsequently removed from the workspace in startBinding().
684 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
686 // return to the workspace. Clearing mAddInfo.container here fixes this issu
3884 Workspace workspace = mWorkspace; local
    [all...]
DragLayer.java 102 * @param attrs The attributes set containing the Workspace's customization values.
107 // Disable multitouch across the workspace/all apps/customize tray
596 // Account for the source scale of the icon (ie. from AllApps to Workspace, in which
597 // the workspace may have smaller icon bounds).
613 toY -= scale * Workspace.DRAG_BITMAP_PADDING / 2;
668 * only used for the X dimension for the case of the workspace.
871 Workspace workspace = mLauncher.getWorkspace(); local
895 Workspace workspace = mLauncher.getWorkspace(); local
    [all...]
AppWidgetResizeFrame.java 364 Rect landMetrics = Workspace.getCellLayoutMetrics(launcher, CellLayout.LANDSCAPE);
365 Rect portMetrics = Workspace.getCellLayoutMetrics(launcher, CellLayout.PORTRAIT);
FolderIcon.java 51 * An icon that can appear on in the workspace representing an {@link UserFolder}.
139 final Workspace workspace = (Workspace) cellLayout.getParent(); local
140 return !workspace.workspaceInModalState();
356 // Workspace#onDropExternal.
436 Workspace workspace = mLauncher.getWorkspace(); local
438 workspace.setFinalTransitionTransform((CellLayout) getParent().getParent());
447 workspace.resetTransitionTransform((CellLayout) getParent().getParent())
    [all...]
Workspace.java 86 * The workspace is a wide area with a wallpaper and a finite number of pages.
88 * interact with. A workspace is meant to be used with a fixed width only.
90 public class Workspace extends PagedView
94 private static final String TAG = "Launcher.Workspace";
243 // Variables relating to touch disambiguation (scrolling workspace vs. scrolling a widget)
286 // Handles workspace state transitions
299 * Used to inflate the Workspace from XML.
302 * @param attrs The attributes set containing the Workspace's customization values.
304 public Workspace(Context context, AttributeSet attrs) {
309 * Used to inflate the Workspace from XML
    [all...]
FolderPagedView.java 32 import com.android.launcher3.Workspace.ItemOperator;
Folder.java 58 import com.android.launcher3.Workspace.ItemOperator;
164 * Used to inflate the Workspace from XML.
167 * @param attrs The attributes set containing the Workspace's customization values.
345 * We need to handle touch events to prevent them from falling through to the workspace below.
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 53 private final Workspace workspace; field in class:ScreenViewer
76 ScreenViewer(Workspace workspace, IDevice device, int spacing) {
80 this.workspace = workspace;
666 workspace.beginTask();
780 workspace.endTask();
803 workspace.beginTask();
827 workspace.endTask()
    [all...]
Workspace.java 128 public class Workspace extends JFrame {
187 public Workspace() {
    [all...]
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.resources_3.10.0.v20150423-0755.jar 
  /external/guice/extensions/persist/lib/
hibernate-search.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /prebuilts/tools/common/m2/repository/biz/aQute/bndlib/1.50.0/
bndlib-1.50.0.jar 
  /external/guice/lib/build/
bnd-0.0.384.jar 

Completed in 1053 milliseconds

12 3