[go: nahoru, domu]

Searched refs:mTmpRect (Results 26 - 34 of 34) sorted by relevance

12

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
H A DItemTouchHelper.java420 private Rect mTmpRect; field in class:ItemTouchHelper
718 if (mTmpRect == null) {
719 mTmpRect = new Rect();
723 lm.calculateItemDecorationsForChild(mSelected.itemView, mTmpRect);
726 final int leftDiff = curX - mTmpRect.left - mRecyclerView.getPaddingLeft();
731 curX + mSelected.itemView.getWidth() + mTmpRect.right
740 final int topDiff = curY - mTmpRect.top - mRecyclerView.getPaddingTop();
744 final int bottomDiff = curY + mSelected.itemView.getHeight() + mTmpRect.bottom -
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java311 private Rect mTmpRect = new Rect(); field in class:TaskStack.DockState.ViewState
333 mHintTextPaint.getTextBounds(mHintText, 0, mHintText.length(), mTmpRect);
334 mHintTextBounds.set((int) mHintTextPaint.measureText(mHintText), mTmpRect.height());
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DStaggeredGridLayoutManager.java191 private final Rect mTmpRect = new Rect(); field in class:StaggeredGridLayoutManager
1137 calculateItemDecorationsForChild(child, mTmpRect);
1139 widthSpec = updateSpecWithExtra(widthSpec, lp.leftMargin + mTmpRect.left,
1140 lp.rightMargin + mTmpRect.right);
1141 heightSpec = updateSpecWithExtra(heightSpec, lp.topMargin + mTmpRect.top,
1142 lp.bottomMargin + mTmpRect.bottom);
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java52 Rect mTmpRect = new Rect(); field in class:AssistStructure
1323 return mAssist.mTmpRect;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DLayerDrawable.java101 private final Rect mTmpRect = new Rect(); field in class:LayerDrawable
1708 final Rect rect = mTmpRect;
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java556 private static final Rect mTmpRect = new Rect(); field in class:PhoneWindowManager
3893 mTmpRect.set(0, 0, displayWidth, displayHeight);
3894 mTmpRect.inset(inOutInsets);
3895 mTmpRect.intersect(taskBounds);
3896 int leftInset = mTmpRect.left - taskBounds.left;
3897 int topInset = mTmpRect.top - taskBounds.top;
3898 int rightInset = taskBounds.right - mTmpRect.right;
3899 int bottomInset = taskBounds.bottom - mTmpRect.bottom;
/frameworks/support/v4/java/android/support/v4/widget/
H A DDrawerLayout.java2258 private final Rect mTmpRect = new Rect(); field in class:DrawerLayout.AccessibilityDelegate
2350 final Rect rect = mTmpRect;
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java516 final Rect mTmpRect = new Rect(); field in class:WindowManagerService
2124 taskBounds = mTmpRect;
2125 atoken.mTask.getBounds(mTmpRect);
11022 mTmpRect.set(0, 0, di.logicalWidth, di.logicalHeight);
11023 subtractInsets(mTmpRect, mTmpRect2, inOutBounds);
11038 mTmpRect.set(0, 0, di.logicalWidth, di.logicalHeight);
11039 subtractInsets(mTmpRect, mTmpRect2, inOutBounds);
/frameworks/base/core/java/com/android/internal/widget/
H A DFloatingToolbar.java351 private final Rect mTmpRect = new Rect(); field in class:FloatingToolbar.FloatingToolbarPopup

Completed in 421 milliseconds

12