Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/accessibility/
DAccessibilityNodeInfo.java5612 public static CollectionItemInfo obtain(int rowIndex, int rowSpan, in obtain() argument
5614 return new CollectionItemInfo(rowIndex, rowSpan, columnIndex, columnSpan, heading, in obtain()
5634 public static CollectionItemInfo obtain(int rowIndex, int rowSpan, in obtain() argument
5636 return new CollectionItemInfo(rowIndex, rowSpan, columnIndex, columnSpan, heading, in obtain()
5662 int rowSpan, @Nullable String columnTitle, int columnIndex, int columnSpan, in obtain() argument
5664 return new CollectionItemInfo(rowTitle, rowIndex, rowSpan, columnTitle, columnIndex, in obtain()
5690 public CollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, int columnSpan, in CollectionItemInfo() argument
5692 this(rowIndex, rowSpan, columnIndex, columnSpan, heading, false); in CollectionItemInfo()
5705 public CollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, int columnSpan, in CollectionItemInfo() argument
5707 this(null, rowIndex, rowSpan, null, columnIndex, columnSpan, in CollectionItemInfo()
[all …]
/frameworks/base/core/java/android/widget/
DGridLayout.java754 private static void setCellGroup(LayoutParams lp, int row, int rowSpan, int col, int colSpan) { in setCellGroup() argument
755 lp.setRowSpecSpan(new Interval(row, row + rowSpan)); in setCellGroup()
1171 Interval rowSpan = rowSpec.span; in onLayout() local
1174 int y1 = vLocations[rowSpan.min]; in onLayout()
1177 int y2 = vLocations[rowSpan.max]; in onLayout()
2194 int rowSpan = a.getInt(ROW_SPAN, DEFAULT_SPAN_SIZE);
2196 this.rowSpec = spec(row, rowSpan, getAlignment(gravity, false), rowWeight);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tileimpl/
DQSTileViewImplTest.kt270 assertThat(info.collectionItemInfo.rowSpan).isEqualTo(1) in testCollectionItemInfoHasPosition()