Home
last modified time | relevance | path

Searched refs:currentRow (Results 1 – 14 of 14) 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/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/cldr/tools/java/org/unicode/cldr/util/
DStateDictionaryBuilder.java214 private boolean setUniqueValues(Row currentRow) { in setUniqueValues() argument
215 if (currentRow.hasUniqueValue == Uniqueness.UNIQUE) { in setUniqueValues()
224 for (Cell cell : currentRow.byteToCell.values()) { in setUniqueValues()
226 currentRow.hasUniqueValue = Uniqueness.AMBIGUOUS; in setUniqueValues()
228 currentRow.hasUniqueValue = Uniqueness.AMBIGUOUS; in setUniqueValues()
231 if (currentRow.hasUniqueValue == Uniqueness.AMBIGUOUS) { in setUniqueValues()
234 currentRow.hasUniqueValue = Uniqueness.UNIQUE; in setUniqueValues()
/external/epid-sdk/doc/html/
Ddynsections.js75 var currentRow = $('#row_'+id);
78 var rows = currentRow.nextAll("tr");
88 var currentRowSpans = currentRow.find("span");
94 var currentRowSpans = currentRow.find("span");
/external/tinyxml2/docs/
Ddynsections.js52 var currentRow = $('#row_'+id);
55 var rows = currentRow.nextAll("tr");
65 var currentRowSpans = currentRow.find("span");
71 var currentRowSpans = currentRow.find("span");
/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/skqp/tools/mdbviz/
Dmainwindow.cpp137 int currentRow = cur->data(0, Qt::UserRole).toInt(); in onCurrentItemChanged() local
138 fModel.setCurOp(currentRow); in onCurrentItemChanged()
/external/skia/tools/mdbviz/
Dmainwindow.cpp137 int currentRow = cur->data(0, Qt::UserRole).toInt(); in onCurrentItemChanged() local
138 fModel.setCurOp(currentRow); in onCurrentItemChanged()
/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.cpp421 currentRow(0), in FullCaseFoldingIterator()
429 const UChar *p=unfold+(currentRow*unfoldRowWidth); in next()
431 ++currentRow; in next()
435 if(currentRow>=unfoldRows) { return U_SENTINEL; } in next()
Ducase.h148 int32_t currentRow; variable
/external/cldr/tools/java/org/unicode/cldr/tool/
DShowLanguages.java2488 … private void printContains3(String start, List<String[]> rows, ArrayList<String> currentRow) {
2489 int len = currentRow.size();
2493 currentRow.add(getName(CLDRFile.TERRITORY_NAME, start, false));
2498 currentRow.add("");
2500 currentRow.set(len + 1, "???");
2501 rows.add(currentRow.toArray(stringArrayPattern));
2504 currentRow.set(len + 1, item);
2505 rows.add(currentRow.toArray(stringArrayPattern));
2508 currentRow.remove(len + 1);
2514 printContains3(item, rows, currentRow);
[all …]