Searched refs:mTopActivityLocusId (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/ |
D | ShellTaskOrganizerTests.java | 523 task1.mTopActivityLocusId = new LocusId("10"); in testAddLocusListener() 527 task2.mTopActivityLocusId = new LocusId("20"); in testAddLocusListener() 540 assertEquals(listener.visibleLocusTasks.get(task1.taskId), task1.mTopActivityLocusId); in testAddLocusListener() 541 assertEquals(listener.visibleLocusTasks.get(task2.taskId), task2.mTopActivityLocusId); in testAddLocusListener() 551 task1.mTopActivityLocusId = new LocusId("10"); in testLocusListener_appearVanish() 556 assertEquals(listener.visibleLocusTasks.get(task1.taskId), task1.mTopActivityLocusId); in testLocusListener_appearVanish() 561 assertEquals(listener.invisibleLocusTasks.get(task1.taskId), task1.mTopActivityLocusId); in testLocusListener_appearVanish() 574 task1.mTopActivityLocusId = new LocusId("10"); in testLocusListener_infoChanged() 577 assertEquals(listener.visibleLocusTasks.get(task1.taskId), task1.mTopActivityLocusId); in testLocusListener_infoChanged() 579 LocusId prevLocus = task1.mTopActivityLocusId; in testLocusListener_infoChanged() [all …]
|
/frameworks/base/core/java/android/app/ |
D | TaskInfo.java | 143 public LocusId mTopActivityLocusId; field in TaskInfo 428 && Objects.equals(mTopActivityLocusId, that.mTopActivityLocusId) in equalsForTaskOrganizer() 498 mTopActivityLocusId = source.readTypedObject(LocusId.CREATOR); in readFromParcel() 545 dest.writeTypedObject(mTopActivityLocusId, flags); in writeToParcel() 582 + " locusId=" + mTopActivityLocusId in toString()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/ |
D | ShellTaskOrganizer.java | 667 final boolean sameLocus = Objects.equals(prevLocus, taskInfo.mTopActivityLocusId); in notifyLocusVisibilityIfNeeded() 670 if (taskInfo.mTopActivityLocusId != null && taskInfo.isVisible) { in notifyLocusVisibilityIfNeeded() 671 mVisibleTasksWithLocusId.put(taskId, taskInfo.mTopActivityLocusId); in notifyLocusVisibilityIfNeeded() 672 notifyLocusIdChange(taskId, taskInfo.mTopActivityLocusId, true /* visible */); in notifyLocusVisibilityIfNeeded() 677 notifyLocusIdChange(taskId, taskInfo.mTopActivityLocusId, false /* visible */); in notifyLocusVisibilityIfNeeded() 681 mVisibleTasksWithLocusId.put(taskId, taskInfo.mTopActivityLocusId); in notifyLocusVisibilityIfNeeded() 683 notifyLocusIdChange(taskId, taskInfo.mTopActivityLocusId, true /* visible */); in notifyLocusVisibilityIfNeeded()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | Task.java | 3442 info.mTopActivityLocusId = top != null ? top.getLocusId() : null;
|