HomeSort by relevance Sort by last modified time
    Searched refs:nextRow (Results 1 - 6 of 6) sorted by null

  /external/cldr/tools/java/org/unicode/cldr/util/
StateDictionaryBuilder.java 127 Row newRow = replacements.get(cell.nextRow);
129 cell.nextRow = newRow;
170 if (matchingCell.nextRow == null && !last) {
171 matchingCell.nextRow = makeRow();
175 buildingCurrentAddRow = matchingCell.nextRow;
186 cell.nextRow = buildingCurrentAddRow = makeRow();
225 if (cell.nextRow != null && !setUniqueValues(cell.nextRow)) {
StateDictionary.java 105 * a Cell, where each cell has the {nextRow, delta result, returns flag}.
159 if (cell.nextRow != null) {
160 int temp = cell.nextRow.maximumDepth() + 1;
246 public Row nextRow; // next state
254 int rowOffset = nextRow == null ? 0 : rowDelta - nextRow.getReferenceNumber();
266 if (nextRow != null) {
270 result += "R" + nextRow.getReferenceNumber();
402 matchCurrentRow = cell.nextRow;
468 if (0 != (result = compare(cell1.nextRow, cell2.nextRow)))
    [all...]
  /external/v8/benchmarks/
navier-stokes.js 146 var nextRow = (j + 1) * rowSize;
150 lastX = x[currentRow] = (x0[currentRow] + a*(lastX+x[++currentRow]+x[++lastRow]+x[++nextRow])) * invC;
183 var nextRow = (j + 1) * rowSize;
188 lastX = x[currentRow] = (x0[currentRow] + a * (lastX + x[currentRow] + x[lastRow] + x[nextRow])) * invC;
189 lastY = y[currentRow] = (y0[currentRow] + a * (lastY + y[++currentRow] + y[++lastRow] + y[++nextRow])) * invC;
248 var nextRow = (j + 1) * rowSize;
250 div[++currentRow] = h * (u[++nextValue] - u[++prevValue] + v[++nextRow] - v[++previousRow]);
266 var nextRow = (j + 1) * rowSize;
270 v[currentPos] -= hScale * (p[++nextRow] - p[++prevRow]);
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsScissorMultiViewportTests.cpp 177 const bool nextRow = (scissorNdx != 0) && (scissorNdx % numCols == 0);
178 if (nextRow)
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawShaderLayerTests.cpp 668 const bool nextRow = (cellNdx != 0) && (cellNdx % numCols == 0);
669 if (nextRow)
    [all...]
vktDrawShaderViewportIndexTests.cpp 444 const bool nextRow = (cellNdx != 0) && (cellNdx % numCols == 0);
445 if (nextRow)
    [all...]

Completed in 288 milliseconds