/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
D | StackScrollState.java | 25 import com.android.systemui.statusbar.ExpandableView; 39 private WeakHashMap<ExpandableView, ExpandableViewState> mStateMap; 53 ExpandableView child = (ExpandableView) mHostView.getChildAt(i); in resetViewStates() 70 private void resetViewState(ExpandableView view) { in resetViewState() 105 ExpandableView child = (ExpandableView) mHostView.getChildAt(i); in apply()
|
D | StackScrollAlgorithm.java | 27 import com.android.systemui.statusbar.ExpandableView; 108 ExpandableView v = algorithmState.visibleChildren.get(i); in getNotificationChildrenStates() 146 ExpandableView child = algorithmState.visibleChildren.get(i); in updateClipping() 261 ExpandableView lastView = null; in initAlgorithmState() 271 ExpandableView v = (ExpandableView) hostView.getChildAt(i); in initAlgorithmState() 355 ExpandableView v) { in updateNotGoneIndex() 385 ExpandableView child = algorithmState.visibleChildren.get(i); in updateChild() 428 ExpandableView child) { 514 private void clampPositionToShelf(ExpandableView child, 536 if (child instanceof ExpandableView) { [all …]
|
D | NotificationStackScrollLayout.java | 86 import com.android.systemui.statusbar.ExpandableView; 123 ExpandableView.OnHeightChangedListener, NotificationGroupManager.OnGroupChangeListener, 219 private ExpandableView.OnHeightChangedListener mOnHeightChangedListener; 296 private HashSet<ExpandableView> mClearTransientViewsWhenFinished = new HashSet<>(); 328 private ArrayList<ExpandableView> mTmpSortedChildren = new ArrayList<>(); 354 private Comparator<ExpandableView> mViewPositionComparator = new Comparator<ExpandableView>() { 356 public int compare(ExpandableView view, ExpandableView otherView) { 638 private void notifyHeightChangeListener(ExpandableView view) { in notifyHeightChangeListener() 642 private void notifyHeightChangeListener(ExpandableView view, boolean needsAnimation) { in notifyHeightChangeListener() 770 ExpandableView child = (ExpandableView) getChildAt(i); in updateClippingToTopRoundedCorner() [all …]
|
D | ExpandableViewState.java | 28 import com.android.systemui.statusbar.ExpandableView; 145 if (view instanceof ExpandableView) { in applyToView() 146 ExpandableView expandableView = (ExpandableView) view; in applyToView() 195 if (!(child instanceof ExpandableView)) { in animateTo() 198 ExpandableView expandableView = (ExpandableView) child; in animateTo() 250 private void startHeightAnimation(final ExpandableView child, AnimationProperties properties) { in startHeightAnimation() 331 private void startShadowAlphaAnimation(final ExpandableView child, in startShadowAlphaAnimation() 394 private void startInsetAnimation(final ExpandableView child, AnimationProperties properties) { in startInsetAnimation() 460 public static int getFinalActualHeight(ExpandableView view) { in getFinalActualHeight()
|
D | StackStateAnimator.java | 30 import com.android.systemui.statusbar.ExpandableView; 84 private ArrayList<ExpandableView> mTransientViewsToRemove = new ArrayList<>(); 139 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in startAnimationForEvents() 160 private void initAnimationProperties(StackScrollState finalState, ExpandableView child, in initAnimationProperties() 179 private void adaptDurationWhenGoingToFullShade(ExpandableView child, in adaptDurationWhenGoingToFullShade() 195 private boolean applyWithoutAnimation(ExpandableView child, ExpandableViewState viewState, in applyWithoutAnimation() 219 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in findLastNotAddedIndex() 343 for (ExpandableView transientViewsToRemove : mTransientViewsToRemove) { in onAnimationFinished() 360 final ExpandableView changingView = (ExpandableView) event.changingView; in processAnimationEvents() 515 public static void removeTransientView(ExpandableView viewToRemove) { in removeTransientView()
|
D | AmbientState.java | 26 import com.android.systemui.statusbar.ExpandableView; 384 public boolean isAboveShelf(ExpandableView expandableView) { in isAboveShelf() 395 public boolean isDozingAndNotPulsing(ExpandableView view) { in isDozingAndNotPulsing()
|
D | ViewState.java | 30 import com.android.systemui.statusbar.ExpandableView; 220 if (!(view instanceof ExpandableView) || !((ExpandableView) view).willBeGone()) { in applyToView() 271 if (child instanceof ExpandableView) { in animateTo() 273 alphaChanging &= !((ExpandableView) child).willBeGone(); in animateTo()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | ExpandHelper.java | 36 import com.android.systemui.statusbar.ExpandableView; 42 ExpandableView getChildAtRawPosition(float x, float y); in getChildAtRawPosition() 43 ExpandableView getChildAtPosition(float x, float y); in getChildAtPosition() 48 int getMaxExpandHeight(ExpandableView view); in getMaxExpandHeight() 97 private ExpandableView mResizedView; 140 ExpandableView mView; 143 public void setView(ExpandableView v) { in setView() 210 private ExpandableView findView(float x, float y) { in findView() 211 ExpandableView v; in findView() 394 private boolean isFullyExpanded(ExpandableView underFocus) { in isFullyExpanded() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | DragDownHelper.java | 56 private ExpandableView mStartingChild; 168 private void handleExpansion(float heightDelta, ExpandableView child) { in handleExpansion() 187 private void cancelExpansion(final ExpandableView child) { in cancelExpansion() 230 private ExpandableView findView(float x, float y) { in findView()
|
D | ExpandableView.java | 37 public abstract class ExpandableView extends FrameLayout { class 55 public ExpandableView(Context context, AttributeSet attrs) { in ExpandableView() method in ExpandableView 572 void onHeightChanged(ExpandableView view, boolean needsAnimation); in onHeightChanged() 579 void onReset(ExpandableView view); in onReset()
|
D | NotificationListContainer.java | 132 void onHeightChanged(ExpandableView view, boolean animate); in onHeightChanged()
|
D | StackScrollerDecorView.java | 32 public abstract class StackScrollerDecorView extends ExpandableView {
|
D | NotificationShelf.java | 268 ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in updateAppearance()
|
D | ExpandableOutlineView.java | 40 public abstract class ExpandableOutlineView extends ExpandableView {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | HeadsUpTouchHelper.java | 25 import com.android.systemui.statusbar.ExpandableView; 78 ExpandableView child = mStackScroller.getChildAtRawPosition(x, y); in onInterceptTouchEvent()
|
D | NotificationPanelView.java | 63 import com.android.systemui.statusbar.ExpandableView; 85 ExpandableView.OnHeightChangedListener, 546 ExpandableView child = (ExpandableView) mNotificationStackScroller.getChildAt(i); in computeMaxKeyguardNotifications() 1912 public void onHeightChanged(ExpandableView view, boolean needsAnimation) { in onHeightChanged() 1922 ExpandableView firstChildNotGone = mNotificationStackScroller.getFirstChildNotGone(); in onHeightChanged() 1934 public void onReset(ExpandableView view) { in onReset()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationViewHierarchyManagerTest.java | 248 public void onHeightChanged(ExpandableView view, boolean animate) {} in onHeightChanged()
|