Home
last modified time | relevance | path

Searched refs:currentRow (Results 1 – 11 of 11) sorted by relevance

/external/v8/benchmarks/
Dnavier-stokes.js132 var currentRow = j * rowSize;
133 ++currentRow;
135 x[currentRow] = x0[currentRow];
136 ++currentRow;
145 var currentRow = j * rowSize;
147 var lastX = x[currentRow];
148 ++currentRow;
150 …lastX = x[currentRow] = (x0[currentRow] + a*(lastX+x[++currentRow]+x[++lastRow]+x[++nextRow])) * i…
167 var currentRow = j * rowSize;
168 ++currentRow;
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
DRombergIntegrator.java73 double currentRow[] = new double[m]; in integrate() local
80 currentRow[0] = qtrap.stage(f, min, max, 0); in integrate()
81 double olds = currentRow[0]; in integrate()
86 previousRow = currentRow; in integrate()
87 currentRow = tmpRow; in integrate()
89 currentRow[0] = qtrap.stage(f, min, max, i); in integrate()
93 final double tIJm1 = currentRow[j - 1]; in integrate()
94 currentRow[j] = tIJm1 + (tIJm1 - previousRow[j - 1]) / r; in integrate()
96 final double s = currentRow[i]; in integrate()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowSQLiteCursor.java103 return (byte[]) this.currentRow.get(getColumnNames()[columnIndex]); in getBlob()
109 Object value = this.currentRow.get(getColumnNames()[columnIndex]); in getString()
124 Object o =this.currentRow.get(getColumnNames()[columnIndex]); in getShort()
132 Object o =this.currentRow.get(getColumnNames()[columnIndex]); in getInt()
140 Object o =this.currentRow.get(getColumnNames()[columnIndex]); in getLong()
148 Object o =this.currentRow.get(getColumnNames()[columnIndex]); in getFloat()
157 Object o =this.currentRow.get(getColumnNames()[columnIndex]); in getDouble()
178 currentRow = null; in close()
191 Object o = this.currentRow.get(getColumnNames()[columnIndex]); in isNull()
DShadowAbstractCursor.java21 protected Map<String, Object> currentRow; field in ShadowAbstractCursor
74 currentRow = null; in setPosition()
76 currentRow = rows.get(currentRowNumber); in setPosition()
/external/eigen/debug/gdb/
Dprinters.py85 self.currentRow = 0
97 row = self.currentRow
103 self.currentRow = self.currentRow + 1
104 if self.currentRow >= self.rows:
105 self.currentRow = 0
108 if self.currentRow >= self.rows:
114 self.currentRow = self.currentRow + 1
/external/libjpeg-turbo/doc/html/
Ddynsections.js51 var currentRow = $('#row_'+id);
52 var currentRowImages = currentRow.find("img");
55 var rows = currentRow.nextAll("tr");
74 currentRow.find("[id^=arr]").attr('src', 'ftv2mnode.png'); //open row
75 currentRow.find("[id^=img]").attr('src', 'ftv2folderopen.png'); //open row
/external/skia/debugger/QT/
DSkDebuggerGUI.cpp191 for (int row = fListWidget.currentRow() + 1; row < fListWidget.count(); in actionPlay()
256 int currentRow = fListWidget.currentRow(); in actionStepBack() local
257 if (currentRow != 0) { in actionStepBack()
258 fListWidget.setCurrentRow(currentRow - 1); in actionStepBack()
263 int currentRow = fListWidget.currentRow(); in actionStepForward() local
264 QString curRow = QString::number(currentRow); in actionStepForward()
266 if (currentRow < fListWidget.count() - 1) { in actionStepForward()
267 fListWidget.setCurrentRow(currentRow + 1); in actionStepForward()
321 fPausedRow = fListWidget.currentRow(); in pauseDrawing()
326 int currentRow = -1; in updateDrawCommandInfo() local
[all …]
/external/autotest/frontend/client/src/autotest/tko/
DSpreadsheetDataProcessor.java49 private int currentRow = 0; field in SpreadsheetDataProcessor.ProcessDataCommand
56 for (int i = 0; i < ROWS_PROCESSED_PER_ITERATION; i++, currentRow++) { in processSomeRows()
57 if (currentRow == counts.size()) { in processSomeRows()
61 processRow(counts.get(currentRow).isObject()); in processSomeRows()
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dwpagui.cpp651 if (networkList->currentRow() >= 0) in updateNetworks()
652 was_selected = networkList->currentRow(); in updateNetworks()
1155 if (networkList->currentRow() < 0) { in editListedNetwork()
1220 if (networkList->currentRow() < 0) { in removeListedNetwork()
1280 if (networkList->currentRow() < 0) in updateNetworkDisabledStatus()
1300 if (networkList->currentRow() < 0 || !enabled) in enableListedNetwork()
1312 if (networkList->currentRow() < 0 || !disabled) in disableListedNetwork()
/external/icu/icu4c/source/common/
Ducase.cpp404 currentRow(0), in FullCaseFoldingIterator()
412 const UChar *p=unfold+(currentRow*unfoldRowWidth); in next()
414 ++currentRow; in next()
418 if(currentRow>=unfoldRows) { return U_SENTINEL; } in next()
Ducase.h151 int32_t currentRow; variable