Home
last modified time | relevance | path

Searched refs:rowIndex (Results 1 – 20 of 20) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DPVecToTrieCompactHandler.java20 public void setRowIndexForErrorValue(int rowIndex) { in setRowIndexForErrorValue() argument
23 public void setRowIndexForInitialValue(int rowIndex) { in setRowIndexForInitialValue() argument
24 initialValue = rowIndex; in setRowIndexForInitialValue()
27 public void setRowIndexForRange(int start, int end, int rowIndex) { in setRowIndexForRange() argument
28 builder.setRange(start, end + 1, rowIndex, true); in setRowIndexForRange()
31 public void startRealValues(int rowIndex) { in startRealValues() argument
32 if (rowIndex > 0xffff) { in startRealValues()
DPropsVectors.java296 public int[] getRow(int rowIndex) { in getRow() argument
301 if (rowIndex < 0 || rowIndex > rows) { in getRow()
305 System.arraycopy(v, rowIndex * columns + 2, rowToReturn, 0, in getRow()
318 public int getRowStart(int rowIndex) { in getRowStart() argument
323 if (rowIndex < 0 || rowIndex > rows) { in getRowStart()
326 return v[rowIndex * columns]; in getRowStart()
337 public int getRowEnd(int rowIndex) { in getRowEnd() argument
342 if (rowIndex < 0 || rowIndex > rows) { in getRowEnd()
345 return v[rowIndex * columns + 1] - 1; in getRowEnd()
554 public void setRowIndexForRange(int start, int end, int rowIndex); in setRowIndexForRange() argument
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DArrayTable.java328 public V at(int rowIndex, int columnIndex) {
330 checkElementIndex(rowIndex, rowList.size());
332 return array[rowIndex][columnIndex];
350 public V set(int rowIndex, int columnIndex, @Nullable V value) {
352 checkElementIndex(rowIndex, rowList.size());
354 V oldValue = array[rowIndex][columnIndex];
355 array[rowIndex][columnIndex] = value;
421 Integer rowIndex = rowKeyToIndex.get(rowKey);
423 return (rowIndex == null || columnIndex == null)
424 ? null : at(rowIndex, columnIndex);
[all …]
/external/guava/guava/src/com/google/common/collect/
DDenseImmutableTable.java68 int rowIndex = rowKeyToIndex.get(rowKey); in DenseImmutableTable() local
70 V existingValue = values[rowIndex][columnIndex]; in DenseImmutableTable()
72 values[rowIndex][columnIndex] = cell.getValue(); in DenseImmutableTable()
73 rowCounts[rowIndex]++; in DenseImmutableTable()
75 iterationOrderRow[i] = rowIndex; in DenseImmutableTable()
153 private final int rowIndex;
155 Row(int rowIndex) {
156 super(rowCounts[rowIndex]);
157 this.rowIndex = rowIndex;
167 return values[rowIndex][keyIndex];
[all …]
DArrayTable.java330 public V at(int rowIndex, int columnIndex) {
332 checkElementIndex(rowIndex, rowList.size());
334 return array[rowIndex][columnIndex];
352 public V set(int rowIndex, int columnIndex, @Nullable V value) {
354 checkElementIndex(rowIndex, rowList.size());
356 V oldValue = array[rowIndex][columnIndex];
357 array[rowIndex][columnIndex] = value;
445 Integer rowIndex = rowKeyToIndex.get(rowKey);
447 return (rowIndex == null || columnIndex == null)
448 ? null : at(rowIndex, columnIndex);
[all …]
DSparseImmutableTable.java39 Map<R, Integer> rowIndex = Maps.newHashMap(); in SparseImmutableTable() local
42 rowIndex.put(row, rows.size()); in SparseImmutableTable()
57 iterationOrderRow[i] = rowIndex.get(rowKey); in SparseImmutableTable()
97 int rowIndex = iterationOrderRow[index]; in getCell() local
98 Map.Entry<R, Map<C, V>> rowEntry = rowMap.entrySet().asList().get(rowIndex); in getCell()
107 int rowIndex = iterationOrderRow[index]; in getValue() local
108 ImmutableMap<C, V> row = (ImmutableMap<C, V>) rowMap.values().asList().get(rowIndex); in getValue()
/external/doclava/res/assets/templates/
Ddiff.cs71 if (tr.rowIndex + 1 < table.rows.length) {
72 var tbody = table.rows[tr.rowIndex + 1].parentNode;
79 if (tr.rowIndex + 1 < table.rows.length
80 && $(table.rows[tr.rowIndex + 1]).hasClass("class-entry")) {
81 var tbody = table.rows[tr.rowIndex + 1].parentNode;
98 var i = tr.rowIndex + 1;
106 var i = tr.rowIndex + 1;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBreakDictionary.java142 private short[] rowIndex = null; field in BreakDictionary
200 rowIndex = new short[l]; in readDictionaryFile()
201 for (int i = 0; i < rowIndex.length; i++) in readDictionaryFile()
202 rowIndex[i] = bytes.getShort(); in readDictionaryFile()
271 return internalAt(rowIndex[row], col + rowIndexShifts[row]); in at()
/external/icu/icu4c/source/common/
Dpropsvec.c291 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, in upvec_getRow() argument
296 if(pv->isCompacted || rowIndex<0 || rowIndex>=pv->rows) { in upvec_getRow()
301 row=pv->v+rowIndex*columns; in upvec_getRow()
498 int32_t rowIndex, uint32_t *row, int32_t columns, in upvec_compactToUTrie2Handler() argument
502 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, TRUE, pErrorCode); in upvec_compactToUTrie2Handler()
506 toUTrie2->initialValue=rowIndex; in upvec_compactToUTrie2Handler()
509 toUTrie2->errorValue=rowIndex; in upvec_compactToUTrie2Handler()
512 toUTrie2->maxValue=rowIndex; in upvec_compactToUTrie2Handler()
513 if(rowIndex>0xffff) { in upvec_compactToUTrie2Handler()
Dpropsvec.h105 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex,
129 int32_t rowIndex, uint32_t *row, int32_t columns,
171 int32_t rowIndex, uint32_t *row, int32_t columns,
/external/eigen/Eigen/src/SparseLU/
DSparseLU_SupernodalMatrix.h112 Index* rowIndex() { return m_rowind; } in rowIndex() function
114 const Index* rowIndex() const in rowIndex() function
205 inline Index index() const { return m_matrix.rowIndex()[m_idrow]; } in index()
284 irow = rowIndex()[iptr]; in solveInPlace()
/external/skia/include/views/animated/
DSkWidgetViews.h300 virtual void getRecord(int rowIndex, int fieldIndex, SkString* data);
302 virtual bool prepareWidgetEvent(SkEvent*, int rowIndex);
/external/owasp/sanitizer/lib/guava-libraries/
Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/owasp/sanitizer/distrib/lib/
Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/owasp/sanitizer/tools/findbugs/lib/
Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/ ...