Searched defs:mRawChildrenBox (Results 1 - 1 of 1) sorted by relevance

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseWrapContentTest.java258 Rect mRawChildrenBox = new Rect(); field in class:BaseWrapContentTest.Snapshot
312 return mRawChildrenBox.top >= mRvPadding.top
313 && mRawChildrenBox.bottom <= mRvSize.bottom - mRvPadding.bottom;
317 return mRawChildrenBox.left >= mRvPadding.left
318 && mRawChildrenBox.right <= mRvSize.right - mRvPadding.right;
435 mRawChildrenBox = new Rect(0, 0, 0, 0);
440 mRawChildrenBox.union(getChildBounds(recyclerView, child, false));
477 int expectedW = mRawChildrenBox.width() + mRvPadding.left + mRvPadding.right;
481 int expectedH = mRawChildrenBox.height() + mRvPadding.top + mRvPadding.bottom;

Completed in 81 milliseconds