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

/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java9949 static final int FLAG_NOT_RECYCLABLE = 1 << 4; field in class:RecyclerView.ViewHolder
10370 mFlags |= FLAG_NOT_RECYCLABLE;
10372 mFlags &= ~FLAG_NOT_RECYCLABLE;
10385 return (mFlags & FLAG_NOT_RECYCLABLE) == 0
10394 return (mFlags & FLAG_NOT_RECYCLABLE) != 0;
10402 return (mFlags & FLAG_NOT_RECYCLABLE) == 0 && itemView.hasTransientState();
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java10686 static final int FLAG_NOT_RECYCLABLE = 1 << 4; field in class:RecyclerView.ViewHolder
11117 mFlags |= FLAG_NOT_RECYCLABLE;
11119 mFlags &= ~FLAG_NOT_RECYCLABLE;
11132 return (mFlags & FLAG_NOT_RECYCLABLE) == 0
11141 return (mFlags & FLAG_NOT_RECYCLABLE) != 0;
11149 return (mFlags & FLAG_NOT_RECYCLABLE) == 0 && ViewCompat.hasTransientState(itemView);

Completed in 77 milliseconds