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

1 2 3 4 5 6 7

  /external/webkit/Source/WebCore/rendering/
RenderTableSection.h 57 Vector<RenderTableCell*, 1> cells; member in struct:WebCore::RenderTableSection::CellStruct
65 return hasCells() ? cells[cells.size() - 1] : 0;
70 return hasCells() ? cells[cells.size() - 1] : 0;
73 bool hasCells() const { return cells.size() > 0; }
RenderTableSection.cpp 206 // we ignore height settings on rowspan cells
250 c.cells.append(cell);
251 // If cells overlap then we take the slow path for painting.
252 if (c.cells.size() > 1)
609 // do, but it will clip the cells that spill out of the table section. In
612 // time only). We may also not be handling row-spanning cells correctly.
742 // Now that our height has been determined, add in overflow from cells.
785 const BorderValue& cb = current.primaryCell()->style()->borderBefore(); // FIXME: Make this work with perpendicular and flipped cells.
836 const BorderValue& cb = current.primaryCell()->style()->borderAfter(); // FIXME: Make this work with perpendicular and flipped cells.
1139 Vector<RenderTableCell*> cells; local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTableRowElement.h 47 PassRefPtr<HTMLCollection> cells();
HTMLTableRowElement.idl 26 readonly attribute HTMLCollection cells;
HTMLTableRowElement.cpp 123 RefPtr<HTMLCollection> children = cells();
146 RefPtr<HTMLCollection> children = cells();
157 PassRefPtr<HTMLCollection> HTMLTableRowElement::cells() function in class:WebCore::HTMLTableRowElement
  /external/webkit/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/
cells.js 1 description('Test behavior of the HTMLTableRowElement cells attribute in cases where there is unusual nesting.');
10 return row.cells.length;
20 return row.cells.length;
  /external/iproute2/tc/
tc_core.c 70 * The align to ATM cells is used for determining the (ATM) SAR
81 int linksize, cells; local
82 cells = size / ATM_CELL_PAYLOAD;
84 cells++;
86 linksize = cells * ATM_CELL_SIZE; /* Use full cell size to add ATM tax */
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.h 74 // all the cells in the table
75 void cells(AccessibilityChildrenVector&);
  /external/valgrind/main/memcheck/tests/
leak-pool.c 101 struct cell **cells = static_roots ? cells_static : cells_local; local
114 cells[i] = allocate_from_pool(p, sizeof(struct cell));
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableRowElement05.js 78 The cells attribute specifies the collection of cells in this row.
81 the cells length attribute.
104 cellsnodeList = testNode.cells;
HTMLTableRowElement20.js 79 If index is -1 or equal to the number of cells, the new cell is
84 the cells length attribute which should be set to six.
89 and also the numbers of cells should now be seven.
116 cellsnodeList = testNode.cells;
129 cellsnodeList = testNode.cells;
HTMLTableRowElement11.js 82 the cells length attribute which should be set to six.
86 cell and make sure it is null and also the numbers of cells
114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
HTMLTableRowElement12.js 82 the cells length attribute which should be set to six.
86 and also the numbers of cells should now be seven.
113 cellsnodeList = testNode.cells;
126 cellsnodeList = testNode.cells;
HTMLTableRowElement13.js 82 the cells length attribute which should be set to six.
86 the number of cells which should now be five.
112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
HTMLTableRowElement14.js 82 the cells length attribute which should be set to six.
86 the number of cells which should now be five.
112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
HTMLTableRowElement21.js 83 the cells length attribute which should be set to six.
88 and also the numbers of cells should now be five.
114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableRowElement05.js 78 The cells attribute specifies the collection of cells in this row.
81 the cells length attribute.
104 cellsnodeList = testNode.cells;
HTMLTableRowElement20.js 79 If index is -1 or equal to the number of cells, the new cell is
84 the cells length attribute which should be set to six.
89 and also the numbers of cells should now be seven.
116 cellsnodeList = testNode.cells;
129 cellsnodeList = testNode.cells;
HTMLTableRowElement11.js 82 the cells length attribute which should be set to six.
86 cell and make sure it is null and also the numbers of cells
114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
HTMLTableRowElement12.js 82 the cells length attribute which should be set to six.
86 and also the numbers of cells should now be seven.
113 cellsnodeList = testNode.cells;
126 cellsnodeList = testNode.cells;
HTMLTableRowElement13.js 82 the cells length attribute which should be set to six.
86 the number of cells which should now be five.
112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
HTMLTableRowElement14.js 82 the cells length attribute which should be set to six.
86 the number of cells which should now be five.
112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
HTMLTableRowElement21.js 83 the cells length attribute which should be set to six.
88 and also the numbers of cells should now be five.
114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
  /external/guava/guava/src/com/google/common/collect/
ImmutableTable.java 133 * <p>By default, the order in which cells are added to the builder determines
149 private final List<Cell<R, C, V>> cells = Lists.newArrayList(); field in class:ImmutableTable.Builder
182 cells.add(cellOf(rowKey, columnKey, value));
199 cells.add(immutableCell);
227 int size = cells.size();
233 Iterables.getOnlyElement(cells));
236 cells, rowComparator, columnComparator);
  /external/markdown/markdown/extensions/
tables.py 59 """ Given a row of text, build table cells. """
64 cells = self._split_row(row, border)
65 # We use align here rather than cells to ensure every row
70 c.text = cells[i].strip()
77 """ split a row of text into list of cells. """

Completed in 526 milliseconds

1 2 3 4 5 6 7