Home
last modified time | relevance | path

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

/packages/modules/Permission/PermissionController/iconloaderlib/src/com/android/launcher3/icons/
DIconNormalizer.java270 int topY = -1; in getScale() local
305 if (topY == -1) { in getScale()
306 topY = y; in getScale()
314 if (topY == -1 || rightX == -1) { in getScale()
319 convertToConvexArray(mLeftBorder, 1, topY, bottomY); in getScale()
320 convertToConvexArray(mRightBorder, -1, topY, bottomY); in getScale()
334 mBounds.top = topY; in getScale()
346 float rectArea = (bottomY + 1 - topY) * (rightX + 1 - leftX); in getScale()
359 float[] xCoordinates, int direction, int topY, int bottomY) { in convertToConvexArray() argument
364 int first = topY; // First valid y coordinate in convertToConvexArray()
[all …]
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/permissiontypes/prioritylist/
DPriorityListItemMoveCallback.kt56 val topY: Float = viewHolder.itemView.top + dY in onChildDraw() constant
57 val bottomY: Float = topY + viewHolder.itemView.height in onChildDraw()
60 if (topY > 0 && bottomY < recyclerView.height) { in onChildDraw()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/datasources/appsources/
DAppSourcesItemMoveCallback.kt54 val topY: Float = viewHolder.itemView.top + dY in onChildDraw() constant
55 val bottomY: Float = topY + viewHolder.itemView.height in onChildDraw()
58 if (topY > 0 && bottomY < recyclerView.height) { in onChildDraw()
/packages/modules/IntentResolver/java/src/com/android/intentresolver/
DSimpleIconFactory.java516 int topY = -1; in getScale() local
551 if (topY == -1) { in getScale()
552 topY = y; in getScale()
560 if (topY == -1 || rightX == -1) { in getScale()
565 convertToConvexArray(mLeftBorder, 1, topY, bottomY); in getScale()
566 convertToConvexArray(mRightBorder, -1, topY, bottomY); in getScale()
578 float rectArea = (bottomY + 1 - topY) * (rightX + 1 - leftX); in getScale()
590 mBounds.top = topY; in getScale()
617 float[] xCoordinates, int direction, int topY, int bottomY) { in convertToConvexArray() argument
622 int first = topY; // First valid y coordinate in convertToConvexArray()
[all …]
/packages/apps/Car/SystemUI/src/com/android/systemui/car/wm/activity/
DActivityBlockingActivity.java281 int topY = systemBarInsets.top; in getAppWindowRect() local
284 return new Rect(leftX, topY, rightX, bottomY); in getAppWindowRect()