Searched refs:addBubbles (Results 1 – 4 of 4) sorted by relevance
73 repository.addBubbles(user0.identifier, user0bubbles) in testAddBubbles()74 repository.addBubbles(user11.identifier, user11bubbles) in testAddBubbles()93 repository.addBubbles(user0.identifier, listOf(bubble1)) in testAddBubbles()96 repository.addBubbles(user11.identifier, listOf(bubble12)) in testAddBubbles()104 repository.addBubbles(user0.identifier, user0bubbles) in testRemoveBubbles()105 repository.addBubbles(user11.identifier, user11bubbles) in testRemoveBubbles()126 repository.addBubbles(user0.identifier, user0bubbles) in testAddAndRemoveBubblesWhenExceedingCapacity()136 repository.addBubbles(user0.identifier, listOf(bubble1)) in testAddAndRemoveBubblesWhenExceedingCapacity()148 repository.addBubbles(user0.identifier, listOf(bubble)) in testAddBubbleMatchesByKey()154 repository.addBubbles(user0.identifier, listOf(bubbleModified)) in testAddBubbleMatchesByKey()[all …]
63 fun addBubble(@UserIdInt userId: Int, bubble: Bubble) = addBubbles(userId, listOf(bubble)) in <lambda>()69 fun addBubbles(@UserIdInt userId: Int, bubbles: List<Bubble>) { in <lambda>() method72 b -> volatileRepository.addBubbles(userId, b) } in <lambda>()214 volatileRepository.addBubbles(userId, entities) in <lambda>()
2074 mDataRepository.addBubbles(mCurrentUserId, update.bubbles);
78 fun addBubbles(userId: Int, bubbles: List<BubbleEntity>) { in <lambda>() method in com.android.wm.shell.bubbles.storage.BubbleVolatileRepository