Home
last modified time | relevance | path

Searched refs:NotificationViewWrapper (Results 1 – 15 of 15) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentViewTest.kt37 import com.android.systemui.statusbar.notification.row.wrapper.NotificationViewWrapper
324 val mockContracted = mock<NotificationViewWrapper>()
325 val mockExpanded = mock<NotificationViewWrapper>()
326 val mockHeadsUp = mock<NotificationViewWrapper>()
354 val mockContracted = mock<NotificationViewWrapper>()
355 val mockExpanded = mock<NotificationViewWrapper>()
356 val mockHeadsUp = mock<NotificationViewWrapper>()
384 val mockContracted = mock<NotificationViewWrapper>()
385 val mockExpanded = mock<NotificationViewWrapper>()
386 val mockHeadsUp = mock<NotificationViewWrapper>()
H A DExpandableNotificationRowTest.java69 import com.android.systemui.statusbar.notification.row.wrapper.NotificationViewWrapper;
735 NotificationViewWrapper mockViewWrapper = mock(NotificationViewWrapper.class); in testSetIconAnimationRunningGroup_Run()
740 NotificationViewWrapper mockLowPriorityViewWrapper = mock(NotificationViewWrapper.class); in testSetIconAnimationRunningGroup_Run()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/wrapper/
H A DNotificationBigPictureTemplateViewWrapperTest.java68 NotificationViewWrapper wrapper = new NotificationBigPictureTemplateViewWrapper( in invalidLargeIconBig_noCrash()
86 NotificationViewWrapper wrapper = new NotificationBigPictureTemplateViewWrapper(mContext, in setAnimationsRunning_Run()
103 NotificationViewWrapper wrapper = new NotificationBigPictureTemplateViewWrapper(mContext, in setAnimationsRunning_Stop()
H A DNotificationMessagingTemplateViewWrapperTest.kt62 val wrapper: NotificationViewWrapper =
77 val wrapper: NotificationViewWrapper =
H A DNotificationConversationTemplateViewWrapperTest.kt66 val wrapper: NotificationViewWrapper =
85 val wrapper: NotificationViewWrapper =
H A DNotificationCustomViewWrapperTest.java58 NotificationViewWrapper wrap = NotificationCustomViewWrapper.wrap(mContext, v, mRow); in testBackgroundPersists()
H A DNotificationViewWrapperTest.java72 static class TestableNotificationViewWrapper extends NotificationViewWrapper {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentView.java118 private NotificationViewWrapper mContractedWrapper;
119 private NotificationViewWrapper mExpandedWrapper;
120 private NotificationViewWrapper mHeadsUpWrapper;
422 private NotificationViewWrapper getWrapperForView(View child) { in getWrapperForView()
478 mExpandedWrapper = NotificationViewWrapper.wrap(getContext(), child, in setExpandedChild()
528 mHeadsUpWrapper = NotificationViewWrapper.wrap(getContext(), child, in setHeadsUpChild()
610 NotificationViewWrapper wrapper = getVisibleWrapper(mVisibleType); in setContentHeight()
788 NotificationViewWrapper viewWrapper = getWrapperForView(view); in getViewHeight()
1062 public NotificationViewWrapper getVisibleWrapper() { in getVisibleWrapper()
1066 public NotificationViewWrapper getVisibleWrapper(int visibleType) { in getVisibleWrapper()
[all …]
H A DExpandableNotificationRow.java103 import com.android.systemui.statusbar.notification.row.wrapper.NotificationViewWrapper;
454 NotificationViewWrapper viewWrapper = mChildrenContainer.getNotificationViewWrapper(); in setAnimationRunning()
458 NotificationViewWrapper lowPriWrapper = mChildrenContainer.getLowPriorityViewWrapper(); in setAnimationRunning()
731 NotificationViewWrapper headsUpWrapper = layout.getVisibleWrapper( in updateLimitsForView()
1151 public NotificationViewWrapper getNotificationViewWrapper() {
1162 public NotificationViewWrapper getVisibleNotificationViewWrapper() {
2655 NotificationViewWrapper wrapper = mChildrenContainer.getNotificationViewWrapper();
2783 NotificationViewWrapper wrapper = getVisibleNotificationViewWrapper();
3330 NotificationViewWrapper wrapper = getVisibleNotificationViewWrapper();
H A DNotificationContentInflater.java53 import com.android.systemui.statusbar.notification.row.wrapper.NotificationViewWrapper;
522 NotificationViewWrapper existingWrapper, in applyRemoteView()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationChildrenContainer.java59 import com.android.systemui.statusbar.notification.row.wrapper.NotificationViewWrapper;
402 (NotificationHeaderViewWrapper) NotificationViewWrapper.wrap(
441 (NotificationHeaderViewWrapper) NotificationViewWrapper.wrap(
467 private void setExpandButtonNumber(NotificationViewWrapper wrapper) {
1014 public NotificationViewWrapper getNotificationViewWrapper() {
1018 public NotificationViewWrapper getLowPriorityViewWrapper() {
1040 NotificationViewWrapper visibleWrapper = getWrapperForView(desiredHeader);
1041 NotificationViewWrapper hiddenWrapper = getWrapperForView(currentHeader);
1057 NotificationViewWrapper wrapper = getWrapperForView(currentHeader);
1126 private NotificationViewWrapper getWrapperForView(View visibleHeader) {
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
H A DNotificationViewWrapper.java53 public abstract class NotificationViewWrapper implements TransformableView { class
61 public static NotificationViewWrapper wrap(Context ctx, View v, ExpandableNotificationRow row) { in wrap()
91 protected NotificationViewWrapper(Context ctx, View view, ExpandableNotificationRow row) { in NotificationViewWrapper() method in NotificationViewWrapper
H A DNotificationCustomViewWrapper.java31 public class NotificationCustomViewWrapper extends NotificationViewWrapper {
H A DNotificationHeaderViewWrapper.java56 public class NotificationHeaderViewWrapper extends NotificationViewWrapper implements Roundable {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java87 import com.android.systemui.statusbar.notification.row.wrapper.NotificationViewWrapper;
147 private NotificationViewWrapper mWrapper;
776 public void setWrapper(NotificationViewWrapper wrapper) { in setWrapper()