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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationChildrenContainer.java 27 import com.android.systemui.statusbar.ExpandableNotificationRow;
42 private final List<ExpandableNotificationRow> mChildren = new ArrayList<>();
159 public void addNotification(ExpandableNotificationRow row, int childIndex) {
172 public void removeNotification(ExpandableNotificationRow row) {
189 public List<ExpandableNotificationRow> getNotificationChildren() {
199 public boolean applyChildOrder(List<ExpandableNotificationRow> childOrder) {
205 ExpandableNotificationRow child = mChildren.get(i);
206 ExpandableNotificationRow desiredChild = childOrder.get(i);
217 ExpandableNotificationRow child = childOrder.get(i);
229 ExpandableNotificationRow child = mChildren.get(i)
    [all...]
StackScrollState.java 26 import com.android.systemui.statusbar.ExpandableNotificationRow;
64 if (child instanceof ExpandableNotificationRow) {
65 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
66 List<ExpandableNotificationRow> children =
69 for (ExpandableNotificationRow childRow : children) {
171 if (view instanceof ExpandableNotificationRow) {
172 ExpandableNotificationRow row = (ExpandableNotificationRow) view;
AmbientState.java 22 import com.android.systemui.statusbar.ExpandableNotificationRow;
162 ExpandableNotificationRow topHeadsUpEntry = getTopHeadsUpEntry();
183 public ExpandableNotificationRow getTopHeadsUpEntry() {
StackScrollAlgorithm.java 26 import com.android.systemui.statusbar.ExpandableNotificationRow;
183 if (v instanceof ExpandableNotificationRow) {
184 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
358 if (v instanceof ExpandableNotificationRow) {
359 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
362 List<ExpandableNotificationRow> children =
365 for (ExpandableNotificationRow childRow : children) {
413 ExpandableNotificationRow topHeadsUpEntry = ambientState.getTopHeadsUpEntry()
    [all...]
NotificationStackScrollLayout.java 43 import com.android.systemui.statusbar.ExpandableNotificationRow;
226 private HashSet<Pair<ExpandableNotificationRow, Boolean>> mHeadsUpChangeAnimations
233 private final ArrayList<Pair<ExpandableNotificationRow, Boolean>> mTmpList = new ArrayList<>();
587 if (v instanceof ExpandableNotificationRow) {
588 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
635 if (v instanceof ExpandableNotificationRow) {
636 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
643 if (v instanceof ExpandableNotificationRow) {
    [all...]
StackStateAnimator.java 29 import com.android.systemui.statusbar.ExpandableNotificationRow;
97 private ExpandableNotificationRow mChildExpandingView;
263 } else if (child instanceof ExpandableNotificationRow) {
264 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
HeadsUpTouchHelper.java 25 import com.android.systemui.statusbar.ExpandableNotificationRow;
45 private ExpandableNotificationRow mPickedChild;
88 if (child instanceof ExpandableNotificationRow) {
89 mPickedChild = (ExpandableNotificationRow) child;
NotificationGroupManager.java 22 import com.android.systemui.statusbar.ExpandableNotificationRow;
208 public ExpandableNotificationRow getGroupSummary(StatusBarNotification sbn) {
228 void onGroupExpansionChanged(ExpandableNotificationRow changedRow, boolean expanded);
PhoneStatusBar.java 122 import com.android.systemui.statusbar.ExpandableNotificationRow;
480 private ExpandableNotificationRow mDraggedDownRow;
581 private HashMap<ExpandableNotificationRow, List<ExpandableNotificationRow>> mTmpChildOrderMap
    [all...]
ScrimController.java 34 import com.android.systemui.statusbar.ExpandableNotificationRow;
382 public void onHeadsUpPinned(ExpandableNotificationRow headsUp) {
388 public void onHeadsUpUnPinned(ExpandableNotificationRow headsUp) {
NotificationPanelView.java 52 import com.android.systemui.statusbar.ExpandableNotificationRow;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableNotificationRow.java 46 public class ExpandableNotificationRow extends ActivatableNotificationView {
195 public void addChildNotification(ExpandableNotificationRow row) {
205 public void addChildNotification(ExpandableNotificationRow row, int childIndex) {
212 public void removeChildNotification(ExpandableNotificationRow row) {
223 public List<ExpandableNotificationRow> getNotificationChildren() {
233 public boolean applyChildOrder(List<ExpandableNotificationRow> childOrder) {
264 public ExpandableNotificationRow getViewAtPosition(float y) {
268 ExpandableNotificationRow view = mChildrenContainer.getViewAtPosition(y);
308 public ExpandableNotificationRow(Context context, AttributeSet attrs) {
    [all...]
BaseStatusBar.java 115 RecentsComponent.Callbacks, ExpandableNotificationRow.ExpansionLogger,
358 if (parent instanceof ExpandableNotificationRow) {
359 return ((ExpandableNotificationRow) parent).getStatusBarNotification().getKey();
    [all...]
NotificationData.java 50 public ExpandableNotificationRow row; // the outer expanded view
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
HeadsUpManager.java 34 import com.android.systemui.statusbar.ExpandableNotificationRow;
217 ExpandableNotificationRow row = headsUpEntry.entry.row;
379 ExpandableNotificationRow row = entry.entry.row;
626 void onHeadsUpPinned(ExpandableNotificationRow headsUp);
631 void onHeadsUpUnPinned(ExpandableNotificationRow headsUp);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ExpandHelper.java 36 import com.android.systemui.statusbar.ExpandableNotificationRow;
496 if (!(v instanceof ExpandableNotificationRow)) {

Completed in 461 milliseconds