/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 | 250 c.cells.append(cell); in addCell() 252 if (c.cells.size() > 1) in addCell() 1139 Vector<RenderTableCell*> cells; in setCellLogicalWidths() local 1146 for (unsigned i = 0; i < current.cells.size(); ++i) { in setCellLogicalWidths() 1147 if (current.cells[i]->rowSpan() > 1 || current.cells[i]->colSpan() > 1) { in setCellLogicalWidths() 1148 if (spanningCells.contains(current.cells[i])) in setCellLogicalWidths() 1150 spanningCells.add(current.cells[i]); in setCellLogicalWidths() 1152 cells.append(current.cells[i]); in setCellLogicalWidths() 1157 std::stable_sort(cells.begin(), cells.end(), compareCellPositions); in setCellLogicalWidths() 1158 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/guava/guava/src/com/google/common/collect/ |
D | ImmutableTable.java | 149 private final List<Cell<R, C, V>> cells = Lists.newArrayList(); field in ImmutableTable.Builder 182 cells.add(cellOf(rowKey, columnKey, value)); in put() 199 cells.add(immutableCell); in put() 227 int size = cells.size(); in build() 233 Iterables.getOnlyElement(cells)); in build() 236 cells, rowComparator, columnComparator); in build()
|
D | RegularImmutableTable.java | 90 List<Cell<R, C, V>> cells, in forCells() argument 93 checkNotNull(cells); in forCells() 115 Collections.sort(cells, comparator); in forCells() 117 return forCellsInternal(cells, rowComparator, columnComparator); in forCells() 121 Iterable<Cell<R, C, V>> cells) { in forCells() argument 122 return forCellsInternal(cells, null, null); in forCells() 130 forCellsInternal(Iterable<Cell<R, C, V>> cells, in forCellsInternal() argument 136 for (Cell<R, C, V> cell : cells) { in forCellsInternal()
|
/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
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
D | HTMLTableRowElement20.js | 116 cellsnodeList = testNode.cells; 129 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement13.js | 112 cellsnodeList = testNode.cells; 125 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement12.js | 113 cellsnodeList = testNode.cells; 126 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement21.js | 114 cellsnodeList = testNode.cells; 127 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement11.js | 114 cellsnodeList = testNode.cells; 127 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement14.js | 112 cellsnodeList = testNode.cells; 125 cellsnodeList = testNode.cells;
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
D | HTMLTableRowElement20.js | 116 cellsnodeList = testNode.cells; 129 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement14.js | 112 cellsnodeList = testNode.cells; 125 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement12.js | 113 cellsnodeList = testNode.cells; 126 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement21.js | 114 cellsnodeList = testNode.cells; 127 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement11.js | 114 cellsnodeList = testNode.cells; 127 cellsnodeList = testNode.cells;
|
D | HTMLTableRowElement13.js | 112 cellsnodeList = testNode.cells; 125 cellsnodeList = testNode.cells;
|
/external/libvorbis/vq/ |
D | vqgen.c | 98 FILE *cells; in vqgen_cellmetric() local 100 cells=fopen(buff,"w"); in vqgen_cellmetric() 144 fprintf(cells,"%g\n",spacings[i]); in vqgen_cellmetric() 145 fclose(cells); in vqgen_cellmetric() 350 FILE *cells; in vqgen_iterate() local 352 cells=fopen(buff,"w"); in vqgen_iterate() 494 fprintf(cells,"%g %g\n%g %g\n\n", in vqgen_iterate() 563 fclose(cells); in vqgen_iterate()
|
/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/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/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()
|