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

  /frameworks/support/transition/src/main/java/androidx/transition/
ChangeBounds.java 163 private int[] mTempLocation = new int[2];
224 values.view.getLocationInWindow(mTempLocation);
225 values.values.put(PROPNAME_WINDOW_X, mTempLocation[0]);
226 values.values.put(PROPNAME_WINDOW_Y, mTempLocation[1]);
429 sceneRoot.getLocationInWindow(mTempLocation);
439 Path topLeftPath = getPathMotion().getPath(startX - mTempLocation[0],
440 startY - mTempLocation[1], endX - mTempLocation[0],
441 endY - mTempLocation[1]);
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java 98 @Thunk final int[] mTempLocation = new int[2];
457 cellToPoint(bg.delegateCellX, bg.delegateCellY, mTempLocation);
459 canvas.translate(mTempLocation[0], mTempLocation[1]);
469 mFolderLeaveBehind.delegateCellY, mTempLocation);
471 canvas.translate(mTempLocation[0], mTempLocation[1]);
484 cellToPoint(bg.delegateCellX, bg.delegateCellY, mTempLocation);
486 canvas.translate(mTempLocation[0], mTempLocation[1])
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 85 int[] mTempLocation = new int[2];
500 cellToPoint(fra.mCellX, fra.mCellY, mTempLocation);
502 int centerX = mTempLocation[0] + mCellWidth / 2;
503 int centerY = mTempLocation[1] + previewOffset / 2;
515 cellToPoint(fra.mCellX, fra.mCellY, mTempLocation);
517 centerX = mTempLocation[0] + mCellWidth / 2;
518 centerY = mTempLocation[1] + previewOffset / 2;
531 cellToPoint(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1], mTempLocation);
532 int centerX = mTempLocation[0] + mCellWidth / 2;
533 int centerY = mTempLocation[1] + previewOffset / 2
    [all...]

Completed in 100 milliseconds