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

/frameworks/base/core/java/com/android/internal/widget/
H A DViewInfoStore.java31 import static com.android.internal.widget.ViewInfoStore.InfoRecord.FLAG_POST;
100 return popFromLayoutStep(vh, FLAG_POST);
114 } else if (flag == FLAG_POST) {
120 if ((record.flags & (FLAG_PRE | FLAG_POST)) == 0) {
191 record.flags |= FLAG_POST;
246 } else if ((record.flags & FLAG_POST) != 0) {
301 static final int FLAG_POST = 1 << 3; field in class:ViewInfoStore.InfoRecord
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;
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DViewInfoStore.java22 import static androidx.recyclerview.widget.ViewInfoStore.InfoRecord.FLAG_POST;
95 return popFromLayoutStep(vh, FLAG_POST);
109 } else if (flag == FLAG_POST) {
115 if ((record.flags & (FLAG_PRE | FLAG_POST)) == 0) {
186 record.flags |= FLAG_POST;
241 } else if ((record.flags & FLAG_POST) != 0) {
296 static final int FLAG_POST = 1 << 3; field in class:ViewInfoStore.InfoRecord
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;

Completed in 324 milliseconds