Lines Matching refs:box
2757 Rect box = new Rect(); in getCurrentSelectionPosition() local
2758 box.top = mSelectionHour * (mCellHeight + HOUR_GAP); in getCurrentSelectionPosition()
2759 box.bottom = box.top + mCellHeight + HOUR_GAP; in getCurrentSelectionPosition()
2761 box.left = computeDayLeftPosition(daynum) + 1; in getCurrentSelectionPosition()
2762 box.right = computeDayLeftPosition(daynum + 1); in getCurrentSelectionPosition()
2763 return box; in getCurrentSelectionPosition()
3171 Rect box = getCurrentSelectionPosition(); in computeNeighbors() local
3205 if (prevLeft >= box.right) { in computeNeighbors()
3209 } else if (prevRight <= box.left) { in computeNeighbors()
3213 } else if (prevBottom <= box.top) { in computeNeighbors()
3217 } else if (prevTop >= box.bottom) { in computeNeighbors()
3234 if (top < box.top) { in computeNeighbors()
3235 top = box.top; in computeNeighbors()
3238 if (bottom > box.bottom) { in computeNeighbors()
3239 bottom = box.bottom; in computeNeighbors()