Home
last modified time | relevance | path

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

12

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DPVecToTrieCompactHandler.java27 public void setRowIndexForErrorValue(int rowIndex) { in setRowIndexForErrorValue() argument
31 public void setRowIndexForInitialValue(int rowIndex) { in setRowIndexForInitialValue() argument
32 initialValue = rowIndex; in setRowIndexForInitialValue()
36 public void setRowIndexForRange(int start, int end, int rowIndex) { in setRowIndexForRange() argument
37 builder.setRange(start, end + 1, rowIndex, true); in setRowIndexForRange()
41 public void startRealValues(int rowIndex) { in startRealValues() argument
42 if (rowIndex > 0xffff) { in startRealValues()
DPropsVectors.java300 public int[] getRow(int rowIndex) { in getRow() argument
305 if (rowIndex < 0 || rowIndex > rows) { in getRow()
309 System.arraycopy(v, rowIndex * columns + 2, rowToReturn, 0, in getRow()
322 public int getRowStart(int rowIndex) { in getRowStart() argument
327 if (rowIndex < 0 || rowIndex > rows) { in getRowStart()
330 return v[rowIndex * columns]; in getRowStart()
341 public int getRowEnd(int rowIndex) { in getRowEnd() argument
346 if (rowIndex < 0 || rowIndex > rows) { in getRowEnd()
349 return v[rowIndex * columns + 1] - 1; in getRowEnd()
561 public void setRowIndexForRange(int start, int end, int rowIndex); in setRowIndexForRange() argument
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DPVecToTrieCompactHandler.java23 public void setRowIndexForErrorValue(int rowIndex) { in setRowIndexForErrorValue() argument
27 public void setRowIndexForInitialValue(int rowIndex) { in setRowIndexForInitialValue() argument
28 initialValue = rowIndex; in setRowIndexForInitialValue()
32 public void setRowIndexForRange(int start, int end, int rowIndex) { in setRowIndexForRange() argument
33 builder.setRange(start, end + 1, rowIndex, true); in setRowIndexForRange()
37 public void startRealValues(int rowIndex) { in startRealValues() argument
38 if (rowIndex > 0xffff) { in startRealValues()
DPropsVectors.java298 public int[] getRow(int rowIndex) { in getRow() argument
303 if (rowIndex < 0 || rowIndex > rows) { in getRow()
307 System.arraycopy(v, rowIndex * columns + 2, rowToReturn, 0, in getRow()
320 public int getRowStart(int rowIndex) { in getRowStart() argument
325 if (rowIndex < 0 || rowIndex > rows) { in getRowStart()
328 return v[rowIndex * columns]; in getRowStart()
339 public int getRowEnd(int rowIndex) { in getRowEnd() argument
344 if (rowIndex < 0 || rowIndex > rows) { in getRowEnd()
347 return v[rowIndex * columns + 1] - 1; in getRowEnd()
559 public void setRowIndexForRange(int start, int end, int rowIndex); in setRowIndexForRange() argument
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DArrayTable.java328 public V at(int rowIndex, int columnIndex) {
330 checkElementIndex(rowIndex, rowList.size());
332 return array[rowIndex][columnIndex];
350 public V set(int rowIndex, int columnIndex, @Nullable V value) {
352 checkElementIndex(rowIndex, rowList.size());
354 V oldValue = array[rowIndex][columnIndex];
355 array[rowIndex][columnIndex] = value;
421 Integer rowIndex = rowKeyToIndex.get(rowKey);
423 return (rowIndex == null || columnIndex == null)
424 ? null : at(rowIndex, columnIndex);
[all …]
/external/guava/guava/src/com/google/common/collect/
DDenseImmutableTable.java68 int rowIndex = rowKeyToIndex.get(rowKey); in DenseImmutableTable() local
70 V existingValue = values[rowIndex][columnIndex]; in DenseImmutableTable()
72 values[rowIndex][columnIndex] = cell.getValue(); in DenseImmutableTable()
73 rowCounts[rowIndex]++; in DenseImmutableTable()
75 iterationOrderRow[i] = rowIndex; in DenseImmutableTable()
153 private final int rowIndex;
155 Row(int rowIndex) {
156 super(rowCounts[rowIndex]);
157 this.rowIndex = rowIndex;
167 return values[rowIndex][keyIndex];
[all …]
DArrayTable.java330 public V at(int rowIndex, int columnIndex) {
332 checkElementIndex(rowIndex, rowList.size());
334 return array[rowIndex][columnIndex];
352 public V set(int rowIndex, int columnIndex, @Nullable V value) {
354 checkElementIndex(rowIndex, rowList.size());
356 V oldValue = array[rowIndex][columnIndex];
357 array[rowIndex][columnIndex] = value;
445 Integer rowIndex = rowKeyToIndex.get(rowKey);
447 return (rowIndex == null || columnIndex == null)
448 ? null : at(rowIndex, columnIndex);
[all …]
DSparseImmutableTable.java39 Map<R, Integer> rowIndex = Maps.newHashMap(); in SparseImmutableTable() local
42 rowIndex.put(row, rows.size()); in SparseImmutableTable()
57 iterationOrderRow[i] = rowIndex.get(rowKey); in SparseImmutableTable()
97 int rowIndex = iterationOrderRow[index]; in getCell() local
98 Map.Entry<R, Map<C, V>> rowEntry = rowMap.entrySet().asList().get(rowIndex); in getCell()
107 int rowIndex = iterationOrderRow[index]; in getValue() local
108 ImmutableMap<C, V> row = (ImmutableMap<C, V>) rowMap.values().asList().get(rowIndex); in getValue()
/external/webrtc/webrtc/tools/loopback_test/
Dstat_tracker.js45 samplingFunctions[varName] = function (report, rowIndex) { argument
49 dataTable.setCell(rowIndex, columnIndex, sample);
69 var rowIndex = dataTable.addRow();
70 dataTable.setCell(rowIndex, timeColumnIndex, result[0].timestamp);
72 samplingFunctions[v](report, rowIndex);
/external/doclava/res/assets/templates/
Ddiff.cs71 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;
/external/autotest/frontend/client/src/autotest/common/table/
DDataTable.java47 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick); in onRowClicked() argument
212 public void removeRow(int rowIndex) { in removeRow() argument
213 jsonObjects.remove(rowIndex); in removeRow()
214 int realRow = rowIndex + 1; // header row in removeRow()
231 public JSONObject getRow(int rowIndex) { in getRow() argument
232 return jsonObjects.get(rowIndex); in getRow()
293 protected void notifyListenersClicked(int rowIndex, boolean isRightClick) { in notifyListenersClicked() argument
294 JSONObject row = getRow(rowIndex); in notifyListenersClicked()
296 listener.onRowClicked(rowIndex, row, isRightClick); in notifyListenersClicked()
DTableRenderer.java27 for (int rowIndex = startRow; rowIndex < startRow + maxRows && rowIndex < rows.length; in renderRowsAndAppend()
28 rowIndex++) { in renderRowsAndAppend()
29 CellInfo[] row = rows[rowIndex]; in renderRowsAndAppend()
DTableDecorator.java121 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) {} in onRowClicked() argument
/external/dng_sdk/source/
Ddng_gain_map.cpp317 for (int32 rowIndex = 0; rowIndex < fPoints.v; rowIndex++) in PutStream() local
326 stream.Put_real32 (Entry (rowIndex, in PutStream()
419 for (int32 rowIndex = 0; rowIndex < mapPoints.v; rowIndex++) in GetStream() local
430 map->Entry (rowIndex, colIndex, plane) = x; in GetStream()
441 (unsigned) rowIndex, in GetStream()
Ddng_gain_map.h93 real32 & Entry (uint32 rowIndex, in Entry() argument
99 rowIndex * fRowStep + in Entry()
108 const real32 & Entry (uint32 rowIndex, in Entry() argument
114 rowIndex * fRowStep + in Entry()
Ddng_jpeg_image.cpp129 uint32 rowIndex = tileIndex / tilesAcross; in Process() local
132 dng_rect tileArea = fIFD.TileArea (rowIndex, colIndex); in Process()
/external/icu/icu4c/source/common/
Dpropsvec.c293 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, in upvec_getRow() argument
298 if(pv->isCompacted || rowIndex<0 || rowIndex>=pv->rows) { in upvec_getRow()
303 row=pv->v+rowIndex*columns; in upvec_getRow()
500 int32_t rowIndex, uint32_t *row, int32_t columns, in upvec_compactToUTrie2Handler() argument
504 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, TRUE, pErrorCode); in upvec_compactToUTrie2Handler()
508 toUTrie2->initialValue=rowIndex; in upvec_compactToUTrie2Handler()
511 toUTrie2->errorValue=rowIndex; in upvec_compactToUTrie2Handler()
514 toUTrie2->maxValue=rowIndex; in upvec_compactToUTrie2Handler()
515 if(rowIndex>0xffff) { in upvec_compactToUTrie2Handler()
Dpropsvec.h107 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex,
131 int32_t rowIndex, uint32_t *row, int32_t columns,
173 int32_t rowIndex, uint32_t *row, int32_t columns,
/external/eigen/Eigen/src/SparseLU/
DSparseLU_SupernodalMatrix.h112 StorageIndex* rowIndex() { return m_rowind; } in rowIndex() function
114 const StorageIndex* rowIndex() const in rowIndex() function
205 inline Index index() const { return m_matrix.rowIndex()[m_idrow]; } in index()
287 irow = rowIndex()[iptr]; in solveInPlace()
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFContext.cpp158 uint32_t rowIndex = lineTable->lookupAddress(address, hiPC); in getLineInfoForAddress() local
159 if (rowIndex == -1U) in getLineInfoForAddress()
163 const DWARFDebugLine::Row &row = lineTable->Rows[rowIndex]; in getLineInfoForAddress()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorVolumePatch.h377 const Index rowIndex = (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes;
379 … const Index inputRow = rowIndex * m_row_strides + rowOffset * m_in_row_strides - m_rowPaddingTop;
387 const Index planeIndex = (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex));
451 const Index rowIndex = (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes;
458 rowIndex * m_row_strides + rowOffsets[0] - m_rowPaddingTop,
459 rowIndex * m_row_strides + rowOffsets[1] - m_rowPaddingTop};
469 const Index planeIndex = (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex));
DTensorImagePatch.h346 const Index rowIndex = patch2DIndex - colIndex * m_outputRows;
348 … const Index inputRow = rowIndex * m_row_strides + rowOffset * m_in_row_strides - m_rowPaddingTop;
398 const Index rowIndex = patch2DIndex - colIndex * m_outputRows;
402 const Index inputRows[2] = {rowIndex * m_row_strides + rowOffsets[0] -
403 m_rowPaddingTop, rowIndex * m_row_strides + rowOffsets[1] - m_rowPaddingTop};
/external/autotest/frontend/client/src/autotest/common/spreadsheet/
DSpreadsheet.java107 private int rowIndex = 0; field in Spreadsheet.RenderCommand
116 rowIndex, rowsPerIteration, true); in renderSomeRows()
117 rowIndex += rowsPerIteration; in renderSomeRows()
118 if (rowIndex > dataCells.length) { in renderSomeRows()
/external/autotest/frontend/client/src/autotest/afe/
DJobDetailView.java267 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) { in initialize()
283 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) { in initialize()
353 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) { in initialize()
DHostSelector.java100 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) { in initialize()
124 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) { in initialize()

12