Home
last modified time | relevance | path

Searched refs:firstView (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSection.java251 ExpandableView firstView = getFirstVisibleChild(); in updateBounds() local
252 if (firstView != null) { in updateBounds()
254 int finalTranslationY = (int) Math.ceil(ViewState.getFinalTranslationY(firstView)); in updateBounds()
262 newTop = (int) Math.ceil(firstView.getTranslationY()); in updateBounds()
265 if (firstView.showingPulsing()) { in updateBounds()
268 + ExpandableViewState.getFinalActualHeight(firstView)); in updateBounds()
270 mBounds.left += Math.max(firstView.getTranslation(), 0); in updateBounds()
271 mBounds.right += Math.min(firstView.getTranslation(), 0); in updateBounds()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/globalactions/
H A DGlobalActionsGridLayoutTest.java137 View firstView = new View(mContext, null); in testUpdateSeparatedItemSize() local
141 separatedView.addView(firstView); in testUpdateSeparatedItemSize()
145 ViewGroup.LayoutParams childParams = firstView.getLayoutParams(); in testUpdateSeparatedItemSize()
153 childParams = firstView.getLayoutParams(); in testUpdateSeparatedItemSize()
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/animation/
H A DStackAnimationControllerTest.java211 final View firstView = mLayout.getChildAt(0); in testChildRemoved() local
212 mLayout.removeView(firstView); in testChildRemoved()
216 assertEquals(-1, mLayout.indexOfChild(firstView)); in testChildRemoved()
/aosp14/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java956 RemoteViews firstView = factory.getViewAt(0); in updateTemporaryMetaData() local
957 if (firstView != null) { in updateTemporaryMetaData()
958 loadingTemplate.loadFirstViewHeight(firstView, mContext, in updateTemporaryMetaData()
1281 RemoteViews firstView, Context context, Executor executor) { in loadFirstViewHeight() argument
1283 firstView.applyAsync(context, new RemoteViewsFrameLayout(context, null), executor, in loadFirstViewHeight()
H A DAbsListView.java5074 final View firstView = getChildAt(0);
5075 mMotionViewOriginalTop = firstView.getTop();
8079 final View firstView = getChildAt(0); in run()
8080 if (firstView == null) { in run()
8083 final int firstViewTop = firstView.getTop(); in run()
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DAutoScrollHelper.java914 final View firstView = target.getChildAt(0); in canTargetScrollVertically() local
915 if (firstView.getTop() >= 0) { in canTargetScrollVertically()