Searched refs:mTempLocation (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Launcher2/src/com/android/launcher2/ |
D | CellLayout.java | 85 int[] mTempLocation = new int[2]; field in CellLayout 500 cellToPoint(fra.mCellX, fra.mCellY, mTempLocation); in onDraw() 502 int centerX = mTempLocation[0] + mCellWidth / 2; in onDraw() 503 int centerY = mTempLocation[1] + previewOffset / 2; in onDraw() 515 cellToPoint(fra.mCellX, fra.mCellY, mTempLocation); in onDraw() 517 centerX = mTempLocation[0] + mCellWidth / 2; in onDraw() 518 centerY = mTempLocation[1] + previewOffset / 2; in onDraw() 531 cellToPoint(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1], mTempLocation); in onDraw() 532 int centerX = mTempLocation[0] + mCellWidth / 2; in onDraw() 533 int centerY = mTempLocation[1] + previewOffset / 2; in onDraw() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | CellLayout.java | 93 @Thunk final int[] mTempLocation = new int[2]; field in CellLayout 507 cellToPoint(fra.mCellX, fra.mCellY, mTempLocation); in onDraw() 511 int centerX = mTempLocation[0] + mCellWidth / 2; in onDraw() 512 int centerY = mTempLocation[1] + previewOffset / 2 + in onDraw() 544 cellToPoint(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1], mTempLocation); in onDraw() 547 int centerX = mTempLocation[0] + mCellWidth / 2; in onDraw() 548 int centerY = mTempLocation[1] + previewOffset / 2 + in onDraw() 1409 findNearestArea(c.x, c.y, c.spanX, c.spanY, direction, mTmpOccupied, null, mTempLocation); in addViewToTempLocation() 1411 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) { in addViewToTempLocation() 1412 c.x = mTempLocation[0]; in addViewToTempLocation() [all …]
|