Home
last modified time | relevance | path

Searched refs:SingleLineViewModel (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/shared/
DNotificationContentModel.kt19 import com.android.systemui.statusbar.notification.row.ui.viewmodel.SingleLineViewModel
23 val singleLineViewModel: SingleLineViewModel? = null,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ui/viewbinder/
DSingleLineViewBinder.kt20 import com.android.systemui.statusbar.notification.row.ui.viewmodel.SingleLineViewModel
24 fun bind(viewModel: SingleLineViewModel?, view: HybridNotificationView?) { in bind()
DSingleLineConversationViewBinder.kt22 import com.android.systemui.statusbar.notification.row.ui.viewmodel.SingleLineViewModel
26 fun bind(viewModel: SingleLineViewModel, view: HybridNotificationView?) { in bind()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DSingleLineViewInflater.kt39 import com.android.systemui.statusbar.notification.row.ui.viewmodel.SingleLineViewModel
61 ): SingleLineViewModel { in inflateSingleLineViewModel()
63 return SingleLineViewModel(null, null, null) in inflateSingleLineViewModel()
70 return SingleLineViewModel( in inflateSingleLineViewModel()
103 return SingleLineViewModel( in inflateSingleLineViewModel()
DNotificationContentInflater.java62 import com.android.systemui.statusbar.notification.row.ui.viewmodel.SingleLineViewModel;
939 SingleLineViewModel viewModel = result.mInflatedSingleLineViewModel;
1349 SingleLineViewModel mInflatedSingleLineViewModel;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ui/viewmodel/
DSingleLineViewModel.kt31 data class SingleLineViewModel( dataClass
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DSingleLineViewInflaterTest.kt40 import com.android.systemui.statusbar.notification.row.ui.viewmodel.SingleLineViewModel in <lambda>()
102 assertEquals(SingleLineViewModel(CONTENT_TITLE, CONTENT_TEXT, null), singleLineViewModel) in <lambda>()
350 private fun Notification.makeSingleLineViewModel(type: NotificationType): SingleLineViewModel { in <lambda>()