Searched refs:mOnChildAttachStateListeners (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java355 private List<OnChildAttachStateChangeListener> mOnChildAttachStateListeners; field in class:RecyclerView
1080 if (mOnChildAttachStateListeners == null) {
1081 mOnChildAttachStateListeners = new ArrayList<>();
1083 mOnChildAttachStateListeners.add(listener);
1092 if (mOnChildAttachStateListeners == null) {
1095 mOnChildAttachStateListeners.remove(listener);
1103 if (mOnChildAttachStateListeners != null) {
1104 mOnChildAttachStateListeners.clear();
6770 if (mOnChildAttachStateListeners != null) {
6771 final int cnt = mOnChildAttachStateListeners
[all...]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java403 private List<OnChildAttachStateChangeListener> mOnChildAttachStateListeners; field in class:RecyclerView
1222 if (mOnChildAttachStateListeners == null) {
1223 mOnChildAttachStateListeners = new ArrayList<>();
1225 mOnChildAttachStateListeners.add(listener);
1235 if (mOnChildAttachStateListeners == null) {
1238 mOnChildAttachStateListeners.remove(listener);
1246 if (mOnChildAttachStateListeners != null) {
1247 mOnChildAttachStateListeners.clear();
7212 if (mOnChildAttachStateListeners != null) {
7213 final int cnt = mOnChildAttachStateListeners
[all...]

Completed in 83 milliseconds