/third_party/skia/tests/ |
H A D | PDFTaggedTableTest.cpp | 69 for (int rowIndex = 0; rowIndex < kRowCount; rowIndex++) { in DEF_TEST() 71 row->fNodeId = 4 + rowIndex; in DEF_TEST() 76 int cellIndex = rowIndex * kColCount + colIndex; in DEF_TEST() 80 } else if (rowIndex == 0 || colIndex == 0) { in DEF_TEST() 85 headerIds.push_back(10 + rowIndex * kColCount); // Row header in DEF_TEST() 95 } else if (rowIndex == 0 || colIndex == 0) { in DEF_TEST() 97 "Table", "Scope", rowIndex == 0 ? "Column" : "Row"); in DEF_TEST() 120 for (int rowIndex in DEF_TEST() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | PVecToTrieCompactHandler.java | 23 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()
|
H A D | PropsVectors.java | 293 * in row rowIndex. 298 public int[] getRow(int rowIndex) { in getRow() argument 303 if (rowIndex < 0 || rowIndex > rows) { in getRow() 304 throw new IllegalArgumentException("rowIndex out of bound!"); in getRow() 307 System.arraycopy(v, rowIndex * columns + 2, rowToReturn, 0, in getRow() 314 * in row rowIndex. 320 public int getRowStart(int rowIndex) { in getRowStart() argument 325 if (rowIndex < 0 || rowIndex > row in getRowStart() 339 getRowEnd(int rowIndex) getRowEnd() argument 559 setRowIndexForRange(int start, int end, int rowIndex) setRowIndexForRange() argument 560 setRowIndexForInitialValue(int rowIndex) setRowIndexForInitialValue() argument 561 setRowIndexForErrorValue(int rowIndex) setRowIndexForErrorValue() argument 562 startRealValues(int rowIndex) startRealValues() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | PVecToTrieCompactHandler.java | 27 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()
|
H A D | PropsVectors.java | 295 * in row rowIndex. 300 public int[] getRow(int rowIndex) { in getRow() argument 305 if (rowIndex < 0 || rowIndex > rows) { in getRow() 306 throw new IllegalArgumentException("rowIndex out of bound!"); in getRow() 309 System.arraycopy(v, rowIndex * columns + 2, rowToReturn, 0, in getRow() 316 * in row rowIndex. 322 public int getRowStart(int rowIndex) { in getRowStart() argument 327 if (rowIndex < 0 || rowIndex > row in getRowStart() 341 getRowEnd(int rowIndex) getRowEnd() argument 564 setRowIndexForRange(int start, int end, int rowIndex) setRowIndexForRange() argument 565 setRowIndexForInitialValue(int rowIndex) setRowIndexForInitialValue() argument 566 setRowIndexForErrorValue(int rowIndex) setRowIndexForErrorValue() argument 567 startRealValues(int rowIndex) startRealValues() argument [all...] |
/third_party/node/deps/npm/node_modules/cli-table3/src/ |
H A D | table.js | 69 for (let rowIndex = 0; rowIndex < cells.length; rowIndex++) { 70 let row = cells[rowIndex]; 71 let heightOfRow = this.options.rowHeights[rowIndex]; 73 if (rowIndex === 0 || !this.options.style.compact || (rowIndex == 1 && headersPresent)) { 81 if (rowIndex + 1 == cells.length) {
|
H A D | layout-manager.js | 15 table.forEach(function (row, rowIndex) { 18 cell.y = rowIndex; 20 cell.x = rowIndex ? next(alloc, col) : col; 91 table.forEach(function (row, rowIndex) { 98 insertCell(rowSpanCell, table[rowIndex + i]); 105 for (let rowIndex = cellRows.length - 1; rowIndex >= 0; rowIndex--) { 106 let cellColumns = cellRows[rowIndex];
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
H A D | ScalarizeVecAndMatConstructorArgs.cpp | 35 TIntermBinary *ConstructMatrixIndexBinaryNode(TIntermTyped *symbolNode, int colIndex, int rowIndex) in ConstructMatrixIndexBinaryNode() argument 39 return new TIntermBinary(EOpIndexDirect, colVectorNode, CreateIndexNode(rowIndex)); in ConstructMatrixIndexBinaryNode() 156 int colIndex = 0, rowIndex = 0; in scalarizeArgs() local 162 ConstructMatrixIndexBinaryNode(argVariable->deepCopy(), colIndex, rowIndex); in scalarizeArgs() 164 rowIndex++; in scalarizeArgs() 165 if (rowIndex >= originalArg->getRows()) in scalarizeArgs() 167 rowIndex = 0; in scalarizeArgs()
|
H A D | ConvertUnsupportedConstructorsToFunctionCalls.cpp | 21 int rowIndex, in AppendMatrixElementArgument() 26 TIntermSwizzle *matElem = new TIntermSwizzle(matColN, {rowIndex}); in AppendMatrixElementArgument() 81 int rowIndex = 0; in AppendValuesFromMultipleArguments() local 94 TIntermSwizzle *vecS = new TIntermSwizzle(parameter->deepCopy(), {rowIndex++}); in AppendValuesFromMultipleArguments() 96 if (rowIndex == parameter->getNominalSize()) in AppendValuesFromMultipleArguments() 99 rowIndex = 0; in AppendValuesFromMultipleArguments() 104 AppendMatrixElementArgument(parameter, colIndex, rowIndex++, returnCtorArgs); in AppendValuesFromMultipleArguments() 105 if (rowIndex == parameter->getSecondarySize()) in AppendValuesFromMultipleArguments() 107 rowIndex = 0; in AppendValuesFromMultipleArguments() 19 AppendMatrixElementArgument(TIntermSymbol *parameter, int colIndex, int rowIndex, TIntermSequence *returnCtorArgs) AppendMatrixElementArgument() argument
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ShaderStorageBlockFunctionHLSL.cpp | 84 for (int rowIndex = 0; rowIndex < ssboFunction.type.getRows(); rowIndex++) in OutputSSBOLoadFunctionBody() 87 << rowIndex * ssboFunction.matrixStride << ")), "; in OutputSSBOLoadFunctionBody() 169 for (int rowIndex = 0; rowIndex < ssboFunction.type.getRows(); rowIndex++) in OutputSSBOStoreFunctionBody() 172 << rowIndex * ssboFunction.matrixStride << ", asuint(tmp_[" << rowIndex in OutputSSBOStoreFunctionBody()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_gain_map.h | 93 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()
|
H A D | dng_gain_map.cpp | 317 for (int32 rowIndex = 0; rowIndex < fPoints.v; rowIndex++) in PutStream() 326 stream.Put_real32 (Entry (rowIndex, in PutStream() 419 for (int32 rowIndex = 0; rowIndex < mapPoints.v; rowIndex++) in GetStream() 430 map->Entry (rowIndex, colIndex, plane) = x; in GetStream() 441 (unsigned) rowIndex, in GetStream()
|
H A D | dng_jpeg_image.cpp | 129 uint32 rowIndex = tileIndex / tilesAcross; in Process() local 132 dng_rect tileArea = fIFD.TileArea (rowIndex, colIndex); in Process()
|
H A D | dng_read_image.cpp | 2876 uint32 rowIndex = (tileIndex - plane * fTilesDown * fTilesAcross) / fTilesAcross; in Process() local 2878 uint32 colIndex = tileIndex - (plane * fTilesDown + rowIndex) * fTilesAcross; in Process() 2880 dng_rect tileArea = fIFD.TileArea (rowIndex, colIndex); in Process() 3275 for (uint32 rowIndex = 0; rowIndex < tilesDown; rowIndex++) in Read() 3283 dng_rect tileArea = ifd.TileArea (rowIndex, colIndex); in Read()
|
H A D | dng_ifd.h | 268 dng_rect TileArea (uint32 rowIndex,
|
/third_party/icu/icu4c/source/common/ |
H A D | propsvec.cpp | 293 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() 506 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, true, pErrorCode); in upvec_compactToUTrie2Handler() 510 toUTrie2->initialValue=rowIndex; in upvec_compactToUTrie2Handler() 513 toUTrie2->errorValue=rowIndex; in upvec_compactToUTrie2Handler() 516 toUTrie2->maxValue=rowIndex; in upvec_compactToUTrie2Handler() 517 if(rowIndex> in upvec_compactToUTrie2Handler() 498 upvec_compactToUTrie2Handler(void *context, UChar32 start, UChar32 end, int32_t rowIndex, uint32_t *row, int32_t columns, UErrorCode *pErrorCode) upvec_compactToUTrie2Handler() argument [all...] |
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,
|
/third_party/node/deps/icu-small/source/common/ |
H A D | propsvec.cpp | 293 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() 506 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, true, pErrorCode); in upvec_compactToUTrie2Handler() 510 toUTrie2->initialValue=rowIndex; in upvec_compactToUTrie2Handler() 513 toUTrie2->errorValue=rowIndex; in upvec_compactToUTrie2Handler() 516 toUTrie2->maxValue=rowIndex; in upvec_compactToUTrie2Handler() 517 if(rowIndex> in upvec_compactToUTrie2Handler() 498 upvec_compactToUTrie2Handler(void *context, UChar32 start, UChar32 end, int32_t rowIndex, uint32_t *row, int32_t columns, UErrorCode *pErrorCode) upvec_compactToUTrie2Handler() argument [all...] |
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,
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | propsvec.cpp | 293 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() 506 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, TRUE, pErrorCode); in upvec_compactToUTrie2Handler() 510 toUTrie2->initialValue=rowIndex; in upvec_compactToUTrie2Handler() 513 toUTrie2->errorValue=rowIndex; in upvec_compactToUTrie2Handler() 516 toUTrie2->maxValue=rowIndex; in upvec_compactToUTrie2Handler() 517 if(rowIndex> in upvec_compactToUTrie2Handler() 498 upvec_compactToUTrie2Handler(void *context, UChar32 start, UChar32 end, int32_t rowIndex, uint32_t *row, int32_t columns, UErrorCode *pErrorCode) upvec_compactToUTrie2Handler() argument [all...] |
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,
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | CsvTableCollector.java | 51 for (int rowIndex = 0; rowIndex < cells.size(); rowIndex++) { in writeCsv() 53 out.println(getRow(rowIndex).collect(joining(joiner)).trim()); in writeCsv()
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | matrix_utils.h | 52 const T &operator()(const unsigned int rowIndex, const unsigned int columnIndex) const in operator ()() argument 54 ASSERT(rowIndex < mRows); in operator ()() 56 return mElements[rowIndex * columns() + columnIndex]; in operator ()() 59 T &operator()(const unsigned int rowIndex, const unsigned int columnIndex) 61 ASSERT(rowIndex < mRows); 63 return mElements[rowIndex * columns() + columnIndex]; 66 const T &at(const unsigned int rowIndex, const unsigned int columnIndex) const 68 ASSERT(rowIndex < mRows); 70 return operator()(rowIndex, columnIndex);
|
/third_party/skia/src/shaders/gradients/ |
H A D | Sk4fLinearGradient.cpp | 161 const int rowIndex = (y & 1) << 1; in shadeSpan() local 162 bias0 = dither_cell[rowIndex + 0]; in shadeSpan() 163 bias1 = dither_cell[rowIndex + 1]; in shadeSpan()
|
/third_party/node/deps/v8/tools/profview/ |
H A D | profview.js | 490 index = row.rowIndex; 581 let index = row.rowIndex; 582 while (row.rowIndex < this.rows.rows.length && 1214 let index = row.rowIndex + 1; 1225 let index = row.rowIndex; 1244 let index = row.rowIndex; 1270 let index = row.rowIndex;
|