/external/webkit/JavaScriptCore/runtime/ |
D | CollectorHeapIterator.h | 56 , m_cell(m_block == m_endBlock ? 0 : (*m_block)->cells) in CollectorHeapIterator() 57 …, m_endCell(m_block == m_endBlock ? 0 : (*m_block)->cells + HeapConstants<heapType>::cellsPerBlock) in CollectorHeapIterator() 73 m_cell = (*m_block)->cells; 74 m_endCell = (*m_block)->cells + HeapConstants<heapType>::cellsPerBlock;
|
D | Collector.h | 224 CollectorCell cells[CELLS_PER_BLOCK]; 234 SmallCollectorCell cells[SMALL_CELLS_PER_BLOCK];
|
D | Collector.cpp | 397 targetBlock->freeList = targetBlock->cells; in heapAllocate() 989 Cell* cell = curBlock->cells + i; in sweep() 1014 Cell* cell = curBlock->cells + i; in sweep()
|
/external/qemu/ |
D | console.c | 138 TextCell *cells; member 506 TextCell *cells, *c, *c1; in text_console_resize() local 517 cells = qemu_malloc(s->width * s->total_height * sizeof(TextCell)); in text_console_resize() 519 c = &cells[y * s->width]; in text_console_resize() 521 c1 = &s->cells[y * last_width]; in text_console_resize() 532 qemu_free(s->cells); in text_console_resize() 533 s->cells = cells; in text_console_resize() 572 c = &s->cells[y1 * s->width + x]; in update_xy() 601 c = &s->cells[y1 * s->width + x]; in console_show_cursor() 634 c = s->cells + y1 * s->width; in console_refresh() [all …]
|
/external/webkit/WebCore/html/ |
D | HTMLTableRowElement.cpp | 135 RefPtr<HTMLCollection> children = cells(); in insertCell() 158 RefPtr<HTMLCollection> children = cells(); in deleteCell() 169 PassRefPtr<HTMLCollection> HTMLTableRowElement::cells() in cells() function in WebCore::HTMLTableRowElement
|
D | HTMLTableRowElement.h | 51 PassRefPtr<HTMLCollection> cells();
|
D | HTMLTableRowElement.idl | 31 readonly attribute HTMLCollection cells;
|
D | HTMLDataGridCellElement.idl | 39 …attribute float progress; // For progress cells, a value from 0-1.0 indicating the state of progre…
|
/external/webkit/WebCore/accessibility/ |
D | AccessibilityTable.cpp | 338 void AccessibilityTable::cells(AccessibilityObject::AccessibilityChildrenVector& cells) in cells() function in WebCore::AccessibilityTable 349 cells.append(rowChildren); in cells()
|
D | AccessibilityTable.h | 72 void cells(AccessibilityChildrenVector&);
|
/external/tesseract/textord/ |
D | drawtord.h | 99 ICOORDELT_LIST *cells //cells to draw
|
D | drawtord.cpp | 426 ICOORDELT_LIST *cells //cells to draw in plot_row_cells() argument 429 ICOORDELT_IT cell_it = cells; in plot_row_cells()
|
/external/freetype/src/smooth/ |
D | ftgrays.c | 307 PCell cells; member 370 ras.cells = NULL; in gray_init_cells() 453 cell = ras.cells + ras.num_cells++; in gray_find_cell() 1792 ras.cells = (PCell)( (char*)ras.buffer + cell_start ); in gray_convert_glyph() 1793 if ( ras.cells >= cells_max ) in gray_convert_glyph() 1796 ras.max_cells = cells_max - ras.cells; in gray_convert_glyph()
|
/external/webkit/WebCore/inspector/front-end/ |
D | DataGrid.js | 192 var columnWidth = this.headerTableBody.rows[0].cells[i].offsetWidth; 219 left += this.headerTableBody.rows[0].cells[i].offsetWidth; 528 var firstRowCells = this.headerTableBody.rows[0].cells;
|
D | SourceFrame.js | 425 var cell = row.cells[1]; 748 var cell = row.cells[1];
|
/external/webkit/WebCore/css/ |
D | CSSPropertyNames.in | 60 empty-cells
|
/external/webkit/WebKitTools/iExploder/htdocs/ |
D | cssproperties.in | 144 empty-cells
|
/external/webkit/WebCore/bindings/objc/ |
D | DOMCSS.mm | 569 return [self getPropertyValue:@"empty-cells"]; 574 [self setProperty:@"empty-cells" value:emptyCells priority:@""];
|
D | PublicDOMInterfaces.h | 853 @property(readonly, retain) DOMHTMLCollection *cells;
|
/external/webkit/WebCore/accessibility/mac/ |
D | AccessibilityObjectWrapper.mm | 1345 AccessibilityObject::AccessibilityChildrenVector cells; 1346 static_cast<AccessibilityTable*>(m_object)->cells(cells); 1347 return convertToNSArray(cells);
|
/external/webkit/WebCore/page/mac/ |
D | FrameMac.mm | 174 // Any reason in practice to search all cells in that are above cell?
|
/external/webkit/V8Binding/v8/ |
D | ChangeLog | 151 Fixed issue where global property cells would escape after 174 Added separate paged heap space for global property cells and
|
/external/webkit/WebCore/ |
D | ChangeLog-2003-10-25 | 839 Beginning of work on border collapsing. This patch makes sure that cell spacing between cells is 840 ignored and that padding on tables is ignored. This ensures that there is no space between cells 841 or between the edges of cells and the border of the table itself. 3177 table cells with align=right not mess up and fixes margin problems 3178 in general with floated elements and table cells. 4731 Fix for 3182596, percentage height tables with cells that specify 7872 Fix for 3226030, percentage height tables inside table cells 9465 of overflow:hidden table cells, since we don't really have 9483 originating cells. That new column should be 0px wide, not 9790 (2) width="0" and height="0" should be ignored on table cells! [all …]
|
D | ChangeLog-2002-12-03 | 4 don't get wrapped in anonymous rows and cells. 730 Stop table cells from repainting the whole table when they 732 performance when links' containing blocks are table cells. 756 This keeps them from spilling out of table cells. 859 Fix for 3049663. Table cells don't grow to accommodate block 1359 quirk used for table cells) and make sure it works even when the 1755 to make table cells just get the padding from the table 1829 Fix for 2953367, padding is incorrectly inherited into table cells 3294 at the tops and bottoms of table cells. We match WinIE's 3390 bottom margin for table cells (they still collapse the top [all …]
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2002-12-03 | 196 block as soon as we see as many live cells as the the number of 197 used cells it had originally. 1616 Simplified array handling by using NULL to represent empty cells
|