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

/frameworks/support/design/src/android/support/design/widget/
H A DBottomSheetBehavior.java155 WeakReference<View> mNestedScrollingChildRef; field in class:BottomSheetBehavior
250 mNestedScrollingChildRef = new WeakReference<>(findScrollingChild(child));
283 View scroll = mNestedScrollingChildRef != null
284 ? mNestedScrollingChildRef.get() : null;
299 View scroll = mNestedScrollingChildRef.get();
345 View scrollingChild = mNestedScrollingChildRef.get();
385 if (mNestedScrollingChildRef == null || target != mNestedScrollingChildRef.get()
422 return target == mNestedScrollingChildRef.get() &&
650 View scroll = mNestedScrollingChildRef
[all...]

Completed in 320 milliseconds