Searched defs:rowIndex (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXTableRow.h50 void setRowIndex(int rowIndex) { m_rowIndex = rowIndex; } argument
51 int rowIndex() const { return m_rowIndex; } function in class:WebCore::AXTableRow
H A DAXTable.cpp348 for (unsigned rowIndex = 0; rowIndex < numRows; ++rowIndex) {
350 RenderTableRow* renderRow = tableSection->rowRendererAt(rowIndex);
479 unsigned rowIndex = rowIndexCounter - 1; local
480 AccessibilityChildrenVector children = m_rows[rowIndex]->children();
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DRenderTableRowTest.cpp86 static const unsigned rowIndex = 10; local
87 m_row->setRowIndex(rowIndex);
88 EXPECT_EQ(rowIndex, m_row->rowIndex());
94 EXPECT_EQ(maxRowIndex, m_row->rowIndex());
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableRowElement.cpp51 int HTMLTableRowElement::rowIndex() const function in class:WebCore::HTMLTableRowElement
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableRow.h57 void setRowIndex(unsigned rowIndex) argument
59 if (UNLIKELY(rowIndex > maxRowIndex))
62 m_rowIndex = rowIndex;
66 unsigned rowIndex() const function in class:WebCore::FINAL
H A DRenderTableCell.h79 unsigned rowIndex() const function in class:WebCore::FINAL
83 return row()->rowIndex();
H A DRenderGrid.cpp811 const size_t rowIndex = (autoPlacementMajorAxisDirection() == ForColumns) ? minorAxisIndex : m_grid.size(); local
813 insertItemIntoGrid(gridItem, rowIndex, columnIndex);
H A DRenderTableSection.cpp210 unsigned insertionRow = row->rowIndex();
281 const unsigned rowIndex = cell->rowIndex(); local
288 unsigned actualRow = row + rowIndex;
298 spanningRowsHeight.spanningCellHeightIgnoringBorderSpacing += borderSpacingForRow(rowIndex + rowSpan - 1);
307 const unsigned rowIndex = cell->rowIndex(); local
314 for (unsigned row = rowIndex; row < (rowIndex + rowSpan); row++) {
317 int toAdd = (tableHeight * m_grid[row].logicalHeight.percent() / 100) - rowsHeight[row - rowIndex];
337 const unsigned rowIndex = cell->rowIndex(); local
371 const unsigned rowIndex = cell->rowIndex(); local
436 const unsigned rowIndex = cell->rowIndex(); local
480 const unsigned rowIndex = cell->rowIndex(); local
513 unsigned rowIndex = cell->rowIndex(); local
913 int rowIndex = cell->rowIndex(); local
1609 rowLogicalHeightChanged(unsigned rowIndex) argument
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
H A DKitKatBrowserAccessibilityManager.java49 int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) {
51 rowIndex, rowSpan, columnIndex, columnSpan, heading));
82 int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) {
48 setAccessibilityNodeInfoCollectionItemInfo(AccessibilityNodeInfo node, int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) argument
81 setAccessibilityEventCollectionItemInfo(AccessibilityEvent event, int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) argument
H A DBrowserAccessibilityManager.java499 int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) {
588 int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) {
591 bundle.putInt("AccessibilityNodeInfo.CollectionItemInfo.rowIndex", rowIndex);
498 setAccessibilityNodeInfoCollectionItemInfo(AccessibilityNodeInfo node, int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) argument
587 setAccessibilityEventCollectionItemInfo(AccessibilityEvent event, int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) argument
/external/chromium_org/third_party/icu/source/common/
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/icu4c/common/
H A Dpropsvec.c291 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, argument
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>
496 upvec_compactToUTrie2Handler(void *context, UChar32 start, UChar32 end, int32_t rowIndex, uint32_t *row, int32_t columns, UErrorCode *pErrorCode) argument
[all...]
/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...]
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
H A DPNGImageDecoder.cpp91 static void PNGAPI rowAvailable(png_structp png, png_bytep rowBuffer, png_uint_32 rowIndex, int interlacePass) argument
93 static_cast<PNGImageDecoder*>(png_get_progressive_ptr(png))->rowAvailable(rowBuffer, rowIndex, interlacePass);
395 void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, unsigned rowIndex, int) argument
451 int y = rowIndex;
479 row = interlaceBuffer + (rowIndex * colorChannels * size().width());
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DWebAXObjectProxy.cpp908 unsigned rowIndex = accessibilityObject().cellRowIndex(); local
911 snprintf(buffer, sizeof(buffer), "{%d, %d}", rowIndex, rowSpan);
/external/chromium_org/third_party/WebKit/Source/web/
H A DPopupListBox.cpp394 void PopupListBox::paintRow(GraphicsContext* gc, const IntRect& rect, int rowIndex) argument
398 IntRect rowRect = getRowBounds(rowIndex);
402 PopupMenuStyle style = m_popupClient->itemStyle(rowIndex);
406 if (rowIndex == m_selectedIndex) {
437 if (m_popupClient->itemIsSeparator(rowIndex)) {
454 Font itemFont = getRowFont(rowIndex);
467 String itemText = m_popupClient->itemText(rowIndex);
468 String itemLabel = m_popupClient->itemLabel(rowIndex);
469 String itemIcon = m_popupClient->itemIcon(rowIndex);
520 itemFont = m_popupClient->itemStyle(rowIndex)
539 getRowFont(int rowIndex) argument
[all...]
H A DWebAXObject.cpp875 WebAXObject WebAXObject::rowAtIndex(unsigned rowIndex) const
884 if (rowIndex < rows.size())
885 return WebAXObject(rows[rowIndex]);
905 unsigned WebAXObject::rowIndex() const function in class:blink::WebAXObject
913 return WebCore::toAXTableRow(m_private.get())->rowIndex();
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 2441 milliseconds