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

  /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 377 Matrix tempMatrix, RectF tempRect, int[] decorLoc) {
415 tempRect.set(left, top, right, bottom);
416 tempMatrix.mapRect(tempRect);
418 float leftInParent = tempRect.left;
419 float topInParent = tempRect.top;
422 view.getInverseMatrix().mapRect(tempRect);
423 float width = tempRect.width();
424 float height = tempRect.height();
431 tempRect.set(0, 0, width, height);
432 view.getMatrix().mapRect(tempRect);
    [all...]
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 519 final Rect tempRect = mTempRect;
520 thumbDrawable.copyBounds(tempRect);
521 tempRect.offset(mPaddingLeft - mThumbOffset, mPaddingTop);
522 tempRect.left += insets.left;
523 tempRect.right -= insets.right;
526 canvas.clipRect(tempRect, Op.DIFFERENCE);

Completed in 190 milliseconds