HomeSort by relevance Sort by last modified time
    Searched refs:ExpandableNotificationRow (Results 1 - 25 of 49) sorted by null

1 2

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
VisibilityLocationProvider.java 19 import com.android.systemui.statusbar.ExpandableNotificationRow;
29 boolean isInVisibleLocation(ExpandableNotificationRow row);
AboveShelfObserver.java 23 import com.android.systemui.statusbar.ExpandableNotificationRow;
49 if (child instanceof ExpandableNotificationRow) {
50 if (((ExpandableNotificationRow) child).isAboveShelf()) {
NotificationBigPictureTemplateViewWrapper.java 26 import com.android.systemui.statusbar.ExpandableNotificationRow;
34 ExpandableNotificationRow row) {
39 public void onContentUpdated(ExpandableNotificationRow row) {
NotificationBigTextTemplateViewWrapper.java 24 import com.android.systemui.statusbar.ExpandableNotificationRow;
35 ExpandableNotificationRow row) {
44 public void onContentUpdated(ExpandableNotificationRow row) {
NotificationMediaTemplateViewWrapper.java 22 import com.android.systemui.statusbar.ExpandableNotificationRow;
31 ExpandableNotificationRow row) {
42 public void onContentUpdated(ExpandableNotificationRow row) {
RowInflaterTask.java 26 import com.android.systemui.statusbar.ExpandableNotificationRow;
30 * An inflater task that asynchronously inflates a ExpandableNotificationRow
58 mListener.onInflationFinished((ExpandableNotificationRow) view);
63 void onInflationFinished(ExpandableNotificationRow row);
NotificationMessagingTemplateViewWrapper.java 20 import com.android.systemui.statusbar.ExpandableNotificationRow;
39 ExpandableNotificationRow row) {
73 public void onContentUpdated(ExpandableNotificationRow row) {
NotificationViewWrapper.java 28 import com.android.systemui.statusbar.ExpandableNotificationRow;
38 protected final ExpandableNotificationRow mRow;
46 public static NotificationViewWrapper wrap(Context ctx, View v, ExpandableNotificationRow row) {
65 protected NotificationViewWrapper(Context ctx, View view, ExpandableNotificationRow row) {
96 public void onContentUpdated(ExpandableNotificationRow row) {
VisualStabilityManager.java 22 import com.android.systemui.statusbar.ExpandableNotificationRow;
112 public boolean canReorderNotification(ExpandableNotificationRow row) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
OnHeadsUpChangedListener.java 19 import com.android.systemui.statusbar.ExpandableNotificationRow;
36 default void onHeadsUpPinned(ExpandableNotificationRow headsUp) {}
41 default void onHeadsUpUnPinned(ExpandableNotificationRow headsUp) {}
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
AboveShelfObserverTest.java 27 import com.android.systemui.statusbar.ExpandableNotificationRow;
49 ExpandableNotificationRow row = mNotificationTestHelper.createRow();
60 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0);
68 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0);
77 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0);
79 row = (ExpandableNotificationRow) mHostLayout.getChildAt(1);
NotificationViewWrapperTest.java 26 import com.android.systemui.statusbar.ExpandableNotificationRow;
46 ExpandableNotificationRow row) {
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationTestHelper.java 39 * A helper class to create {@link ExpandableNotificationRow}
47 private ExpandableNotificationRow mRow;
57 public ExpandableNotificationRow createRow() throws Exception {
72 public ExpandableNotificationRow createRow(Notification notification) throws Exception {
76 mRow = (ExpandableNotificationRow) inflater.inflate(
80 ExpandableNotificationRow row = mRow;
96 public ExpandableNotificationRow createGroup() throws Exception {
97 ExpandableNotificationRow row = createRow();
ExpandableNotificationRowTest.java 41 private ExpandableNotificationRow mGroup;
89 ExpandableNotificationRow row = spy(mNotificationTestHelper.createRow());
97 ExpandableNotificationRow row = spy(mNotificationTestHelper.createRow());
104 ExpandableNotificationRow row = mNotificationTestHelper.createRow();
113 ExpandableNotificationRow row = mNotificationTestHelper.createRow();
122 ExpandableNotificationRow row = mNotificationTestHelper.createRow();
130 ExpandableNotificationRow row = mNotificationTestHelper.createRow();
NotificationContentViewTest.java 46 ExpandableNotificationRow row = new ExpandableNotificationRow(mContext, null);
47 ExpandableNotificationRow mockRow = spy(row);
NotificationCustomViewWrapperTest.java 39 private ExpandableNotificationRow mRow;
44 mRow = new ExpandableNotificationRow(mContext, null);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollState.java 24 import com.android.systemui.statusbar.ExpandableNotificationRow;
57 if (child instanceof ExpandableNotificationRow) {
58 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
59 List<ExpandableNotificationRow> children =
62 for (ExpandableNotificationRow childRow : children) {
StackScrollAlgorithm.java 27 import com.android.systemui.statusbar.ExpandableNotificationRow;
102 if (v instanceof ExpandableNotificationRow) {
103 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
145 boolean isHeadsUp = (child instanceof ExpandableNotificationRow)
146 && ((ExpandableNotificationRow) child).isPinned();
167 if (!(v instanceof ExpandableNotificationRow)) {
170 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
301 if (v instanceof ExpandableNotificationRow) {
    [all...]
AmbientState.java 24 import com.android.systemui.statusbar.ExpandableNotificationRow;
358 if (!(expandableView instanceof ExpandableNotificationRow)) {
361 ExpandableNotificationRow row = (ExpandableNotificationRow) expandableView;
369 if (view instanceof ExpandableNotificationRow) {
370 return isDozingAndNotPulsing((ExpandableNotificationRow) view);
378 public boolean isDozingAndNotPulsing(ExpandableNotificationRow row) {
NotificationStackScrollLayout.java 77 import com.android.systemui.statusbar.ExpandableNotificationRow;
276 private HashSet<Pair<ExpandableNotificationRow, Boolean>> mHeadsUpChangeAnimations
282 private final ArrayList<Pair<ExpandableNotificationRow, Boolean>> mTmpList = new ArrayList<>();
440 if (view instanceof ExpandableNotificationRow) {
441 ExpandableNotificationRow row = (ExpandableNotificationRow) view;
459 if (row instanceof ExpandableNotificationRow) {
461 ((ExpandableNotificationRow) row).getStatusBarNotification()
583 private void requestAnimationOnViewResize(ExpandableNotificationRow row) {
600 public boolean isInVisibleLocation(ExpandableNotificationRow row)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationHeaderUtil.java 41 public Object extractData(ExpandableNotificationRow row) {
89 private final ExpandableNotificationRow mRow;
93 public NotificationHeaderUtil(ExpandableNotificationRow row) {
135 List<ExpandableNotificationRow> notificationChildren = mRow.getNotificationChildren();
146 ExpandableNotificationRow row = notificationChildren.get(i);
154 ExpandableNotificationRow row = notificationChildren.get(i);
163 private void sanitizeHeaderViews(ExpandableNotificationRow row) {
230 public void restoreNotificationHeader(ExpandableNotificationRow row) {
241 private final ExpandableNotificationRow mParentRow;
247 public static HeaderProcessor forTextView(ExpandableNotificationRow row, int id)
    [all...]
ExpandableNotificationRow.java 85 public class ExpandableNotificationRow extends ActivatableNotificationView
175 private ExpandableNotificationRow mNotificationParent;
231 private static final Property<ExpandableNotificationRow, Float> TRANSLATE_CONTENT =
232 new FloatProperty<ExpandableNotificationRow>("translate") {
234 public void setValue(ExpandableNotificationRow object, float value) {
239 public Float get(ExpandableNotificationRow object) {
296 List<ExpandableNotificationRow> notificationChildren =
299 ExpandableNotificationRow child = notificationChildren.get(i);
501 public void addChildNotification(ExpandableNotificationRow row) {
511 public void addChildNotification(ExpandableNotificationRow row, int childIndex)
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
ExpandHelperTest.java 26 import com.android.systemui.statusbar.ExpandableNotificationRow;
41 private ExpandableNotificationRow mRow;
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/stack/
NotificationChildrenContainerTest.java 25 import com.android.systemui.statusbar.ExpandableNotificationRow;
37 private ExpandableNotificationRow mGroup;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
HeadsUpTouchHelper.java 24 import com.android.systemui.statusbar.ExpandableNotificationRow;
44 private ExpandableNotificationRow mPickedChild;
80 if (child instanceof ExpandableNotificationRow) {
81 mPickedChild = (ExpandableNotificationRow) child;

Completed in 3121 milliseconds

1 2