HomeSort by relevance Sort by last modified time
    Searched refs:supportsDrop (Results 1 - 7 of 7) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/
InfoDropTarget.java 66 protected boolean supportsDrop(DragSource source, Object info) {
67 return source.supportsAppInfoDropTarget() && supportsDrop(getContext(), info);
70 public static boolean supportsDrop(Context context, Object info) {
DeleteDropTarget.java 48 public static boolean supportsDrop(Object info) {
55 protected boolean supportsDrop(DragSource source, Object info) {
56 return source.supportsDeleteDropTarget() && supportsDrop(info);
UninstallDropTarget.java 35 protected boolean supportsDrop(DragSource source, Object info) {
36 return supportsDrop(getContext(), info);
40 public static boolean supportsDrop(Context context, Object info) {
ButtonDropTarget.java 194 mActive = supportsDrop(source, info);
206 return supportsDrop(dragObject.dragSource, dragObject.dragInfo);
209 protected abstract boolean supportsDrop(DragSource source, Object info);
DragController.java 467 if (!DeleteDropTarget.supportsDrop(mDragObject.dragInfo)) {
619 if (!DeleteDropTarget.supportsDrop(mDragObject.dragInfo)) {
FocusHelper.java 254 if (UninstallDropTarget.supportsDrop(launcher, itemInfo)) {
380 if (UninstallDropTarget.supportsDrop(launcher, itemInfo)) {
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
LauncherAccessibilityDelegate.java 99 if (DeleteDropTarget.supportsDrop(item)) {
102 if (UninstallDropTarget.supportsDrop(host.getContext(), item)) {
105 if (InfoDropTarget.supportsDrop(host.getContext(), item)) {

Completed in 1223 milliseconds