Searched refs:currentBubbleList (Results 1 – 3 of 3) sorted by relevance
65 public List<BubbleInfo> currentBubbleList = new ArrayList<>(); field in BubbleBarUpdate91 currentBubbleList = parcel.readParcelableList(new ArrayList<>(), in BubbleBarUpdate()113 || !currentBubbleList.isEmpty() in anythingChanged()133 + " currentBubbleList=" + currentBubbleList in toString()159 parcel.writeParcelableList(currentBubbleList, flags); in writeToParcel()
1202 assertThat(update.currentBubbleList).hasSize(2); in test_getInitialStateForBubbleBar_includesInitialBubblesAndPosition()1203 assertThat(update.currentBubbleList.get(0).getKey()).isEqualTo(mEntryA2.getKey()); in test_getInitialStateForBubbleBar_includesInitialBubblesAndPosition()1204 assertThat(update.currentBubbleList.get(1).getKey()).isEqualTo(mEntryA1.getKey()); in test_getInitialStateForBubbleBar_includesInitialBubblesAndPosition()1218 assertThat(update.currentBubbleList).hasSize(2); in test_getInitialStateForBubbleBar_includesExpandedState()1219 assertThat(update.currentBubbleList.get(0).getKey()).isEqualTo(mEntryA2.getKey()); in test_getInitialStateForBubbleBar_includesExpandedState()1220 assertThat(update.currentBubbleList.get(1).getKey()).isEqualTo(mEntryA1.getKey()); in test_getInitialStateForBubbleBar_includesExpandedState()
175 bubbleBarUpdate.currentBubbleList.add(bubbles.get(i).asBubbleBarBubble()); in getInitialState()