Home
last modified time | relevance | path

Searched refs:cells (Results 1 – 25 of 89) sorted by relevance

1234

/external/webkit/Source/WebCore/rendering/
DRenderTableSection.h57 Vector<RenderTableCell*, 1> cells; member
65 return hasCells() ? cells[cells.size() - 1] : 0; in primaryCell()
70 return hasCells() ? cells[cells.size() - 1] : 0; in primaryCell()
73 bool hasCells() const { return cells.size() > 0; } in hasCells()
DRenderTableSection.cpp244 c.cells.append(cell); in addCell()
246 if (c.cells.size() > 1) in addCell()
1133 Vector<RenderTableCell*> cells; in setCellLogicalWidths() local
1140 for (unsigned i = 0; i < current.cells.size(); ++i) { in setCellLogicalWidths()
1141 if (current.cells[i]->rowSpan() > 1 || current.cells[i]->colSpan() > 1) { in setCellLogicalWidths()
1142 if (spanningCells.contains(current.cells[i])) in setCellLogicalWidths()
1144 spanningCells.add(current.cells[i]); in setCellLogicalWidths()
1146 cells.append(current.cells[i]); in setCellLogicalWidths()
1151 std::stable_sort(cells.begin(), cells.end(), compareCellPositions); in setCellLogicalWidths()
1152 int size = cells.size(); in setCellLogicalWidths()
[all …]
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
Dtable_list.js41 var cells = this.querySelectorAll('.table-row-cell');
42 if (cells.length % cm.size != 0) {
46 var rowsCount = cells.length / cm.size;
50 cells[row * cm.size + i].style.width = cm.getWidth(i) + '%';
/external/iproute2/tc/
Dtc_core.c81 int linksize, cells; in tc_align_to_atm() local
82 cells = size / ATM_CELL_PAYLOAD; in tc_align_to_atm()
84 cells++; in tc_align_to_atm()
86 linksize = cells * ATM_CELL_SIZE; /* Use full cell size to add ATM tax */ in tc_align_to_atm()
/external/webkit/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/
Dcells.js10 return row.cells.length;
20 return row.cells.length;
/external/webkit/Source/WebCore/html/
DHTMLTableRowElement.cpp123 RefPtr<HTMLCollection> children = cells(); in insertCell()
146 RefPtr<HTMLCollection> children = cells(); in deleteCell()
157 PassRefPtr<HTMLCollection> HTMLTableRowElement::cells() in cells() function in WebCore::HTMLTableRowElement
DHTMLTableRowElement.h47 PassRefPtr<HTMLCollection> cells();
/external/webkit/LayoutTests/dom/xhtml/level2/html/
DHTMLTableRowElement14.js112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
DHTMLTableRowElement13.js112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
DHTMLTableRowElement11.js114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
DHTMLTableRowElement21.js114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
DHTMLTableRowElement12.js113 cellsnodeList = testNode.cells;
126 cellsnodeList = testNode.cells;
DHTMLTableRowElement20.js116 cellsnodeList = testNode.cells;
129 cellsnodeList = testNode.cells;
DHTMLTableRowElement05.js104 cellsnodeList = testNode.cells;
/external/webkit/LayoutTests/dom/html/level2/html/
DHTMLTableRowElement14.js112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
DHTMLTableRowElement20.js116 cellsnodeList = testNode.cells;
129 cellsnodeList = testNode.cells;
DHTMLTableRowElement12.js113 cellsnodeList = testNode.cells;
126 cellsnodeList = testNode.cells;
DHTMLTableRowElement13.js112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
DHTMLTableRowElement11.js114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
DHTMLTableRowElement21.js114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
/external/qemu/
Dconsole.c171 TextCell *cells; member
550 TextCell *cells, *c, *c1; in text_console_resize() local
561 cells = qemu_malloc(s->width * s->total_height * sizeof(TextCell)); in text_console_resize()
563 c = &cells[y * s->width]; in text_console_resize()
565 c1 = &s->cells[y * last_width]; in text_console_resize()
576 qemu_free(s->cells); in text_console_resize()
577 s->cells = cells; in text_console_resize()
616 c = &s->cells[y1 * s->width + x]; in update_xy()
645 c = &s->cells[y1 * s->width + x]; in console_show_cursor()
678 c = s->cells + y1 * s->width; in console_refresh()
[all …]
/external/valgrind/main/memcheck/tests/
Dleak-pool.c101 struct cell **cells = static_roots ? cells_static : cells_local; in main() local
114 cells[i] = allocate_from_pool(p, sizeof(struct cell)); in main()
/external/markdown/markdown/extensions/
Dtables.py64 cells = self._split_row(row, border)
70 c.text = cells[i].strip()
/external/opencv/cvaux/src/
Dcvdpstereo.cpp105 #define CELL(d,x) cells[(d)+(x)*dispH] in icvFindStereoCorrespondenceByBirchfieldDP()
109 _CvDPCell* cells = (_CvDPCell*)cvAlloc(sizeof(_CvDPCell)*imgW*MAX(dispH,(imgH+1)/2)); in icvFindStereoCorrespondenceByBirchfieldDP() local
111 int* reliabilities = (int*)cells; in icvFindStereoCorrespondenceByBirchfieldDP()
196 _CvDPCell* _cell = cells + x*dispH; in icvFindStereoCorrespondenceByBirchfieldDP()
471 cvFree( &cells ); in icvFindStereoCorrespondenceByBirchfieldDP()
/external/webkit/Source/WebCore/accessibility/
DAccessibilityTable.cpp422 void AccessibilityTable::cells(AccessibilityObject::AccessibilityChildrenVector& cells) in cells() argument
432 cells.append(rowChildren); in cells()

1234