/external/webkit/Source/WebCore/rendering/ |
D | RenderTableSection.h | 57 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()
|
D | RenderTableSection.cpp | 244 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/ |
D | table_list.js | 41 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/ |
D | tc_core.c | 81 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/ |
D | cells.js | 10 return row.cells.length; 20 return row.cells.length;
|
/external/webkit/Source/WebCore/html/ |
D | HTMLTableRowElement.cpp | 123 RefPtr<HTMLCollection> children = cells(); in insertCell() 146 RefPtr<HTMLCollection> children = cells(); in deleteCell() 157 PassRefPtr<HTMLCollection> HTMLTableRowElement::cells() in cells() function in WebCore::HTMLTableRowElement
|
D | HTMLTableRowElement.h | 47 PassRefPtr<HTMLCollection> cells();
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
D | HTMLTableRowElement14.js | 112 cellsnodeList = testNode.cells; 125 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement13.js | 112 cellsnodeList = testNode.cells; 125 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement11.js | 114 cellsnodeList = testNode.cells; 127 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement21.js | 114 cellsnodeList = testNode.cells; 127 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement12.js | 113 cellsnodeList = testNode.cells; 126 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement20.js | 116 cellsnodeList = testNode.cells; 129 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement05.js | 104 cellsnodeList = testNode.cells;
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
D | HTMLTableRowElement14.js | 112 cellsnodeList = testNode.cells; 125 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement20.js | 116 cellsnodeList = testNode.cells; 129 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement12.js | 113 cellsnodeList = testNode.cells; 126 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement13.js | 112 cellsnodeList = testNode.cells; 125 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement11.js | 114 cellsnodeList = testNode.cells; 127 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement21.js | 114 cellsnodeList = testNode.cells; 127 cellsnodeList = testNode.cells;
|
/external/qemu/ |
D | console.c | 171 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/ |
D | leak-pool.c | 101 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/ |
D | tables.py | 64 cells = self._split_row(row, border) 70 c.text = cells[i].strip()
|
/external/opencv/cvaux/src/ |
D | cvdpstereo.cpp | 105 #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/ |
D | AccessibilityTable.cpp | 422 void AccessibilityTable::cells(AccessibilityObject::AccessibilityChildrenVector& cells) in cells() argument 432 cells.append(rowChildren); in cells()
|