HomeSort by relevance Sort by last modified time
    Searched full:iteminfo (Results 51 - 75 of 140) sorted by null

1 23 4 5 6

  /packages/apps/Launcher2/src/com/android/launcher2/
InfoDropTarget.java 86 if (d.dragInfo instanceof ItemInfo) {
87 user = ((ItemInfo) d.dragInfo).user;
FolderInfo.java 27 class FolderInfo extends ItemInfo {
LauncherAppWidgetInfo.java 27 class LauncherAppWidgetInfo extends ItemInfo {
PendingAddItemInfo.java 29 class PendingAddItemInfo extends ItemInfo {
InstallShortcutReceiver.java 90 byte[] iconByteArray = ItemInfo.flattenBitmap(info.icon);
250 final ArrayList<ItemInfo> items = LauncherModel.getItemsInLocalCoordinates(context);
278 private static boolean installShortcut(Context context, Intent data, ArrayList<ItemInfo> items,
336 private static boolean findEmptyCell(Context context, ArrayList<ItemInfo> items, int[] xy,
342 ItemInfo item = null;
  /packages/apps/Launcher3/src/com/android/launcher3/
BubbleTextView.java 219 private void applyIconAndLabel(Bitmap icon, ItemInfo info) {
241 LauncherModel.checkItemInfo((ItemInfo) tag);
445 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
521 public void applyBadgeState(ItemInfo itemInfo, boolean animate) {
524 mBadgeInfo = mLauncher.getPopupDataProvider().getBadgeInfoForItem(itemInfo);
DropTarget.java 50 public ItemInfo dragInfo = null;
53 public ItemInfo originalDragInfo = null;
Launcher.java 616 public int getViewIdForItem(ItemInfo info) {
787 if (resultCode == RESULT_OK && requestArgs.container != ItemInfo.NO_ID) {
    [all...]
Workspace.java 378 public int[] estimateItemSize(ItemInfo itemInfo, boolean springLoaded, boolean unscaledSize) {
384 boolean isWidget = itemInfo.itemType == LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
386 Rect r = estimateItemPosition(cl, 0, 0, itemInfo.spanX, itemInfo.spanY);
    [all...]
LauncherModel.java 142 public void bindItems(List<ItemInfo> shortcuts, boolean forceAnimateIcons);
149 ArrayList<ItemInfo> addNotAnimated,
150 ArrayList<ItemInfo> addAnimated);
154 public void bindRestoreItemsChange(HashSet<ItemInfo> updates);
197 Provider<List<Pair<ItemInfo, Object>>> appsProvider) {
206 final long itemId, final ItemInfo item, StackTraceElement[] stackTrace) {
207 ItemInfo modelItem = sBgDataModel.itemsIdMap.get(itemId);
234 "Error: ItemInfo passed to checkItemInfo doesn't match original";
243 static void checkItemInfo(final ItemInfo item) {
InstallShortcutReceiver.java 454 public Pair<ItemInfo, Object> getItemInfo() {
474 return Pair.create((ItemInfo) si, (Object) activityInfo);
478 return Pair.create((ItemInfo) si, (Object) shortcutInfo);
490 return Pair.create((ItemInfo) widgetInfo, (Object) providerInfo);
493 return Pair.create((ItemInfo) si, null);
604 private static class LazyShortcutsProvider extends Provider<List<Pair<ItemInfo, Object>>> {
619 public ArrayList<Pair<ItemInfo, Object>> get() {
621 ArrayList<Pair<ItemInfo, Object>> installQueue = new ArrayList<>();
  /frameworks/av/media/libstagefright/
ItemTable.cpp 938 // ItemInfo related boxes
940 struct ItemInfo {
949 status_t parse(off64_t offset, size_t size, ItemInfo *itemInfo);
981 status_t InfeBox::parse(off64_t offset, size_t size, ItemInfo *itemInfo) {
1049 itemInfo->itemId = item_id;
1050 itemInfo->itemType = item_type;
1085 IinfBox(const sp<DataSource> source, Vector<ItemInfo> *itemInfos) :
1097 Vector<ItemInfo> *mItemInfos
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/logging/
LoggerUtils.java 25 import com.android.launcher3.ItemInfo;
121 return (v.getTag() instanceof ItemInfo)
122 ? newItemTarget((ItemInfo) v.getTag())
126 public static Target newItemTarget(ItemInfo info) {
  /packages/apps/Launcher3/tests/src/com/android/launcher3/model/
LoaderCursorTest.java 15 import com.android.launcher3.ItemInfo;
225 private ItemInfo newItemInfo(int cellX, int cellY, int spanX, int spanY,
227 ItemInfo info = new ItemInfo();
BaseModelUpdateTaskTestCase.java 21 import com.android.launcher3.ItemInfo;
135 (ItemInfo) initItem(classMap.get(commands[1]), commands, 2), false);
  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationMainView.java 32 import com.android.launcher3.ItemInfo;
111 // Add a dummy ItemInfo so that logging populates the correct container and item types
113 setTag(new ItemInfo());
NotificationItemView.java 32 import com.android.launcher3.ItemInfo;
205 public void fillInLogContainerData(View v, ItemInfo info, LauncherLogProto.Target target,
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsContainerView.java 40 import com.android.launcher3.ItemInfo;
331 public void fillInLogContainerData(View v, ItemInfo info, Target target, Target targetParent) {
361 if (!(child instanceof BubbleTextView) || !(child.getTag() instanceof ItemInfo)) {
364 ItemInfo info = (ItemInfo) child.getTag();
  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsBottomSheet.java 37 import com.android.launcher3.ItemInfo;
69 private ItemInfo mOriginalItemInfo;
103 public void populateAndShow(ItemInfo itemInfo) {
104 mOriginalItemInfo = itemInfo;
  /packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
ShortcutsItemView.java 33 import com.android.launcher3.ItemInfo;
290 * Adds a {@link SystemShortcut.Widgets} item if there are widgets for the given ItemInfo.
293 ItemInfo itemInfo = (ItemInfo) originalIcon.getTag();
295 View.OnClickListener onClickListener = widgetInfo.getOnClickListener(mLauncher, itemInfo);
334 public void fillInLogContainerData(View v, ItemInfo info, LauncherLogProto.Target target,
  /packages/apps/Launcher3/src/com/android/launcher3/popup/
PopupPopulator.java 30 import com.android.launcher3.ItemInfo;
179 public static Runnable createUpdateRunnable(final Launcher launcher, final ItemInfo originalInfo,
281 private final ItemInfo mItemInfo;
284 SystemShortcut systemShortcut, Launcher launcher, ItemInfo originalInfo) {
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
PinItemDragListener.java 33 import com.android.launcher3.ItemInfo;
116 public void fillInLogContainerData(View v, ItemInfo info, LauncherLogProto.Target target,
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
DrawableFactory.java 34 import com.android.launcher3.ItemInfo;
67 public FastBitmapDrawable newIcon(Bitmap icon, ItemInfo info) {
  /packages/apps/Launcher3/tests/src/com/android/launcher3/ui/widget/
AddConfigWidgetTest.java 26 import com.android.launcher3.ItemInfo;
157 public boolean evaluate(ItemInfo info, View view) {
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
Folder.java 56 import com.android.launcher3.ItemInfo;
828 final ItemInfo item = d.dragInfo;
    [all...]

Completed in 301 milliseconds

1 23 4 5 6