Home
last modified time | relevance | path

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

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DStaggeredGridDefault.java28 int getRowMax(int rowIndex) { in getRowMax() argument
34 if (getLocation(mFirstVisibleIndex).row == rowIndex) { in getRowMax()
40 if (loc.row == rowIndex) { in getRowMax()
47 if (loc.row == rowIndex) { in getRowMax()
53 if (loc.row == rowIndex) { in getRowMax()
65 int getRowMin(int rowIndex) { in getRowMin() argument
72 if (loc.row == rowIndex) { in getRowMin()
78 if (loc.row == rowIndex) { in getRowMin()
84 if (getLocation(mFirstVisibleIndex).row == rowIndex) { in getRowMin()
90 if (loc.row == rowIndex) { in getRowMin()
[all …]
DStaggeredGrid.java171 int rowIndex = loc.row; in prependVisbleItemsWithCache() local
185 mProvider.addItem(mTmpItem[0], itemIndex, size, rowIndex, edge - offset); in prependVisbleItemsWithCache()
192 if (rowIndex == 0) { in prependVisbleItemsWithCache()
241 protected final int prependVisibleItemToRow(int itemIndex, int rowIndex, int edge) { in prependVisibleItemToRow() argument
251 Location loc = new Location(rowIndex, 0, 0); in prependVisibleItemToRow()
270 mProvider.addItem(item, itemIndex, loc.size, rowIndex, thisEdge); in prependVisibleItemToRow()
328 int rowIndex = loc.row; in appendVisbleItemsWithCache() local
339 mProvider.addItem(mTmpItem[0], itemIndex, size, rowIndex, edge); in appendVisbleItemsWithCache()
347 if (rowIndex == mNumRows - 1) { in appendVisbleItemsWithCache()
366 protected final int appendVisibleItemToRow(int itemIndex, int rowIndex, int location) { in appendVisibleItemToRow() argument
[all …]
DGridLayoutManager.java1028 private int getRowSizeSecondary(int rowIndex) { in getRowSizeSecondary() argument
1035 return mRowSizeSecondary[rowIndex]; in getRowSizeSecondary()
1038 private int getRowStartSecondary(int rowIndex) { in getRowStartSecondary() argument
1043 for (int i = mNumRows-1; i > rowIndex; i--) { in getRowStartSecondary()
1047 for (int i = 0; i < rowIndex; i++) { in getRowStartSecondary()
1086 for (int rowIndex = 0; rowIndex < mNumRows; rowIndex++) { in processRowSizeSecondary()
1087 CircularIntArray row = rows == null ? null : rows[rowIndex]; in processRowSizeSecondary()
1135 if (mRowSizeSecondary[rowIndex] != rowSize) { in processRowSizeSecondary()
1136 … if (DEBUG) Log.v(getTag(), "row size secondary changed: " + mRowSizeSecondary[rowIndex] + in processRowSizeSecondary()
1138 mRowSizeSecondary[rowIndex] = rowSize; in processRowSizeSecondary()
[all …]
DGrid.java73 public abstract void addItem(Object item, int index, int length, int rowIndex, int edge); in addItem() argument
272 protected abstract int findRowMin(boolean findLarge, int indexLimit, int[] rowIndex); in findRowMin() argument
/frameworks/base/core/jni/android/graphics/
DYuvToJpegEncoder.cpp118 uint8_t* vRows, int rowIndex, int width, int height) { in deinterleave() argument
119 int numRows = (height - rowIndex) / 2; in deinterleave()
122 int offset = ((rowIndex >> 1) + row) * fStrides[1]; in deinterleave()
193 uint8_t* vRows, int rowIndex, int width, int height) { in deinterleave() argument
194 int numRows = height - rowIndex; in deinterleave()
197 uint8_t* yuvSeg = yuv + (rowIndex + row) * fStrides[0]; in deinterleave()
DYuvToJpegEncoder.h58 int rowIndex, int width, int height);
71 uint8_t* vRows, int rowIndex, int width, int height);
/frameworks/support/v4/api21/android/support/v4/view/accessibility/
DAccessibilityNodeInfoCompatApi21.java48 public static Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, in obtainCollectionItemInfo() argument
50 return AccessibilityNodeInfo.CollectionItemInfo.obtain(rowIndex, rowSpan, columnIndex, in obtainCollectionItemInfo()
/frameworks/support/v4/kitkat/android/support/v4/view/accessibility/
DAccessibilityNodeInfoCompatKitKat.java65 public static Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, in obtainCollectionItemInfo() argument
67 return AccessibilityNodeInfo.CollectionItemInfo.obtain(rowIndex, rowSpan, columnIndex, in obtainCollectionItemInfo()
/frameworks/support/v17/tests/src/android/support/v17/leanback/widget/
DGridTest.java52 public void addItem(Object item, int index, int length, int rowIndex, int edge) { in addItem() argument
/frameworks/base/core/java/android/inputmethodservice/
DKeyboard.java628 for (int rowIndex = 0; rowIndex < numRows; ++rowIndex) { in resize()
629 Row row = rows.get(rowIndex); in resize()
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityNodeInfo.java3966 public static CollectionItemInfo obtain(int rowIndex, int rowSpan, in obtain() argument
3968 return obtain(rowIndex, rowSpan, columnIndex, columnSpan, heading, false); in obtain()
3981 public static CollectionItemInfo obtain(int rowIndex, int rowSpan, in obtain() argument
3986 rowIndex, rowSpan, columnIndex, columnSpan, heading, selected); in obtain()
3989 info.mRowIndex = rowIndex; in obtain()
4014 private CollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, int columnSpan, in CollectionItemInfo() argument
4016 mRowIndex = rowIndex; in CollectionItemInfo()
/frameworks/base/cmds/content/src/com/android/commands/content/
DContent.java560 int rowIndex = 0; in onExecute() local
564 builder.append("Row: ").append(rowIndex).append(" "); in onExecute()
565 rowIndex++; in onExecute()
/frameworks/support/v4/java/android/support/v4/view/accessibility/
DAccessibilityNodeInfoCompat.java421 public static CollectionItemInfoCompat obtain(int rowIndex, int rowSpan, in obtain() argument
423 return new CollectionItemInfoCompat(IMPL.obtainCollectionItemInfo(rowIndex, rowSpan, in obtain()
571 public Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, in obtainCollectionItemInfo() argument
1026 public Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, in obtainCollectionItemInfo() argument
1636 public Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, in obtainCollectionItemInfo() argument
1639 .obtainCollectionItemInfo(rowIndex, rowSpan, columnIndex, columnSpan, heading); in obtainCollectionItemInfo()
1797 public Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, in obtainCollectionItemInfo() argument
1799 return AccessibilityNodeInfoCompatApi21.obtainCollectionItemInfo(rowIndex, rowSpan, in obtainCollectionItemInfo()
/frameworks/data-binding/prebuilds/1.0-rc0/
Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/ ...