HomeSort by relevance Sort by last modified time
    Searched refs:rowIndex (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
PVecToTrieCompactHandler.java 20 public void setRowIndexForErrorValue(int rowIndex) {
23 public void setRowIndexForInitialValue(int rowIndex) {
24 initialValue = rowIndex;
27 public void setRowIndexForRange(int start, int end, int rowIndex) {
28 builder.setRange(start, end + 1, rowIndex, true);
31 public void startRealValues(int rowIndex) {
32 if (rowIndex > 0xffff) {
PropsVectors.java 291 * in row rowIndex.
296 public int[] getRow(int rowIndex) {
301 if (rowIndex < 0 || rowIndex > rows) {
302 throw new IllegalArgumentException("rowIndex out of bound!");
305 System.arraycopy(v, rowIndex * columns + 2, rowToReturn, 0,
312 * in row rowIndex.
318 public int getRowStart(int rowIndex) {
323 if (rowIndex < 0 || rowIndex > rows)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
AbstractKeyboardBuilder.java 56 for (int rowIndex = 0; rowIndex < rows.length; rowIndex++) {
57 final E[] row = rows[rowIndex];
58 mRows[rowIndex] = Arrays.copyOf(row, row.length);
85 final int rowIndex = row - 1;
86 if (rowIndex < 0 || rowIndex >= mRows.length) {
89 return mRows[rowIndex];
99 final int rowIndex = row - 1
    [all...]
ActualKeyboardBuilder.java 76 for (int rowIndex = 0; rowIndex < dimensions.length; rowIndex++) {
77 dimensions[rowIndex] = rows.get(rowIndex).size();
81 for (int rowIndex = 0; rowIndex < rows.size(); rowIndex++) {
82 final int row = rowIndex + 1;
83 final ArrayList<Key> rowKeys = rows.get(rowIndex);
    [all...]
ExpectedKeyboardBuilder.java 337 for (int rowIndex = 0; rowIndex < rows.length; rowIndex++) {
338 if (rowIndex > 0) {
341 sb.append(Arrays.toString(rows[rowIndex]));
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
StaggeredGridDefault.java 28 int getRowMax(int rowIndex) {
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) {
72 if (loc.row == rowIndex) {
78 if (loc.row == rowIndex) {
84 if (getLocation(mFirstVisibleIndex).row == rowIndex) {
90 if (loc.row == rowIndex) {
    [all...]
StaggeredGrid.java 171 int rowIndex = loc.row;
185 mProvider.addItem(mTmpItem[0], itemIndex, size, rowIndex, edge - offset);
192 if (rowIndex == 0) {
241 protected final int prependVisibleItemToRow(int itemIndex, int rowIndex, int edge) {
251 Location loc = new Location(rowIndex, 0, 0);
270 mProvider.addItem(item, itemIndex, loc.size, rowIndex, thisEdge);
328 int rowIndex = loc.row;
339 mProvider.addItem(mTmpItem[0], itemIndex, size, rowIndex, edge);
347 if (rowIndex == mNumRows - 1) {
366 protected final int appendVisibleItemToRow(int itemIndex, int rowIndex, int location)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
DenseImmutableTable.java 68 int rowIndex = rowKeyToIndex.get(rowKey);
70 V existingValue = values[rowIndex][columnIndex];
72 values[rowIndex][columnIndex] = cell.getValue();
73 rowCounts[rowIndex]++;
75 iterationOrderRow[i] = rowIndex;
153 private final int rowIndex;
155 Row(int rowIndex) {
156 super(rowCounts[rowIndex]);
157 this.rowIndex = rowIndex;
    [all...]
ArrayTable.java 319 * get(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex))}, but
322 * @param rowIndex position of the row key in {@link #rowKeyList()}
326 * rowIndex} is greater then or equal to the number of allowed row keys,
330 public V at(int rowIndex, int columnIndex) {
332 checkElementIndex(rowIndex, rowList.size());
334 return array[rowIndex][columnIndex];
340 * put(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex), value)}
343 * @param rowIndex position of the row key in {@link #rowKeyList()}
348 * rowIndex} is greater then or equal to the number of allowed row keys,
352 public V set(int rowIndex, int columnIndex, @Nullable V value)
    [all...]
SparseImmutableTable.java 39 Map<R, Integer> rowIndex = Maps.newHashMap();
42 rowIndex.put(row, rows.size());
57 iterationOrderRow[i] = rowIndex.get(rowKey);
97 int rowIndex = iterationOrderRow[index];
98 Map.Entry<R, Map<C, V>> rowEntry = rowMap.entrySet().asList().get(rowIndex);
107 int rowIndex = iterationOrderRow[index];
108 ImmutableMap<C, V> row = (ImmutableMap<C, V>) rowMap.values().asList().get(rowIndex);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ArrayTable.java 317 * get(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex))}, but
320 * @param rowIndex position of the row key in {@link #rowKeyList()}
324 * rowIndex} is greater then or equal to the number of allowed row keys,
328 public V at(int rowIndex, int columnIndex) {
330 checkElementIndex(rowIndex, rowList.size());
332 return array[rowIndex][columnIndex];
338 * put(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex), value)}
341 * @param rowIndex position of the row key in {@link #rowKeyList()}
346 * rowIndex} is greater then or equal to the number of allowed row keys,
350 public V set(int rowIndex, int columnIndex, @Nullable V value)
    [all...]
  /external/icu/icu4c/source/common/
propsvec.h 101 * @return NULL if rowIndex out of range and for illegal arguments,
105 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex,
115 * The handler's rowIndex is the index of the row in the compacted
122 * where rowIndex is the length of the compacted array,
129 int32_t rowIndex, uint32_t *row, int32_t columns,
167 /* context=UPVecToUTrie2Context, creates the trie and stores the rowIndex values */
171 int32_t rowIndex, uint32_t *row, int32_t columns,
propsvec.c 291 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex,
296 if(pv->isCompacted || rowIndex<0 || rowIndex>=pv->rows) {
301 row=pv->v+rowIndex*columns;
498 int32_t rowIndex, uint32_t *row, int32_t columns,
502 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, TRUE, pErrorCode);
506 toUTrie2->initialValue=rowIndex;
509 toUTrie2->errorValue=rowIndex;
512 toUTrie2->maxValue=rowIndex;
513 if(rowIndex>0xffff)
    [all...]
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorPadLayout.java 71 int rowIndex = 0, columnIndex = 0;
80 final int childTop = paddingTop + lp.topMargin + rowIndex * rowHeight;
96 rowIndex = (rowIndex + (columnIndex + 1) / mColumnCount) % mRowCount;
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.h 58 int rowIndex, int width, int height);
71 uint8_t* vRows, int rowIndex, int width, int height);
YuvToJpegEncoder.cpp 118 uint8_t* vRows, int rowIndex, int width, int height) {
119 int numRows = (height - rowIndex) / 2;
122 int offset = ((rowIndex >> 1) + row) * fStrides[1];
193 uint8_t* vRows, int rowIndex, int width, int height) {
194 int numRows = height - rowIndex;
197 uint8_t* yuvSeg = yuv + (rowIndex + row) * fStrides[0];
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BreakDictionary.java 142 private short[] rowIndex = null;
200 rowIndex = new short[l];
201 for (int i = 0; i < rowIndex.length; i++)
202 rowIndex[i] = bytes.getShort();
266 // mapping in rowIndex; we map from logical column number to
271 return internalAt(rowIndex[row], col + rowIndexShifts[row]);
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsRecyclerView.java 229 if (mScrollPosState.rowIndex < 0) {
272 (scrollPosState.rowIndex * scrollPosState.rowHeight) - scrollPosState.rowTopOffset;
288 stateOut.rowIndex = -1;
305 stateOut.rowIndex = item.rowIndex;
321 int offset = item.rowIndex > 0 ? getPaddingTop() : 0;
322 return offset + item.rowIndex * rowHeight;
AlphabeticalAppsList.java 85 public int rowIndex;
468 int rowIndex = -1;
470 item.rowIndex = 0;
477 rowIndex++;
479 item.rowIndex = rowIndex;
485 mNumAppRowsInAdapter = rowIndex + 1;
498 info.touchFraction = item.rowIndex * rowFraction + subRowFraction;
  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsRecyclerView.java 129 if (mScrollPosState.rowIndex < 0) {
141 stateOut.rowIndex = -1;
154 stateOut.rowIndex = position;
  /external/doclava/res/assets/templates/
diff.cs 71 if (tr.rowIndex + 1 < table.rows.length) {
72 var tbody = table.rows[tr.rowIndex + 1].parentNode;
79 if (tr.rowIndex + 1 < table.rows.length
80 && $(table.rows[tr.rowIndex + 1]).hasClass("class-entry")) {
81 var tbody = table.rows[tr.rowIndex + 1].parentNode;
98 var i = tr.rowIndex + 1;
106 var i = tr.rowIndex + 1;
  /frameworks/support/v4/api21/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatApi21.java 48 public static Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex,
50 return AccessibilityNodeInfo.CollectionItemInfo.obtain(rowIndex, rowSpan, columnIndex,
  /external/eigen/Eigen/src/SparseLU/
SparseLU_SupernodalMatrix.h 112 Index* rowIndex() { return m_rowind; }
114 const Index* rowIndex() const
205 inline Index index() const { return m_matrix.rowIndex()[m_idrow]; }
284 irow = rowIndex()[iptr];
  /frameworks/support/v17/tests/src/android/support/v17/leanback/widget/
GridTest.java 52 public void addItem(Object item, int index, int length, int rowIndex, int edge) {
  /external/skia/include/views/animated/
SkWidgetViews.h 300 virtual void getRecord(int rowIndex, int fieldIndex, SkString* data);
302 virtual bool prepareWidgetEvent(SkEvent*, int rowIndex);

Completed in 665 milliseconds

1 2 3 4