Home
last modified time | relevance | path

Searched refs:mRects (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/
DViewRootRectTracker.java42 private List<Rect> mRects = Collections.emptyList(); field in ViewRootRectTracker
82 return mRects; in computeChangedRects()
105 rects.addAll(info.mRects); in computeChanges()
116 if (!mRects.equals(rects)) { in computeChanges()
117 mRects = rects; in computeChanges()
133 return mRects; in getLastComputedRects()
163 List<Rect> mRects = Collections.emptyList(); field in ViewRootRectTracker.ViewInfo
187 if (mRects.equals(localRects)) return UNCHANGED; in update()
188 mRects = newRects; in update()
DDisplayCutout.java183 private final Rect[] mRects; field in DisplayCutout.Bounds
186 mRects = new Rect[BOUNDS_POSITION_LENGTH]; in Bounds()
187 mRects[BOUNDS_POSITION_LEFT] = getCopyOrRef(left, copyArguments); in Bounds()
188 mRects[BOUNDS_POSITION_TOP] = getCopyOrRef(top, copyArguments); in Bounds()
189 mRects[BOUNDS_POSITION_RIGHT] = getCopyOrRef(right, copyArguments); in Bounds()
190 mRects[BOUNDS_POSITION_BOTTOM] = getCopyOrRef(bottom, copyArguments); in Bounds()
200 mRects = new Rect[BOUNDS_POSITION_LENGTH]; in Bounds()
202 mRects[i] = new Rect(rects[i]); in Bounds()
212 mRects = rects; in Bounds()
217 for (Rect rect : mRects) { in isEmpty()
[all …]