HomeSort by relevance Sort by last modified time
    Searched refs:tempRect (Results 1 - 7 of 7) 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 488 Matrix tempMatrix, RectF tempRect, int[] decorLoc) {
526 tempRect.set(left, top, right, bottom);
527 tempMatrix.mapRect(tempRect);
529 float leftInParent = tempRect.left;
530 float topInParent = tempRect.top;
533 view.getInverseMatrix().mapRect(tempRect);
534 float width = tempRect.width();
535 float height = tempRect.height();
542 tempRect.set(0, 0, width, height);
543 view.getMatrix().mapRect(tempRect);
    [all...]
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 687 final Rect tempRect = mTempRect;
688 thumbDrawable.copyBounds(tempRect);
689 tempRect.offset(mPaddingLeft - mThumbOffset, mPaddingTop);
690 tempRect.left += insets.left;
691 tempRect.right -= insets.right;
694 canvas.clipRect(tempRect, Op.DIFFERENCE);
    [all...]
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/
WindowTransformSwipeHandler.java 319 TransformedRect tempRect = new TransformedRect();
321 .getSwipeUpDestinationAndLength(dp, mContext, mInteractionType, tempRect);
322 mClipAnimationHelper.updateTargetRect(tempRect);
478 TransformedRect tempRect = new TransformedRect();
480 .getSwipeUpDestinationAndLength(mDp, mContext, mInteractionType, tempRect);
481 mClipAnimationHelper.updateTargetRect(tempRect);
484 mActivityControlHelper.getTranslationYForQuickScrub(tempRect, mDp, mContext);
495 + tempRect.rect.width();
496 float distanceToReachEdge = mDp.widthPx / 2 + tempRect.rect.width() / 2 +
    [all...]
  /frameworks/base/core/java/android/view/
ViewGroup.java     [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityStackSupervisor.java 437 private final Rect tempRect = new Rect();
    [all...]

Completed in 588 milliseconds