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

1 2

  /external/webkit/Source/WebCore/html/
HTMLTableCellElement.h 40 int rowSpan() const { return m_rowSpan; }
HTMLTableCellElement.idl 35 attribute long rowSpan;
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableCellElement23.js 78 The rowSpan attribute specifies the number of rows spanned by a table
81 Retrieve the rowSpan attribute of the second TH element and examine its
104 vrowspan = testNode.rowSpan;
HTMLTableCellElement24.js 78 The rowSpan attribute specifies the number of rows spanned by a
81 Retrieve the rowSpan attribute of the second TD element and examine its
104 vrowspan = testNode.rowSpan;
table28.js 79 The value of attribute rowspan of the tablecell element is read and checked against the expected value.
101 vrowspan = testNode.rowSpan;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableCellElement23.js 78 The rowSpan attribute specifies the number of rows spanned by a table
81 Retrieve the rowSpan attribute of the second TH element and examine its
104 vrowspan = testNode.rowSpan;
HTMLTableCellElement24.js 78 The rowSpan attribute specifies the number of rows spanned by a
81 Retrieve the rowSpan attribute of the second TD element and examine its
104 vrowspan = testNode.rowSpan;
table28.js 79 The value of attribute rowspan of the tablecell element is read and checked against the expected value.
101 vrowspan = testNode.rowSpan;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 424 int rowSpan = endRow - startRow + 1;
426 Rect cellBounds = grid.getCellBounds(startRow, startColumn, rowSpan, columnSpan);
452 int rowSpan = spans.getFirst();
456 grid.setRowSpanAttribute(node, rowSpan);
481 int rowSpan = spans.getFirst();
483 return String.format("ColumnSpan=%d, RowSpan=%d\n(Release Shift to resize widget itself)",
484 columnSpan, rowSpan);
509 int rowSpan = endRow - startRow + 1;
511 return Pair.of(rowSpan, columnSpan);
544 // for for example tweaking the rowspan/colspan of a cell? (but only in grid mode
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 253 // We only count baselines for views with rowSpan=1 because
255 if (view.row == row && view.rowSpan == 1) {
465 // next row we jump to is below the largest such rowspan - in other words,
500 nextRow = Math.max(nextRow, view.row + view.rowSpan);
545 row += view.rowSpan;
717 int targetRow = min(actualRowCount - 1, row + view.rowSpan - 1);
    [all...]
GridDropHandler.java 512 // TODO: The rowSpan should always be 1 for baseline alignments, since
522 int rowSpan = endRow - row + 1;
526 assert rowSpan == 1 : rowSpan;
530 // the row; don't add a rowspan since that will defeat baseline alignment etc
534 row += rowSpan - 1;
536 rowSpan = 1;
674 if (rowSpan > 1) {
675 mGrid.setGridAttribute(newChild, ATTR_LAYOUT_ROW_SPAN, rowSpan);
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableCell.cpp 108 rowRange.second = renderCell->rowSpan();
AccessibilityTable.cpp 484 if (cell && ((cell->row() + (cell->rowSpan()-1)) >= (int)sectionSpecificRow))
  /external/webkit/Source/WebCore/rendering/
RenderTableCell.h 43 int rowSpan() const { return m_rowSpan; }
RenderTableSection.cpp 191 int rSpan = cell->rowSpan();
199 // <TR><TD>1 <TD rowspan="2">2 <TD>3 <TD>4
206 // we ignore height settings on rowspan cells
376 if ((cell->row() + cell->rowSpan() - 1) > r)
379 int indx = max(r - cell->rowSpan() + 1, 0);
603 rHeight = m_rowPos[rindx + cell->rowSpan()] - m_rowPos[rindx] - vspacing;
    [all...]
RenderTableCell.cpp 81 m_rowSpan = tc->rowSpan();
624 // (3) Our row's after border. (FIXME: Deal with rowspan!)
638 if (row() + rowSpan() >= currSection->numRows()) {
    [all...]
RenderTreeAsText.cpp 374 ts << " [r=" << c.row() << " c=" << c.col() << " rs=" << c.rowSpan() << " cs=" << c.colSpan() << "]";
RenderTable.cpp     [all...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
GridLayoutConverter.java 355 int rowSpan = view.getRowSpan();
359 if (rowSpan > 1) {
361 mNamespace, ATTR_LAYOUT_ROW_SPAN, Integer.toString(rowSpan));
368 nextRow = Math.max(nextRow, row + rowSpan);
728 * Initializes the row and rowSpan attributes of the views
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 666 private static void setCellGroup(LayoutParams lp, int row, int rowSpan, int col, int colSpan) {
667 lp.setRowSpecSpan(new Interval(row, row + rowSpan));
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 646 private static void setCellGroup(LayoutParams lp, int row, int rowSpan, int col, int colSpan) {
647 lp.setRowSpecSpan(new Interval(row, row + rowSpan));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlinePage.java 800 String rowSpan = e.getAttributeNS(namespace, ATTR_LAYOUT_ROW_SPAN);
803 if (rowSpan.length() == 0) {
804 rowSpan = "1";
819 styledString.append(rowSpan, QUALIFIER_STYLER);
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
HTMLConverter.mm     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
jquery-1.3.2.js     [all...]

Completed in 705 milliseconds

1 2