Searched refs:rowIndex (Results 1 - 25 of 38) sorted by relevance

12

/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityTableRow.h52 void setRowIndex(int rowIndex) { m_rowIndex = rowIndex; } argument
53 int rowIndex() const { return m_rowIndex; } function in class:WebCore::AccessibilityTableRow
H A DAccessibilityARIAGridRow.cpp73 int index = rowIndex();
104 int index = rowIndex();
H A DAccessibilityARIAGridCell.cpp81 rowRange.first = static_cast<AccessibilityTableRow*>(parent)->rowIndex();
/external/guava/guava/src/com/google/common/collect/
H A DArrayTable.java213 * get(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex))}, but
216 * @param rowIndex position of the row key in {@link #rowKeyList()}
220 * rowIndex} is greater then or equal to the number of allowed row keys,
224 public V at(int rowIndex, int columnIndex) { argument
225 return array[rowIndex][columnIndex];
231 * put(rowKeyList().get(rowIndex), columnKeyList().get(columnIndex), value)}
234 * @param rowIndex position of the row key in {@link #rowKeyList()}
239 * rowIndex} is greater then or equal to the number of allowed row keys,
243 public V set(int rowIndex, int columnIndex, @Nullable V value) { argument
244 V oldValue = array[rowIndex][columnInde
337 getIndexed(Integer rowIndex, Integer columnIndex) argument
679 final int rowIndex; field in class:ArrayTable.Row
681 Row(int rowIndex) argument
715 final int rowIndex; field in class:ArrayTable.RowEntrySet
717 RowEntrySet(int rowIndex) argument
[all...]
H A DRegularImmutableTable.java304 int rowIndex = rowKeyToIndex.get(rowKey);
306 V existingValue = values[rowIndex][columnIndex];
309 values[rowIndex][columnIndex] = cell.getValue();
378 Integer rowIndex = rowKeyToIndex.get(rowKey);
380 return ((rowIndex == null) || (columnIndex == null)) ? null
381 : values[rowIndex][columnIndex];
386 Integer rowIndex = rowKeyToIndex.get(rowKey);
387 if (rowIndex == null) {
391 V[] row = values[rowIndex];
/external/chromium/chrome/browser/resources/options/
H A Dpassword_manager.js118 * @param rowIndex indicating the row to remove.
120 PasswordManager.removeSavedPassword = function(rowIndex) {
121 chrome.send('removeSavedPassword', [String(rowIndex)]);
126 * @param rowIndex indicating the row to remove.
128 PasswordManager.removePasswordException = function(rowIndex) {
129 chrome.send('removePasswordException', [String(rowIndex)]);
/external/webkit/Source/WebCore/html/
H A DHTMLTableRowElement.h38 int rowIndex() const;
H A DHTMLTableRowElement.idl24 readonly attribute long rowIndex;
/external/doclava/res/assets/templates/
H A 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/icu4c/common/
H A Dpropsvec.h101 * @return NULL if rowIndex out of range and for illegal arguments,
105 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex,
115 * The handler's rowIndex is the index of the row in the compacted
122 * where rowIndex is the length of the compacted array,
129 int32_t rowIndex, uint32_t *row, int32_t columns,
167 /* context=UPVecToUTrie2Context, creates the trie and stores the rowIndex values */
171 int32_t rowIndex, uint32_t *row, int32_t columns,
H A Dpropsvec.c290 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, argument
295 if(pv->isCompacted || rowIndex<0 || rowIndex>=pv->rows) {
300 row=pv->v+rowIndex*columns;
496 int32_t rowIndex, uint32_t *row, int32_t columns,
500 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, TRUE, pErrorCode);
504 toUTrie2->initialValue=rowIndex;
507 toUTrie2->errorValue=rowIndex;
510 toUTrie2->maxValue=rowIndex;
511 if(rowIndex>
494 upvec_compactToUTrie2Handler(void *context, UChar32 start, UChar32 end, int32_t rowIndex, uint32_t *row, int32_t columns, UErrorCode *pErrorCode) argument
[all...]
/external/webkit/LayoutTests/dom/html/level2/html/
H A DHTMLTableRowElement01.js78 The rowIndex attribute specifies the index of the row, relative to the
80 not display order. The rowIndex does not take into account sections
84 its rowIndex value.
106 vrowindex = testNode.rowIndex;
H A Dtable47.js79 The value of attribute rowIndex of the table element is read and checked against the expected value.
101 vrindex = testNode.rowIndex;
H A DHTMLCollection01.js83 retrieved and its "rowIndex" attribute is examined.
110 vrowindex = rowNode.rowIndex;
H A DHTMLCollection06.js83 retrieved and its "rowIndex" attribute is examined.
111 vrowindex = rowNode.rowIndex;
H A DHTMLCollection07.js83 retrieved and its "rowIndex" attribute is examined.
110 vrowindex = rowNode.rowIndex;
H A DHTMLCollection08.js83 resulting rowIndex attribute is examined and should be two.
110 vrowindex = rowNode.rowIndex;
/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A DHTMLTableRowElement01.js78 The rowIndex attribute specifies the index of the row, relative to the
80 not display order. The rowIndex does not take into account sections
84 its rowIndex value.
106 vrowindex = testNode.rowIndex;
H A Dtable47.js79 The value of attribute rowIndex of the table element is read and checked against the expected value.
101 vrindex = testNode.rowIndex;
H A DHTMLCollection01.js83 retrieved and its "rowIndex" attribute is examined.
110 vrowindex = rowNode.rowIndex;
H A DHTMLCollection06.js83 retrieved and its "rowIndex" attribute is examined.
111 vrowindex = rowNode.rowIndex;
H A DHTMLCollection07.js83 retrieved and its "rowIndex" attribute is examined.
110 vrowindex = rowNode.rowIndex;
H A DHTMLCollection08.js83 resulting rowIndex attribute is examined and should be two.
110 vrowindex = rowNode.rowIndex;
/external/webkit/Source/WebCore/platform/image-decoders/png/
H A DPNGImageDecoder.h54 void rowAvailable(unsigned char* rowBuffer, unsigned rowIndex, int interlacePass);
H A DPNGImageDecoder.cpp85 static void PNGAPI rowAvailable(png_structp png, png_bytep rowBuffer, png_uint_32 rowIndex, int interlacePass) argument
87 static_cast<PNGImageDecoder*>(png_get_progressive_ptr(png))->rowAvailable(rowBuffer, rowIndex, interlacePass);
332 void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, unsigned rowIndex, int interlacePass) argument
392 row = interlaceBuffer + (rowIndex * colorChannels * size().width());
399 int destY = scaledY(rowIndex);

Completed in 1980 milliseconds

12