HomeSort by relevance Sort by last modified time
    Searched defs:FLAG_PRE (Results 1 - 2 of 2) sorted by null

  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
ViewInfoStore.java 23 import static androidx.recyclerview.widget.ViewInfoStore.InfoRecord.FLAG_PRE;
68 record.flags |= FLAG_PRE;
84 return popFromLayoutStep(vh, FLAG_PRE);
107 if (flag == FLAG_PRE) {
115 if ((record.flags & (FLAG_PRE | FLAG_POST)) == 0) {
160 return record != null && (record.flags & FLAG_PRE) != 0;
238 } else if ((record.flags & FLAG_PRE) != 0) {
294 static final int FLAG_PRE = 1 << 2;
298 static final int FLAG_PRE_AND_POST = FLAG_PRE | FLAG_POST;
299 static final int FLAG_APPEAR_PRE_AND_POST = FLAG_APPEAR | FLAG_PRE | FLAG_POST
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ViewInfoStore.java 32 import static com.android.internal.widget.ViewInfoStore.InfoRecord.FLAG_PRE;
73 record.flags |= FLAG_PRE;
89 return popFromLayoutStep(vh, FLAG_PRE);
112 if (flag == FLAG_PRE) {
120 if ((record.flags & (FLAG_PRE | FLAG_POST)) == 0) {
165 return record != null && (record.flags & FLAG_PRE) != 0;
243 } else if ((record.flags & FLAG_PRE) != 0) {
299 static final int FLAG_PRE = 1 << 2;
303 static final int FLAG_PRE_AND_POST = FLAG_PRE | FLAG_POST;
304 static final int FLAG_APPEAR_PRE_AND_POST = FLAG_APPEAR | FLAG_PRE | FLAG_POST
    [all...]

Completed in 62 milliseconds