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...]
AutoInstallsLayout.java 119 private static final String ATTR_CONTAINER = "container";
223 * Parses container and screenId attribute from the current tag, and puts it in the out.
260 final long container = mTemp[0]; local
263 mValues.put(Favorites.CONTAINER, container);
280 container == Favorites.CONTAINER_DESKTOP) {
572 mValues.put(Favorites.CONTAINER, folderId);
603 copyInteger(myValues, childValues, Favorites.CONTAINER);
  /packages/apps/Launcher3/tests/src/com/android/launcher3/model/
LoaderCursorTest.java 31 import static com.android.launcher3.LauncherSettings.Favorites.CONTAINER;
76 _ID, CONTAINER, ITEM_TYPE, PROFILE_ID,
98 .add(CONTAINER, CONTAINER_DESKTOP);
226 long container, long screenId) {
232 info.container = container;
GridSizeMigrationTaskTest.java 103 "container=-101 and screen=" + screenId, null, null, null);
121 "container=-101", null, null, null);
335 "container=-100 and screen=" + screenId +
354 "container=-100", null, null, null);
364 private long addItem(int type, long screen, long container, int x, int y) throws Exception {
371 values.put(LauncherSettings.Favorites.CONTAINER, container);
  /packages/apps/Launcher3/src/com/android/launcher3/model/
ModelWriter.java 63 ItemInfo item, long container, long screenId, int cellX, int cellY) {
64 item.container = container;
69 if (container == Favorites.CONTAINER_HOTSEAT) {
79 * <container, screen, cellX, cellY>
82 long container, long screenId, int cellX, int cellY) {
83 if (item.container == ItemInfo.NO_ID) {
85 addItemToDatabase(item, container, screenId, cellX, cellY);
88 moveItemInDatabase(item, container, screenId, cellX, cellY);
103 modelShortcut.container == shortcut.container &
    [all...]
GridSizeMigrationTask.java 612 Favorites.CONTAINER + " = " + Favorites.CONTAINER_HOTSEAT, null, null, null);
682 Favorites.CONTAINER + " = " + Favorites.CONTAINER_DESKTOP
    [all...]
LoaderCursor.java 94 public long container; field in class:LoaderCursor
112 containerIndex = getColumnIndexOrThrow(LauncherSettings.Favorites.CONTAINER);
128 container = getInt(containerIndex);
355 return container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
356 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT;
362 * {@link ItemInfo#container}
369 info.container = container;
392 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
429 } else if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP)
    [all...]
  /prebuilts/tools/common/m2/repository/javax/annotation/jsr250-api/1.0/
jsr250-api-1.0.jar 
  /prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/
javax.annotation-api-1.2.jar 
  /packages/apps/Launcher3/src/com/android/launcher3/provider/
ImportDataTask.java 139 "profileId = ? AND container = -100 AND screen = ? AND cellY = 0",
160 // Get the items sorted by container, so that the folders are loaded
162 Favorites.CONTAINER)) {
168 final int containerIndex = c.getColumnIndexOrThrow(Favorites.CONTAINER);
189 int container = c.getInt(containerIndex); local
198 switch (container) {
221 if (!mValidFolders.get(container)) {
222 FileLog.d(TAG, String.format("Skipping item %d, type %d not in a valid folder %d", id, type, container));
264 if (container == Favorites.CONTAINER_HOTSEAT) {
277 values.put(Favorites.CONTAINER, container)
    [all...]
  /frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/processor/
CustomConverterProcessorTest.kt 52 val CONTAINER = JavaFileObjects.forSourceString("foo.bar.Container",
57 public class Container {}
262 return simpleRun(*((jfo.toList() + CONTAINER).toTypedArray())) { invocation ->
264 invocation.processingEnv.elementUtils.getTypeElement("foo.bar.Container"))
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
jaccess.jar 

Completed in 767 milliseconds

1 2