/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
H A D | PVecToTrieCompactHandler.java | 27 public void setRowIndexForErrorValue(int rowIndex) { argument 31 public void setRowIndexForInitialValue(int rowIndex) { argument 32 initialValue = rowIndex; 36 public void setRowIndexForRange(int start, int end, int rowIndex) { argument 37 builder.setRange(start, end + 1, rowIndex, true); 41 public void startRealValues(int rowIndex) { argument 42 if (rowIndex > 0xffff) {
|
H A D | PropsVectors.java | 295 * in row rowIndex. 300 public int[] getRow(int rowIndex) { argument 305 if (rowIndex < 0 || rowIndex > rows) { 306 throw new IllegalArgumentException("rowIndex out of bound!"); 309 System.arraycopy(v, rowIndex * columns + 2, rowToReturn, 0, 316 * in row rowIndex. 322 public int getRowStart(int rowIndex) { argument 327 if (rowIndex < 0 || rowIndex > row 341 getRowEnd(int rowIndex) argument 561 setRowIndexForRange(int start, int end, int rowIndex) argument 562 setRowIndexForInitialValue(int rowIndex) argument 563 setRowIndexForErrorValue(int rowIndex) argument 564 startRealValues(int rowIndex) argument [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | PVecToTrieCompactHandler.java | 23 public void setRowIndexForErrorValue(int rowIndex) { argument 27 public void setRowIndexForInitialValue(int rowIndex) { argument 28 initialValue = rowIndex; 32 public void setRowIndexForRange(int start, int end, int rowIndex) { argument 33 builder.setRange(start, end + 1, rowIndex, true); 37 public void startRealValues(int rowIndex) { argument 38 if (rowIndex > 0xffff) {
|
H A D | PropsVectors.java | 293 * in row rowIndex. 298 public int[] getRow(int rowIndex) { argument 303 if (rowIndex < 0 || rowIndex > rows) { 304 throw new IllegalArgumentException("rowIndex out of bound!"); 307 System.arraycopy(v, rowIndex * columns + 2, rowToReturn, 0, 314 * in row rowIndex. 320 public int getRowStart(int rowIndex) { argument 325 if (rowIndex < 0 || rowIndex > row 339 getRowEnd(int rowIndex) argument 559 setRowIndexForRange(int start, int end, int rowIndex) argument 560 setRowIndexForInitialValue(int rowIndex) argument 561 setRowIndexForErrorValue(int rowIndex) argument 562 startRealValues(int rowIndex) argument [all...] |
/external/skqp/src/core/ |
H A D | SkTaskGroup2D.cpp | 52 int& rowIndex = fThreadData[threadId].fRowIndex; local 58 RowData& rowData = fRowData[rowIndex]; 69 fWork(rowIndex, rowData.fNextColumn); 88 rowIndex = (rowIndex + 1) % fHeight;
|
/external/webrtc/webrtc/tools/loopback_test/ |
H A D | stat_tracker.js | 33 // once per getStats with the given report and a rowIndex for the 45 samplingFunctions[varName] = function (report, rowIndex) { 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/guava/guava/src/com/google/common/collect/ |
H A D | 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; field in class:DenseImmutableTable.Row 155 Row(int rowIndex) { argument 156 super(rowCounts[rowIndex]); 157 this.rowIndex = rowIndex; [all...] |
H A D | 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) { argument 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, in argument 690 final int rowIndex; field in class:ArrayTable.Row 692 Row(int rowIndex) argument [all...] |
H A D | 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/dng_sdk/source/ |
H A D | dng_gain_map.h | 93 real32 & Entry (uint32 rowIndex, argument 99 rowIndex * fRowStep + 108 const real32 & Entry (uint32 rowIndex, argument 114 rowIndex * fRowStep +
|
H A D | dng_gain_map.cpp | 317 for (int32 rowIndex = 0; rowIndex < fPoints.v; rowIndex++) 326 stream.Put_real32 (Entry (rowIndex, 419 for (int32 rowIndex = 0; rowIndex < mapPoints.v; rowIndex++) 430 map->Entry (rowIndex, colIndex, plane) = x; 441 (unsigned) rowIndex,
|
H A D | dng_jpeg_image.cpp | 129 uint32 rowIndex = tileIndex / tilesAcross; local 132 dng_rect tileArea = fIFD.TileArea (rowIndex, colIndex);
|
/external/autotest/frontend/client/src/autotest/common/table/ |
H A D | TableRenderer.java | 27 for (int rowIndex = startRow; rowIndex < startRow + maxRows && rowIndex < rows.length; 28 rowIndex++) { 29 CellInfo[] row = rows[rowIndex];
|
H A D | DataTable.java | 47 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick); argument 209 * @param rowIndex The index of the row, where the first data row is indexed 0. 212 public void removeRow(int rowIndex) { argument 213 jsonObjects.remove(rowIndex); 214 int realRow = rowIndex + 1; // header row 231 public JSONObject getRow(int rowIndex) { argument 232 return jsonObjects.get(rowIndex); 293 protected void notifyListenersClicked(int rowIndex, boolean isRightClick) { argument 294 JSONObject row = getRow(rowIndex); 296 listener.onRowClicked(rowIndex, ro [all...] |
/external/doclava/res/assets/templates/ |
H A D | 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;
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
H A D | 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) { argument 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, in argument 666 final int rowIndex; field in class:ArrayTable.Row 668 Row(int rowIndex) argument [all...] |
/external/icu/icu4c/source/common/ |
H A D | propsvec.h | 103 * @return NULL if rowIndex out of range and for illegal arguments, 107 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, 117 * The handler's rowIndex is the index of the row in the compacted 124 * where rowIndex is the length of the compacted array, 131 int32_t rowIndex, uint32_t *row, int32_t columns, 169 /* context=UPVecToUTrie2Context, creates the trie and stores the rowIndex values */ 173 int32_t rowIndex, uint32_t *row, int32_t columns,
|
H A D | propsvec.cpp | 293 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, argument 298 if(pv->isCompacted || rowIndex<0 || rowIndex>=pv->rows) { 303 row=pv->v+rowIndex*columns; 500 int32_t rowIndex, uint32_t *row, int32_t columns, 506 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, TRUE, pErrorCode); 510 toUTrie2->initialValue=rowIndex; 513 toUTrie2->errorValue=rowIndex; 516 toUTrie2->maxValue=rowIndex; 517 if(rowIndex> 498 upvec_compactToUTrie2Handler(void *context, UChar32 start, UChar32 end, int32_t rowIndex, uint32_t *row, int32_t columns, UErrorCode *pErrorCode) argument [all...] |
/external/tensorflow/tensorflow/core/kernels/ |
H A D | eigen_spatial_convolutions.h | 180 Index rowIndex, colIndex, otherIndex; local 181 computeBaseIndices(0, rowIndex, colIndex, otherIndex); 182 return loadCoeff(row, rowIndex, colIndex, otherIndex); 191 Index rowIndex, colIndex, otherIndex; local 192 computeBaseIndices(patchIndex, rowIndex, colIndex, otherIndex); 193 return loadCoeff(row, rowIndex, colIndex, otherIndex); 198 Index rowIndex, colIndex, otherIndex; local 199 computeBaseIndices(0, rowIndex, colIndex, otherIndex); 200 return loadPacket(row, rowIndex, colIndex, otherIndex); 207 Index rowIndex, colInde local 242 loadCoeff(Index patchId, Index rowIndex, Index colIndex, Index otherIndex) const argument 272 loadCoeffStandard(Index patchId, Index rowIndex, Index colIndex, Index otherIndex) const argument 295 loadPacket(Index patchId, Index rowIndex, Index colIndex, Index otherIndex) const argument 360 loadPacketFast(Index patchId, Index rowIndex, Index colIndex, Index otherIndex) const argument [all...] |
H A D | eigen_volume_patch.h | 283 const Index rowIndex = local 287 const Index inputRow = rowIndex * m_row_strides + 301 (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex)); 380 const Index rowIndex = local 388 rowIndex * m_row_strides + rowOffsets[0] - m_rowPaddingTop, 389 rowIndex * m_row_strides + rowOffsets[1] - m_rowPaddingTop}; 400 (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex)); 492 const Index rowIndex = local 494 const Index inputRow = rowIndex * m_row_strides + 507 patch3DIndex - colIndex * m_outputPlanesRows - rowIndex * m_outputRow [all...] |
/external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
H A D | DWARFContext.cpp | 158 uint32_t rowIndex = lineTable->lookupAddress(address, hiPC); local 159 if (rowIndex == -1U) 163 const DWARFDebugLine::Row &row = lineTable->Rows[rowIndex];
|
/external/eigen/Eigen/src/SparseLU/ |
H A D | SparseLU_SupernodalMatrix.h | 112 StorageIndex* rowIndex() { return m_rowind; } function in class:Eigen::internal::MappedSuperNodalMatrix 114 const StorageIndex* rowIndex() const function in class:Eigen::internal::MappedSuperNodalMatrix 205 inline Index index() const { return m_matrix.rowIndex()[m_idrow]; } 287 irow = rowIndex()[iptr];
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
H A D | TensorImagePatch.h | 346 const Index rowIndex = patch2DIndex - colIndex * m_outputRows; local 348 const Index inputRow = rowIndex * m_row_strides + rowOffset * m_in_row_strides - m_rowPaddingTop; 398 const Index rowIndex = patch2DIndex - colIndex * m_outputRows; local 402 const Index inputRows[2] = {rowIndex * m_row_strides + rowOffsets[0] - 403 m_rowPaddingTop, rowIndex * m_row_strides + rowOffsets[1] - m_rowPaddingTop};
|
H A D | TensorVolumePatch.h | 377 const Index rowIndex = (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes; local 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; local 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));
|
/external/skia/src/shaders/gradients/ |
H A D | Sk4fLinearGradient.cpp | 160 const int rowIndex = (y & 1) << 1; local 161 bias0 = dither_cell[rowIndex + 0]; 162 bias1 = dither_cell[rowIndex + 1];
|