Home
last modified time | relevance | path

Searched refs:currentRow (Results 1 – 7 of 7) 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/robolectric/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
94 row = self.currentRow
100 self.currentRow = self.currentRow + 1
101 if self.currentRow >= self.rows:
102 self.currentRow = 0
105 if self.currentRow >= self.rows:
111 self.currentRow = self.currentRow + 1
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dwpagui.cpp608 if (networkList->currentRow() >= 0) in updateNetworks()
609 was_selected = networkList->currentRow(); in updateNetworks()
1065 if (networkList->currentRow() < 0) { in editListedNetwork()
1130 if (networkList->currentRow() < 0) { in removeListedNetwork()
1190 if (networkList->currentRow() < 0) in updateNetworkDisabledStatus()
1210 if (networkList->currentRow() < 0 || !enabled) in enableListedNetwork()
1222 if (networkList->currentRow() < 0 || !disabled) in disableListedNetwork()
/external/icu4c/common/
Ducase.cpp403 currentRow(0), in FullCaseFoldingIterator()
411 const UChar *p=unfold+(currentRow*unfoldRowWidth); in next()
413 ++currentRow; in next()
417 if(currentRow>=unfoldRows) { return U_SENTINEL; } in next()
Ducase.h148 int32_t currentRow; variable