HomeSort by relevance Sort by last modified time
    Searched refs:tempRect (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/com/android/internal/transition/
EpicenterTranslateClipReveal.java 290 final Rect tempRect = mTempRect;
291 if (!object.getClipBounds(tempRect)) {
292 tempRect.setEmpty();
297 tempState.lower = tempRect.left + (int) tempState.trans;
298 tempState.upper = tempRect.right + (int) tempState.trans;
301 tempState.lower = tempRect.top + (int) tempState.trans;
302 tempState.upper = tempRect.bottom + (int) tempState.trans;
309 final Rect tempRect = mTempRect;
310 if (object.getClipBounds(tempRect)) {
312 tempRect.left = value.lower - (int) value.trans
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
FaceSquareFilter.java 84 Rect tempRect = faces[i].rect;
85 int top = (tempRect.top+HEIGHT_OFFSET)*dims[1]/FACE_X_RANGE;
86 int bottom = (tempRect.bottom+HEIGHT_OFFSET)*dims[1]/FACE_X_RANGE;
87 int left = (tempRect.left+WIDTH_OFFSET)*dims[0]/FACE_X_RANGE;
88 int right = (tempRect.right+WIDTH_OFFSET)*dims[0]/FACE_X_RANGE;
  /frameworks/base/core/java/android/app/
ActivityTransitionCoordinator.java 420 Matrix tempMatrix, RectF tempRect, int[] decorLoc) {
458 tempRect.set(left, top, right, bottom);
459 tempMatrix.mapRect(tempRect);
461 float leftInParent = tempRect.left;
462 float topInParent = tempRect.top;
465 view.getInverseMatrix().mapRect(tempRect);
466 float width = tempRect.width();
467 float height = tempRect.height();
474 tempRect.set(0, 0, width, height);
475 view.getMatrix().mapRect(tempRect);
    [all...]
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 515 final Rect tempRect = mTempRect;
516 thumbDrawable.copyBounds(tempRect);
517 tempRect.offset(mPaddingLeft - mThumbOffset, mPaddingTop);
518 tempRect.left += insets.left;
519 tempRect.right -= insets.right;
522 canvas.clipRect(tempRect, Op.DIFFERENCE);

Completed in 1343 milliseconds