HomeSort by relevance Sort by last modified time
    Searched refs:CONTAINER (Results 1 - 25 of 35) sorted by null

1 2

  /external/ltp/testcases/kernel/containers/
README 21 CONTAINER TESTS AUTOMATION SUITE
34 The container test automation suite helps run the container functionality
TEST_PLAN.txt 26 PER-CONTAINER CAPABILITY/SECURITY TESTS (NEAR FUTURE)
  /packages/apps/Launcher3/protos/
launcher_dump.proto 27 CONTAINER = 2;
35 // For container types only
58 // Used to define what type of container a Target would represent.
launcher_log.proto 30 CONTAINER = 3;
35 // For container type and item type
42 // For container types only
73 // Used to define what type of container a Target would represent.
131 ENTRY = 2; // Indicates entry to one of Launcher container type target
140 // Log if the action was performed on outside of the container
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherSettings.java 127 * The container holding the favorite
130 static final String CONTAINER = "container";
139 * The screen holding the favorite (if container is CONTAINER_DESKTOP)
146 * (if container is CONTAINER_HOTSEAT or CONTAINER_HOTSEAT)
153 * (if container is CONTAINER_DESKTOP)
ItemInfo.java 56 * The id of the container that holds this item. For the desktop, this will be
61 long container = NO_ID; field in class:ItemInfo
132 container = info.container;
169 values.put(LauncherSettings.Favorites.CONTAINER, container);
219 return "Item(id=" + this.id + " type=" + this.itemType + " container=" + this.container
LauncherProvider.java 365 "container INTEGER," +
448 final int containerIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER);
467 values.put(LauncherSettings.Favorites.CONTAINER, c.getInt(containerIndex));
936 long container = LauncherSettings.Favorites.CONTAINER_DESKTOP; local
    [all...]
LauncherModel.java 267 * <container, screen, cellX, cellY>
269 static void addOrMoveItemInDatabase(Context context, ItemInfo item, long container,
271 if (item.container == ItemInfo.NO_ID) {
273 addItemToDatabase(context, item, container, screen, cellX, cellY, false);
276 moveItemInDatabase(context, item, container, screen, cellX, cellY);
292 modelShortcut.container == shortcut.container &&
351 if (item.container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
352 item.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
354 if (!sBgFolders.containsKey(item.container)) {
1334 int container; local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/logging/
UserEventDispatcher.java 84 * Implemented by containers to provide a container source for a given child.
137 * Fills in the container data on the given event if the given view is not null.
138 * @return whether container data was added.
141 // Fill in grid(x,y), pageIndex of the child and container type of the parent
153 newItemTarget(v), newTarget(Target.Type.CONTAINER));
172 newItemTarget(v), newTarget(Target.Type.CONTAINER));
191 * TODO: Make this function work when a container view is passed as the 2nd param.
195 newItemTarget(itemView), newTarget(Target.Type.CONTAINER));
199 // container view.
200 event.srcTarget[0].type = Target.Type.CONTAINER;
    [all...]
DumpTargetWrapper.java 96 dt.type = DumpTarget.Type.CONTAINER;
109 case LauncherDumpProto.DumpTarget.Type.CONTAINER:
LoggerUtils.java 92 case Target.Type.CONTAINER:
152 return newTarget(Target.Type.CONTAINER);
178 Target t = newTarget(Target.Type.CONTAINER);
  /packages/apps/Launcher3/src/com/android/launcher3/
ItemInfo.java 50 * The id of the container that holds this item. For the desktop, this will be
55 public long container = NO_ID; field in class:ItemInfo
58 * Indicates the screen in which the shortcut appears if the container types is
59 * {@link LauncherSettings.Favorites#CONTAINER_DESKTOP}. (i.e., ignore if the container type is
130 container = info.container;
150 .put(LauncherSettings.Favorites.CONTAINER, container)
161 container = values.getAsLong(LauncherSettings.Favorites.CONTAINER);
    [all...]
LauncherSettings.java 137 * The container holding the favorite
140 public static final String CONTAINER = "container";
148 static final String containerToString(int container) {
149 switch (container) {
152 default: return String.valueOf(container);
169 * The screen holding the favorite (if container is CONTAINER_DESKTOP)
176 * (if container is CONTAINER_HOTSEAT or CONTAINER_HOTSEAT)
183 * (if container is CONTAINER_DESKTOP)
266 "container INTEGER,"
    [all...]
LauncherProvider.java 437 // Select folders whose id do not match any container value.
441 LauncherSettings.Favorites.CONTAINER + " FROM "
679 // AND container = -100"
685 LauncherSettings.Favorites.CONTAINER + " = " +
690 // "DELETE FROM favorites WHERE container <> -100 AND container <> -101 AND container
694 LauncherSettings.Favorites.CONTAINER + " <> " +
697 + LauncherSettings.Favorites.CONTAINER + " <> " +
700 + LauncherSettings.Favorites.CONTAINER + " NOT IN (SELECT "
    [all...]