Home
last modified time | relevance | path

Searched refs:nowExpanded (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java595 boolean nowExpanded; in finishExpanding()
598 nowExpanded = currentHeight > mOldHeight && velocity >= 0; in finishExpanding()
600 nowExpanded = currentHeight >= mOldHeight || velocity > 0; in finishExpanding()
602 nowExpanded |= mNaturalHeight == mSmallSize; in finishExpanding()
604 nowExpanded = !wasClosed; in finishExpanding()
611 float targetHeight = nowExpanded ? naturalHeight : mSmallSize; in finishExpanding()
616 final boolean expand = nowExpanded; in finishExpanding()
642 velocity = nowExpanded == velocity >= 0 ? velocity : 0; in finishExpanding()
649 mCallback.setUserExpandedChild(mResizedView, nowExpanded); in finishExpanding()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarNotificationPresenter.java228 boolean nowExpanded) { in onExpandClicked() argument
229 mHeadsUpManager.setExpanded(clickedEntry, nowExpanded); in onExpandClicked()
231 if (nowExpanded) { in onExpandClicked()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRow.java325 mOnExpandClickListener.onExpandClicked(mEntry, v, nowExpanded);
332 boolean nowExpanded;
334 nowExpanded = !mExpandedWhenPinned;
335 mExpandedWhenPinned = nowExpanded;
343 nowExpanded = !isExpanded();
344 setUserExpanded(nowExpanded);
347 mOnExpandClickListener.onExpandClicked(mEntry, v, nowExpanded);
3347 boolean nowExpanded = isExpanded();
3349 nowExpanded = mGroupExpansionManager.isGroupExpanded(mEntry);
3351 if (nowExpanded != wasExpanded) {
[all …]