Searched refs:mTmpRectPoints (Results 1 – 1 of 1) sorted by relevance
103 protected final float[] mTmpRectPoints = new float[4]; field in BaseDragLayer369 mTmpRectPoints[0] = 0; in getDescendantRectRelativeToSelf()370 mTmpRectPoints[1] = 0; in getDescendantRectRelativeToSelf()371 mTmpRectPoints[2] = descendant.getWidth(); in getDescendantRectRelativeToSelf()372 mTmpRectPoints[3] = descendant.getHeight(); in getDescendantRectRelativeToSelf()373 float s = getDescendantCoordRelativeToSelf(descendant, mTmpRectPoints); in getDescendantRectRelativeToSelf()374 r.left = Math.round(Math.min(mTmpRectPoints[0], mTmpRectPoints[2])); in getDescendantRectRelativeToSelf()375 r.top = Math.round(Math.min(mTmpRectPoints[1], mTmpRectPoints[3])); in getDescendantRectRelativeToSelf()376 r.right = Math.round(Math.max(mTmpRectPoints[0], mTmpRectPoints[2])); in getDescendantRectRelativeToSelf()377 r.bottom = Math.round(Math.max(mTmpRectPoints[1], mTmpRectPoints[3])); in getDescendantRectRelativeToSelf()