Searched refs:nextRow (Results 1 – 7 of 7) sorted by relevance
/external/v8/benchmarks/ |
D | navier-stokes.js | 146 var nextRow = (j + 1) * rowSize; 150 …tX = x[currentRow] = (x0[currentRow] + a*(lastX+x[++currentRow]+x[++lastRow]+x[++nextRow])) * invC; 183 var nextRow = (j + 1) * rowSize; 188 … = x[currentRow] = (x0[currentRow] + a * (lastX + x[currentRow] + x[lastRow] + x[nextRow])) * invC; 189 …urrentRow] = (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/chromium_org/v8/benchmarks/ |
D | navier-stokes.js | 146 var nextRow = (j + 1) * rowSize; 150 …tX = x[currentRow] = (x0[currentRow] + a*(lastX+x[++currentRow]+x[++lastRow]+x[++nextRow])) * invC; 183 var nextRow = (j + 1) * rowSize; 188 … = x[currentRow] = (x0[currentRow] + a * (lastX + x[currentRow] + x[lastRow] + x[nextRow])) * invC; 189 …urrentRow] = (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/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTableSection.cpp | 1414 …unsigned nextRow = std::upper_bound(m_rowPos.begin(), m_rowPos.end(), flippedRect.y()) - m_rowPos.… in spannedRows() local 1416 if (nextRow == m_rowPos.size()) in spannedRows() 1419 unsigned startRow = nextRow > 0 ? nextRow - 1 : 0; in spannedRows() 1423 if (m_rowPos[nextRow] >= flippedRect.maxY()) in spannedRows() 1424 endRow = nextRow; in spannedRows() 1426 …endRow = std::upper_bound(m_rowPos.begin() + nextRow, m_rowPos.end(), flippedRect.maxY()) - m_rowP… in spannedRows()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | DeleteSelectionCommand.cpp | 688 RefPtr<Node> nextRow = row->nextSibling(); in removePreviouslySelectedEmptyTableRows() local 691 row = nextRow.get(); in removePreviouslySelectedEmptyTableRows()
|
/external/chromium_org/chrome/third_party/chromevox/ |
D | chromeVoxChromePageScript.js | 878 previousCol:{backward:!0,announce:!0,skipInput:!0},nextRow:{forward:!0,announce:!0,skipInput:!0},ne… property 1179 …ildRows(this.activeTable_);return a.length};cvox.TraverseTable.prototype.nextRow=function(){return… method in cvox.TraverseTable 1182 ….AbstractWalker);cvox.TableWalker.prototype.next=function(a){return this.nextRow(a)};cvox.TableWal… 1186 cvox.TableWalker.prototype.nextRow=function(a){return this.goTo_(a,goog.bind(function(b){return thi… method in cvox.TableWalker 1192 …,cvox.TableWalker);cvox.RowWalker.prototype.next=function(a){return this.nextRow(a)};cvox.RowWalke…
|
D | chromeVoxChromeBackgroundScript.js | 1038 previousCol:{backward:!0,announce:!0,skipInput:!0},nextRow:{forward:!0,announce:!0,skipInput:!0},ne… property 1258 …ildRows(this.activeTable_);return a.length};cvox.TraverseTable.prototype.nextRow=function(){return… 1261 ….AbstractWalker);cvox.TableWalker.prototype.next=function(a){return this.nextRow(a)};cvox.TableWal… 1265 cvox.TableWalker.prototype.nextRow=function(a){return this.goTo_(a,goog.bind(function(b){return thi… 1271 …,cvox.TableWalker);cvox.RowWalker.prototype.next=function(a){return this.nextRow(a)};cvox.RowWalke…
|
D | chromeVoxChromeOptionsScript.js | 1202 …ildRows(this.activeTable_);return a.length};cvox.TraverseTable.prototype.nextRow=function(){return… method in cvox.TraverseTable 1205 ….AbstractWalker);cvox.TableWalker.prototype.next=function(a){return this.nextRow(a)};cvox.TableWal… 1209 cvox.TableWalker.prototype.nextRow=function(a){return this.goTo_(a,goog.bind(function(b){return thi… method in cvox.TableWalker 1215 …,cvox.TableWalker);cvox.RowWalker.prototype.next=function(a){return this.nextRow(a)};cvox.RowWalke…
|