Home
last modified time | relevance | path

Searched refs:NoteTaskBubbleExpandBehavior (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/notetask/
DNoteTaskBubbleExpandBehavior.kt22 enum class NoteTaskBubbleExpandBehavior : Parcelable { class
43 companion object CREATOR : Parcelable.Creator<NoteTaskBubbleExpandBehavior> {
44 override fun createFromParcel(parcel: Parcel?): NoteTaskBubbleExpandBehavior { in createFromParcel()
48 override fun newArray(size: Int) = arrayOfNulls<NoteTaskBubbleExpandBehavior>(size)
DINoteTaskBubblesService.aidl19 import com.android.systemui.notetask.NoteTaskBubbleExpandBehavior;
30 in NoteTaskBubbleExpandBehavior bubbleExpandBehavior); in showOrHideNoteBubble()
DNoteTaskInfo.kt35 NoteTaskLaunchMode.AppBubble(NoteTaskBubbleExpandBehavior.KEEP_IF_EXPANDED)
37 NoteTaskLaunchMode.AppBubble(NoteTaskBubbleExpandBehavior.DEFAULT)
DNoteTaskBubblesController.kt84 bubbleExpandBehavior: NoteTaskBubbleExpandBehavior, in <lambda>()
126 bubbleExpandBehavior: NoteTaskBubbleExpandBehavior, in <lambda>()
132 NoteTaskBubbleExpandBehavior.KEEP_IF_EXPANDED && in <lambda>()
DNoteTaskBubbleExpandBehavior.aidl3 parcelable NoteTaskBubbleExpandBehavior;
DNoteTaskLaunchMode.kt29 data class AppBubble(val bubbleExpandBehavior: NoteTaskBubbleExpandBehavior) :
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/notetask/
DFakeNoteTaskBubbleController.kt45 bubbleExpandBehavior: NoteTaskBubbleExpandBehavior, in <lambda>()
50 bubbleExpandBehavior == NoteTaskBubbleExpandBehavior.KEEP_IF_EXPANDED && in <lambda>()
DNoteTaskBubblesServiceTest.kt71 val bubbleExpandBehavior = NoteTaskBubbleExpandBehavior.DEFAULT in showOrHideNoteBubble_defaultExpandBehavior_shouldCallBubblesApi()
84 val bubbleExpandBehavior = NoteTaskBubbleExpandBehavior.KEEP_IF_EXPANDED in showOrHideNoteBubble_keepIfExpanded_bubbleShown_shouldNotCallBubblesApi()
97 val bubbleExpandBehavior = NoteTaskBubbleExpandBehavior.KEEP_IF_EXPANDED in showOrHideNoteBubble_keepIfExpanded_bubbleNotShown_shouldCallBubblesApi()
DNoteTaskInfoTest.kt52 .isEqualTo(NoteTaskLaunchMode.AppBubble(NoteTaskBubbleExpandBehavior.DEFAULT)) in launchMode_keyguardUnlocked_launchModeAppBubble_withDefaultExpandBehavior()
60 .isEqualTo(NoteTaskLaunchMode.AppBubble(NoteTaskBubbleExpandBehavior.KEEP_IF_EXPANDED)) in launchMode_keyguardUnlocked_qsTileEntryPoint_launchModeAppBubble_withKeepIfExpandedExpandBehavior()