Home
last modified time | relevance | path

Searched refs:currY (Results 1 – 5 of 5) sorted by relevance

/aosp12/packages/apps/Car/Notification/src/com/android/car/notification/
H A DCarNotificationItemTouchListener.java218 float currY; in onInterceptTouchEvent() local
221 currY = event.getHistoricalY(i); in onInterceptTouchEvent()
224 currY = event.getY(); in onInterceptTouchEvent()
227 float deltaY = currY - mInitialY; in onInterceptTouchEvent()
242 if (isInteractingWithExpandedGroupNotificationList(currY)) { in onInterceptTouchEvent()
280 private boolean isInteractingWithExpandedGroupNotificationList(float currY) { in isInteractingWithExpandedGroupNotificationList() argument
298 boolean isTouchingNotificationList = currY >= top && currY <= bottom; in isInteractingWithExpandedGroupNotificationList()
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
H A DConversationListSwipeHelper.java124 float currY; in onInterceptTouchEvent() local
127 currY = event.getHistoricalY(i); in onInterceptTouchEvent()
130 currY = event.getY(); in onInterceptTouchEvent()
133 final float deltaY = currY - mInitialY; in onInterceptTouchEvent()
/aosp12/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DBlend.cpp1214 double currX, currY; in SelectRelevantFrames() local
1217 currY = ProjY(mb->trs, midX, midY, z, 1.0); in SelectRelevantFrames()
1219 double deltaY = currY - prevY; in SelectRelevantFrames()
1229 prevY = currY; in SelectRelevantFrames()
1272 double currX, currY; in ComputeBlendParameters() local
1275 currY = ProjY(mb->trs, midX, midY, z, 1.0); in ComputeBlendParameters()
1277 double deltaY = currY - prevY; in ComputeBlendParameters()
1291 prevY = currY; in ComputeBlendParameters()
/aosp12/packages/apps/Camera2/src/com/android/camera/widget/
H A DFilmstripView.java1925 public void onScrollUpdate(int currX, int currY) {
2490 public void onScrollUpdate(int currX, int currY);
/aosp12/frameworks/base/core/java/android/widget/
H A DAbsListView.java4943 final int currY = scroller.getCurrY(); local
4944 final int deltaY = currY - scrollY;
4947 final boolean crossDown = scrollY <= 0 && currY > 0;
4948 final boolean crossUp = scrollY >= 0 && currY < 0;