Searched defs:rowIndex (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DColoredShadowsActivity.java39 private void setShadowColors(ViewGroup row, int rowIndex) { argument
45 view.setElevation(6.0f * (rowIndex + 1));
/frameworks/base/tools/preload2/src/com/android/preload/
H A DDumpTableModel.java77 public Object getValueAt(int rowIndex, int columnIndex) { argument
78 DumpData d = data.get(rowIndex);
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DStaggeredGridDefault.java28 int getRowMax(int rowIndex) { argument
34 if (getLocation(mFirstVisibleIndex).row == rowIndex) {
40 if (loc.row == rowIndex) {
47 if (loc.row == rowIndex) {
53 if (loc.row == rowIndex) {
65 int getRowMin(int rowIndex) { argument
72 if (loc.row == rowIndex) {
78 if (loc.row == rowIndex) {
84 if (getLocation(mFirstVisibleIndex).row == rowIndex) {
90 if (loc.row == rowIndex) {
[all...]
H A DStaggeredGrid.java167 int rowIndex = loc.row;
181 mProvider.addItem(mTmpItem[0], itemIndex, size, rowIndex, edge - offset);
188 if (rowIndex == 0) {
237 protected final int prependVisibleItemToRow(int itemIndex, int rowIndex, int edge) { argument
247 Location loc = new Location(rowIndex, 0, 0);
266 mProvider.addItem(item, itemIndex, loc.size, rowIndex, thisEdge);
324 int rowIndex = loc.row;
335 mProvider.addItem(mTmpItem[0], itemIndex, size, rowIndex, edge);
343 if (rowIndex == mNumRows - 1) {
362 protected final int appendVisibleItemToRow(int itemIndex, int rowIndex, in argument
[all...]
H A DGrid.java90 * @param rowIndex Row index to put the item
93 void addItem(Object item, int index, int length, int rowIndex, int edge); argument
297 protected abstract int findRowMin(boolean findLarge, int indexLimit, int[] rowIndex); argument
H A DGridLayoutManager.java1244 private int getRowSizeSecondary(int rowIndex) { argument
1251 return mRowSizeSecondary[rowIndex];
1254 int getRowStartSecondary(int rowIndex) { argument
1259 for (int i = mNumRows-1; i > rowIndex; i--) {
1263 for (int i = 0; i < rowIndex; i++) {
1316 for (int rowIndex = 0; rowIndex < mNumRows; rowIndex++) {
1317 CircularIntArray row = rows == null ? null : rows[rowIndex];
1390 if (mRowSizeSecondary[rowIndex] !
1740 layoutChild(int rowIndex, View v, int start, int end, int startSecondary) argument
[all...]
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
H A DGridTest.java51 public void addItem(Object item, int index, int length, int rowIndex, int edge) { argument
/frameworks/support/slices/view/src/main/java/androidx/slice/widget/
H A DEventInfo.java158 public int rowIndex; field in class:EventInfo
203 * @param rowIndex The index of the row that was interacted with in the slice.
206 @SliceRowType int rowTemplateType, int rowIndex) {
210 this.rowIndex = rowIndex;
238 sb.append(", rowIndex=").append(rowIndex);
205 EventInfo(@liceView.SliceMode int sliceMode, @SliceActionType int actionType, @SliceRowType int rowTemplateType, int rowIndex) argument
H A DGridRowView.java167 public void setSliceItem(SliceItem slice, boolean isHeader, int rowIndex, argument
171 mRowIndex = rowIndex;
H A DSliceChildView.java81 public void setSliceItem(SliceItem slice, boolean isHeader, int rowIndex, argument
/frameworks/base/core/jni/android/graphics/
H A DYuvToJpegEncoder.cpp133 uint8_t* vRows, int rowIndex, int width, int height) {
134 int numRows = (height - rowIndex) / 2;
137 int offset = ((rowIndex >> 1) + row) * fStrides[1];
208 uint8_t* vRows, int rowIndex, int width, int height) {
209 int numRows = height - rowIndex;
212 uint8_t* yuvSeg = yuv + (rowIndex + row) * fStrides[0];
132 deinterleave(uint8_t* vuPlanar, uint8_t* uRows, uint8_t* vRows, int rowIndex, int width, int height) argument
207 deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows, uint8_t* vRows, int rowIndex, int width, int height) argument
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/notification/
H A DZenDurationDialog.java171 private void bindTag(final int currZenDuration, final View row, final int rowIndex) { argument
177 tag.rb = (RadioButton) mZenRadioGroup.getChildAt(rowIndex);
196 updateUi(tag, row, rowIndex);
226 private void updateButtons(ConditionTag tag, View row, int rowIndex) { argument
232 onClickTimeButton(row, tag, false /*down*/, rowIndex);
241 onClickTimeButton(row, tag, true /*up*/, rowIndex);
246 if (rowIndex == COUNTDOWN_CONDITION_INDEX) {
262 protected void updateUi(ConditionTag tag, View row, int rowIndex) { argument
267 updateButtons(tag, row, rowIndex);
270 switch (rowIndex) {
[all...]
/frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
H A DGridModel.java375 int columnEndIndex, int rowIndex, int rowStartIndex, int rowEndIndex) {
379 return columnIndex == columnStartIndex && rowIndex == rowStartIndex;
381 return columnIndex == columnEndIndex && rowIndex == rowStartIndex;
383 return columnIndex == columnStartIndex && rowIndex == rowEndIndex;
390 return rowIndex == rowEndIndex;
374 isPossiblePositionNearestOrigin(int columnIndex, int columnStartIndex, int columnEndIndex, int rowIndex, int rowStartIndex, int rowEndIndex) argument
/frameworks/support/compat/src/main/java/androidx/core/view/accessibility/
H A DAccessibilityNodeInfoCompat.java641 * @param rowIndex The row index at which the item is located.
651 public static CollectionItemInfoCompat obtain(int rowIndex, int rowSpan, argument
655 rowIndex, rowSpan, columnIndex, columnSpan, heading, selected));
658 rowIndex, rowSpan, columnIndex, columnSpan, heading));
667 * @param rowIndex The row index at which the item is located.
676 public static CollectionItemInfoCompat obtain(int rowIndex, int rowSpan, argument
680 rowIndex, rowSpan, columnIndex, columnSpan, heading));
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java4708 * @param rowIndex The row index at which the item is located.
4715 public static CollectionItemInfo obtain(int rowIndex, int rowSpan, argument
4717 return obtain(rowIndex, rowSpan, columnIndex, columnSpan, heading, false);
4723 * @param rowIndex The row index at which the item is located.
4731 public static CollectionItemInfo obtain(int rowIndex, int rowSpan, argument
4736 rowIndex, rowSpan, columnIndex, columnSpan, heading, selected);
4739 info.mRowIndex = rowIndex;
4758 * @param rowIndex The row index at which the item is located.
4764 private CollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, int columnSpan, argument
4766 mRowIndex = rowIndex;
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 562 milliseconds