Searched refs:mTmpRectPoints (Results 1 – 1 of 1) sorted by relevance
103 protected final float[] mTmpRectPoints = new float[4]; field in BaseDragLayer348 mTmpRectPoints[0] = 0; in getDescendantRectRelativeToSelf()349 mTmpRectPoints[1] = 0; in getDescendantRectRelativeToSelf()350 mTmpRectPoints[2] = descendant.getWidth(); in getDescendantRectRelativeToSelf()351 mTmpRectPoints[3] = descendant.getHeight(); in getDescendantRectRelativeToSelf()352 float s = getDescendantCoordRelativeToSelf(descendant, mTmpRectPoints); in getDescendantRectRelativeToSelf()353 r.left = Math.round(Math.min(mTmpRectPoints[0], mTmpRectPoints[2])); in getDescendantRectRelativeToSelf()354 r.top = Math.round(Math.min(mTmpRectPoints[1], mTmpRectPoints[3])); in getDescendantRectRelativeToSelf()355 r.right = Math.round(Math.max(mTmpRectPoints[0], mTmpRectPoints[2])); in getDescendantRectRelativeToSelf()356 r.bottom = Math.round(Math.max(mTmpRectPoints[1], mTmpRectPoints[3])); in getDescendantRectRelativeToSelf()