Home
last modified time | relevance | path

Searched refs:PF_REVERSE_FLOW_SECONDARY (Results 1 – 1 of 1) sorted by relevance

/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
DGridLayoutManager.java546 static final int PF_REVERSE_FLOW_SECONDARY = 1 << 19; field in GridLayoutManager
548 static final int PF_REVERSE_FLOW_MASK = PF_REVERSE_FLOW_PRIMARY | PF_REVERSE_FLOW_SECONDARY;
736 flags = layoutDirection == View.LAYOUT_DIRECTION_RTL ? PF_REVERSE_FLOW_SECONDARY : 0; in onRtlPropertiesChanged()
1258 if ((mFlag & PF_REVERSE_FLOW_SECONDARY) != 0) { in getRowStartSecondary()
1271 int rightmostIndex = (mFlag & PF_REVERSE_FLOW_SECONDARY) != 0 ? 0 : mNumRows - 1; in getSizeSecondary()
3523 movement = (mFlag & PF_REVERSE_FLOW_SECONDARY) == 0 ? PREV_ROW : NEXT_ROW; in getMovement()
3526 movement = (mFlag & PF_REVERSE_FLOW_SECONDARY) == 0 ? NEXT_ROW : PREV_ROW; in getMovement()