Searched refs:tempFXY (Results 1 – 1 of 1) sorted by relevance
1169 final float[] tempFXY = new float[2]; in updateIsBeingDraggedOnTouchDown() local1170 tempFXY[0] = mXDown; in updateIsBeingDraggedOnTouchDown()1171 tempFXY[1] = mYDown; in updateIsBeingDraggedOnTouchDown()1172 Utilities.mapCoordInSelfToDescendant(mFirstPagePinnedItem, this, tempFXY); in updateIsBeingDraggedOnTouchDown()1173 mIsEventOverFirstPagePinnedItem = mFirstPagePinnedItem.getLeft() <= tempFXY[0] in updateIsBeingDraggedOnTouchDown()1174 && mFirstPagePinnedItem.getRight() >= tempFXY[0] in updateIsBeingDraggedOnTouchDown()1175 && mFirstPagePinnedItem.getTop() <= tempFXY[1] in updateIsBeingDraggedOnTouchDown()1176 && mFirstPagePinnedItem.getBottom() >= tempFXY[1]; in updateIsBeingDraggedOnTouchDown()