Home
last modified time | relevance | path

Searched refs:removeBubbles (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleDataRepository.kt79 fun removeBubbles(@UserIdInt userId: Int, bubbles: List<Bubble>) { in <lambda>() method in com.android.wm.shell.bubbles.BubbleDataRepository
82 b -> volatileRepository.removeBubbles(userId, b) } in <lambda>()
DBubbleController.java2050 mDataRepository.removeBubbles(mCurrentUserId, bubblesToBeRemovedFromRepository);
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/storage/
DBubbleVolatileRepository.kt99 fun removeBubbles(@UserIdInt userId: Int, bubbles: List<BubbleEntity>) = in <lambda>() method
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/storage/
DBubbleVolatileRepositoryTest.kt107 repository.removeBubbles(user0.identifier, listOf(bubble3)) in testRemoveBubbles()
115 repository.removeBubbles(user11.identifier, listOf(bubble12)) in testRemoveBubbles()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DBubblesTest.java1339 verify(mDataRepository, atLeastOnce()).removeBubbles(anyInt(), mBubbleListCaptor.capture()); in testDeleteShortcutsDeletesXml()