HomeSort by relevance Sort by last modified time
    Searched refs:rowIndex (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTableRow.h 50 void setRowIndex(int rowIndex) { m_rowIndex = rowIndex; }
51 int rowIndex() const { return m_rowIndex; }
AccessibilityARIAGridRow.cpp 71 int index = rowIndex();
102 int index = rowIndex();
AccessibilityTable.cpp 347 for (unsigned rowIndex = 0; rowIndex < numRows; ++rowIndex) {
349 RenderTableRow* renderRow = tableSection->rowRendererAt(rowIndex);
478 unsigned rowIndex = rowIndexCounter - 1;
479 AccessibilityChildrenVector children = m_rows[rowIndex]->children();
AccessibilityTableCell.cpp 109 rowRange.first = renderCell->rowIndex();
161 int row = renderCell->rowIndex();
AccessibilityARIAGridCell.cpp 80 rowRange.first = static_cast<AccessibilityTableRow*>(parent)->rowIndex();
  /external/chromium_org/third_party/WebKit/Source/web/tests/
RenderTableRowTest.cpp 81 static const unsigned rowIndex = 10;
82 m_row->setRowIndex(rowIndex);
83 EXPECT_EQ(rowIndex, m_row->rowIndex());
89 EXPECT_EQ(maxRowIndex, m_row->rowIndex());
  /external/guava/guava/src/com/google/common/collect/
ArrayTable.java 213 * 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) {
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) {
244 V oldValue = array[rowIndex][columnIndex]
    [all...]
RegularImmutableTable.java 304 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_org/third_party/WebKit/Source/core/platform/image-decoders/png/
PNGImageDecoder.h 53 void rowAvailable(unsigned char* rowBuffer, unsigned rowIndex, int interlacePass);
PNGImageDecoder.cpp 92 static void PNGAPI rowAvailable(png_structp png, png_bytep rowBuffer, png_uint_32 rowIndex, int interlacePass)
94 static_cast<PNGImageDecoder*>(png_get_progressive_ptr(png))->rowAvailable(rowBuffer, rowIndex, interlacePass);
395 void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, unsigned rowIndex, int)
451 int y = rowIndex;
479 row = interlaceBuffer + (rowIndex * colorChannels * size().width());
  /external/chromium_org/third_party/icu/source/common/
propsvec.h 101 * @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,
propsvec.c 290 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex,
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>0xffff)
    [all...]
  /external/icu4c/common/
propsvec.h 101 * @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,
propsvec.c 291 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex,
296 if(pv->isCompacted || rowIndex<0 || rowIndex>=pv->rows) {
301 row=pv->v+rowIndex*columns;
498 int32_t rowIndex, uint32_t *row, int32_t columns,
502 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, TRUE, pErrorCode);
506 toUTrie2->initialValue=rowIndex;
509 toUTrie2->errorValue=rowIndex;
512 toUTrie2->maxValue=rowIndex;
513 if(rowIndex>0xffff)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowElement.h 40 int rowIndex() const;
HTMLTableRowElement.idl 22 readonly attribute long rowIndex;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableRow.h 57 void setRowIndex(unsigned rowIndex)
59 if (UNLIKELY(rowIndex > maxRowIndex))
62 m_rowIndex = rowIndex;
66 unsigned rowIndex() const
RenderTableSection.cpp 208 unsigned insertionRow = row->rowIndex();
258 const unsigned rowIndex = cell->rowIndex();
265 unsigned actualRow = row + rowIndex;
271 spanningRowsHeight.spanningCellHeightIgnoringBorderSpacing += borderSpacingForRow(rowIndex + rowSpan - 1);
280 const unsigned rowIndex = cell->rowIndex();
287 for (unsigned row = rowIndex; row < (rowIndex + rowSpan); row++) {
290 int toAdd = (tableHeight * m_grid[row].logicalHeight.percent() / 100) - rowsHeight[row - rowIndex];
    [all...]
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.h 58 int rowIndex, int width, int height);
71 uint8_t* vRows, int rowIndex, int width, int height);
YuvToJpegEncoder.cpp 116 uint8_t* vRows, int rowIndex, int width, int height) {
117 int numRows = (height - rowIndex) / 2;
120 int offset = ((rowIndex >> 1) + row) * fStrides[1];
191 uint8_t* vRows, int rowIndex, int width, int height) {
192 int numRows = height - rowIndex;
195 uint8_t* yuvSeg = yuv + (rowIndex + row) * fStrides[0];
  /external/doclava/res/assets/templates/
diff.cs 71 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/chromium_org/third_party/WebKit/Source/web/
PopupListBox.cpp 389 void PopupListBox::paintRow(GraphicsContext* gc, const IntRect& rect, int rowIndex)
393 IntRect rowRect = getRowBounds(rowIndex);
397 PopupMenuStyle style = m_popupClient->itemStyle(rowIndex);
401 if (rowIndex == m_selectedIndex) {
432 if (m_popupClient->itemIsSeparator(rowIndex)) {
449 Font itemFont = getRowFont(rowIndex);
462 String itemText = m_popupClient->itemText(rowIndex);
463 String itemLabel = m_popupClient->itemLabel(rowIndex);
464 String itemIcon = m_popupClient->itemIcon(rowIndex);
515 itemFont = m_popupClient->itemStyle(rowIndex).font()
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebAccessibilityObject.h 180 WEBKIT_EXPORT WebAccessibilityObject rowAtIndex(unsigned rowIndex) const;
184 WEBKIT_EXPORT unsigned rowIndex() const;
  /external/chromium_org/third_party/skia/include/views/animated/
SkWidgetViews.h 300 virtual void getRecord(int rowIndex, int fieldIndex, SkString* data);
302 virtual bool prepareWidgetEvent(SkEvent*, int rowIndex);
  /external/skia/include/views/animated/
SkWidgetViews.h 300 virtual void getRecord(int rowIndex, int fieldIndex, SkString* data);
302 virtual bool prepareWidgetEvent(SkEvent*, int rowIndex);

Completed in 301 milliseconds

1 2 3 4