Searched refs:cell (Results 1 - 25 of 233) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableRow.cpp84 // This only happens when borders are collapsed, since they end up affecting the border sides of the cell
95 const BorderValue& RenderTableRow::borderAdjoiningStartCell(const RenderTableCell* cell) const
97 ASSERT_UNUSED(cell, cell->isFirstOrLastCellInRow());
98 // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell level.
102 const BorderValue& RenderTableRow::borderAdjoiningEndCell(const RenderTableCell* cell) const
104 ASSERT_UNUSED(cell, cell->isFirstOrLastCellInRow());
105 // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell level.
124 RenderObject* cell local
137 RenderTableCell* cell = RenderTableCell::createAnonymousWithParentRenderer(this); local
146 RenderTableCell* cell = toRenderTableCell(child); local
[all...]
H A DRenderTableSection.cpp56 static inline void updateLogicalHeightForCell(RenderTableSection::RowStruct& row, const RenderTableCell* cell) argument
59 if (cell->rowSpan() != 1)
62 Length logicalHeight = cell->style()->logicalHeight();
143 // If beforeChild is inside an anonymous cell/row, insert into the cell or into
195 void RenderTableSection::addCell(RenderTableCell* cell, RenderTableRow* row) argument
197 // We don't insert the cell if we need cell recalc as our internal columns' representation
203 unsigned rSpan = cell->rowSpan();
204 unsigned cSpan = cell
275 populateSpanningRowsHeightFromCell(RenderTableCell* cell, struct SpanningRowsHeight& spanningRowsHeight) argument
298 distributeExtraRowSpanHeightToPercentRows(RenderTableCell* cell, int totalPercent, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
339 distributeExtraRowSpanHeightToAutoRows(RenderTableCell* cell, int totalAutoRowsHeight, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
372 distributeExtraRowSpanHeightToRemainingRows(RenderTableCell* cell, int totalRemainingRowsHeight, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
441 RenderTableCell* cell = rowSpanCell.cells[0]; local
480 updateRowsHeightHavingOnlySpanningCells(RenderTableCell* cell, struct SpanningRowsHeight& spanningRowsHeight) argument
517 RenderTableCell* cell = rowSpanCells[i]; local
615 updateBaselineForCell(RenderTableCell* cell, unsigned row, LayoutUnit& baselineDescent) argument
643 RenderTableCell* cell; local
746 RenderTableCell* cell = current.primaryCell(); local
908 RenderTableCell* cell = cs.primaryCell(); local
1197 const RenderTableCell* cell = cs.primaryCell(); local
1248 paintCell(RenderTableCell* cell, PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
1405 RenderTableCell* cell = current.primaryCell(); local
1420 RenderTableCell* cell = current.primaryCell(); local
1543 const CellStruct& cell = cellAt(r, c); local
1595 RenderTableCell* cell = r[pos].primaryCell(); local
1660 RenderTableCell* cell = current.cells[i]; local
1677 removeCachedCollapsedBorders(const RenderTableCell* cell) argument
1686 setCachedCollapsedBorder(const RenderTableCell* cell, CollapsedBorderSide side, CollapsedBorderValue border) argument
1692 cachedCollapsedBorder(const RenderTableCell* cell, CollapsedBorderSide side) argument
1709 setLogicalPositionForCell(RenderTableCell* cell, unsigned effectiveColumn) const argument
[all...]
H A DRenderTableCol.cpp171 const BorderValue& RenderTableCol::borderAdjoiningCellBefore(const RenderTableCell* cell) const
173 ASSERT_UNUSED(cell, table()->colElement(cell->col() + cell->colSpan()) == this);
177 const BorderValue& RenderTableCol::borderAdjoiningCellAfter(const RenderTableCell* cell) const
179 ASSERT_UNUSED(cell, table()->colElement(cell->col() - 1) == this);
H A DFixedTableLayout.cpp38 table's width, the width of the columns, and borders or cell
51 2. Otherwise, a cell in the first row with a value other than
53 the cell spans more than one column, the width is divided over the
57 table space (minus borders or cell spacing).
61 widths (plus cell spacing or borders). If the table is wider than
67 not affect column widths. Any cell that has content that overflows
141 for (RenderTableCell* cell = firstRow->firstCell(); cell; cell = cell
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dtable_printer.js56 * @return {!TablePrinterCell} the cell that was added.
60 var cell = new TablePrinterCell(cellText);
61 r.push(cell);
62 return cell;
76 * @return {!TablePrinterCell} the cell that was added.
84 var cell = new TablePrinterCell(headerText);
85 this.rows_[0].push(cell);
86 return cell;
101 * Returns the cell at position (rowIndex, columnIndex), or null if there is
102 * no such cell
[all...]
H A Dlogs_view.css6 .logs-view-log-cell-text,
7 .logs-view-log-cell-log {
11 .logs-view-log-row-collapsed .logs-view-log-cell-log {
15 .logs-view-log-row-expanded .logs-view-log-cell-log {
16 display: table-cell;
/external/chromium_org/net/disk_cache/blockfile/
H A Dindex_table_v3.cc47 // defines the cell id.
54 // 16 bits of the address so the file number is never stored on a cell. We have
63 uint32 GetCellLocation(const IndexCell& cell) { argument
64 return cell.first_part & kCellLocationMask;
67 uint32 GetCellSmallTableLocation(const IndexCell& cell) { argument
68 return cell.first_part & kCellSmallTableLocationMask;
71 uint32 GetCellId(const IndexCell& cell) { argument
72 return (cell.first_part >> kCellIdOffset) & kCellIdMask;
75 uint32 GetCellSmallTableId(const IndexCell& cell) { argument
76 return (cell
80 GetCellTimestamp(const IndexCell& cell) argument
84 GetCellReuse(const IndexCell& cell) argument
88 GetCellState(const IndexCell& cell) argument
92 GetCellGroup(const IndexCell& cell) argument
96 GetCellSum(const IndexCell& cell) argument
100 SetCellLocation(IndexCell* cell, uint32 address) argument
106 SetCellSmallTableLocation(IndexCell* cell, uint32 address) argument
112 SetCellId(IndexCell* cell, uint32 hash) argument
118 SetCellSmallTableId(IndexCell* cell, uint32 hash) argument
124 SetCellTimestamp(IndexCell* cell, int timestamp) argument
131 SetCellReuse(IndexCell* cell, int count) argument
138 SetCellState(IndexCell* cell, disk_cache::EntryState state) argument
143 SetCellGroup(IndexCell* cell, disk_cache::EntryGroup group) argument
148 SetCellSum(IndexCell* cell, int sum) argument
157 CalculateCellSum(const IndexCell& cell) argument
168 SanityCheck(const IndexCell& cell) argument
199 IsNormalState(const IndexCell& cell) argument
231 UpdateIterator(const disk_cache::EntryCell& cell, int limit_time, IndexIterator* iterator) argument
320 GetEntryCellForTest(int32 cell_num, uint32 hash, Addr address, IndexCell* cell, bool small_table) argument
366 EntryCell(int32 cell_num, uint32 hash, const IndexCell& cell, bool small_table) argument
683 EntryCell cell = FindEntryCellImpl(hash, address, state == ENTRY_FREE); local
731 EntryCell cell = FindEntryCell(hash, address); local
753 Save(EntryCell* cell) argument
824 CheckState(const EntryCell& cell) argument
847 Write(const EntryCell& cell) argument
1111 GetLocation(const IndexCell& cell) argument
1118 GetHashValue(const IndexCell& cell) argument
1125 GetFullHash(const IndexCell& cell, uint32 lower_part) argument
1135 IsHashMatch(const IndexCell& cell, uint32 hash) argument
1140 MisplacedHash(const IndexCell& cell, uint32 hash) argument
[all...]
/external/chromium_org/content/browser/geolocation/
H A Dlocation_arbitrator_impl_unittest.cc140 MockLocationProvider* cell() { function in class:content::GeolocationLocationArbitratorTest
167 EXPECT_FALSE(cell());
175 EXPECT_FALSE(cell());
183 ASSERT_TRUE(cell());
185 EXPECT_EQ(MockLocationProvider::LOW_ACCURACY, cell()->state_);
191 SetReferencePosition(cell());
196 EXPECT_EQ(cell()->position_.latitude,
199 EXPECT_FALSE(cell()->is_permission_granted_);
203 EXPECT_TRUE(cell()->is_permission_granted_);
209 ASSERT_TRUE(cell());
[all...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXARIAGridRow.cpp65 AXObject* cell = rowChildren[i].get(); local
66 if (cell->ariaRoleAttribute() == RowHeaderRole)
67 return cell;
H A DAXTableColumn.cpp84 AXObject* cell = rowChildren[i].get(); local
85 if (cell->ariaRoleAttribute() == ColumnHeaderRole)
86 return cell;
123 RenderTableCell* cell = 0;
130 // we've reached a cell that doesn't even overlap our column
142 cell = testCell;
145 if (!cell)
148 return axObjectCache()->getOrCreate(cell);
171 AXTableCell* cell = parentTable->cellForColumnAndRow(m_columnIndex, i); local
172 if (!cell)
[all...]
H A DAXTableRow.cpp116 AXObject* cell = rowChildren[0].get();
117 if (!cell->isTableCell())
120 RenderObject* cellRenderer = toAXTableCell(cell)->renderer();
128 return cell;
/external/valgrind/main/memcheck/tests/
H A Dleak-pool.c9 struct cell struct
11 struct cell *next;
92 struct cell *cells_static[N];
97 struct cell *cells_local[N];
101 struct cell **cells = static_roots ? cells_static : cells_local;
114 cells[i] = allocate_from_pool(p, sizeof(struct cell));
119 p->buf+(10 * sizeof(struct cell)),
120 20 * sizeof(struct cell) + 2);
/external/jemalloc/src/
H A Dckh.c49 * Search bucket for key and return the cell number if found; SIZE_T_MAX
55 ckhc_t *cell; local
59 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i];
60 if (cell->key != NULL && ckh->keycomp(key, cell->key))
68 * Search table for key and return cell number if found; SIZE_T_MAX otherwise.
73 size_t hashes[2], bucket, cell; local
81 cell = ckh_bucket_search(ckh, bucket, key);
82 if (cell != SIZE_T_MAX)
83 return (cell);
95 ckhc_t *cell; local
128 ckhc_t *cell; local
481 size_t cell; local
512 size_t cell; local
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
H A Dconstrained_window_button.h34 withCell:(id<ConstrainedWindowButtonDrawableCell>)cell
40 withCell:(id<ConstrainedWindowButtonDrawableCell>)cell
46 withCell:(id<ConstrainedWindowButtonDrawableCell>)cell
50 // A button cell used by ConstrainedWindowButton.
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dtable_util.js15 * Utility function to check if a particular table cell is a candidate
16 * header cell.
17 * @param {Node} cell The table cell.
18 * @return {boolean} Whether or not the table cell is acting as a header cell.
20 cvox.TableUtil.checkIfHeader = function(cell) {
27 * This function does not check whether this cell is referenced by another
40 return ((cell.tagName == 'TH') ||
41 cell
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DShowMoreDataGridNode.js108 var cell = this.createTD(columnIdentifier);
112 cell.style.setProperty("padding-left", (this.depth * this.dataGrid.indentWidth) + "px");
113 cell.appendChild(this.showNext);
114 cell.appendChild(this.showAll);
115 cell.appendChild(this.showLast);
117 return cell;
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DcalendarPicker.css48 .list-cell {
56 .list-cell.hidden {
60 .week-number-cell,
61 .day-cell {
71 .week-number-cell {
79 .day-cell {
83 .day-cell.highlighted.today,
84 .day-cell.today {
89 .week-number-cell.highlighted,
90 .day-cell
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DImmutableTable.java51 /** Returns an immutable table containing a single cell. */
91 for (Cell<? extends R, ? extends C, ? extends V> cell :
97 cellSetBuilder.add(cellOf((R) cell.getRowKey(),
98 (C) cell.getColumnKey(), (V) cell.getValue()));
139 * For empty or single-cell immutable tables, {@link #of()} and
187 * Adds the given {@code cell} to the table, making it immutable if
192 Cell<? extends R, ? extends C, ? extends V> cell) {
193 if (cell instanceof Tables.ImmutableCell) {
194 checkNotNull(cell
191 put( Cell<? extends R, ? extends C, ? extends V> cell) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree_util.tcl129 foreach cell $node {
130 set shouldbe [rtree_node_check $db $zTab [lindex $cell 0] $d]
131 if {$cell ne $shouldbe} {
132 puts "Node $iNode: Cell is: {$cell}, should be {$shouldbe}"
144 foreach cell $node {
145 set rowid [lindex $cell 0]
148 puts "Node $iNode: $mapping_table entry for cell $rowid is $mapping"
156 foreach cell $node {
157 set f2 [lindex $cell $ii]
181 foreach cell
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/
H A Dinfo.js7 * Quick template rendering function. For each cell passed to it, check
8 * to see if the cell's text content is a key in the supplied data array.
9 * If yes, replace the cell's contents with the corresponding value and
10 * unhide the cell. If no, then remove the cell's parent (tr) from the
15 var cell = cells[i];
16 var key = cell.innerText;
18 cell.innerText = data[key];
19 cell.parentElement.className = "rendered";
21 cell
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableRowElement.cpp134 RefPtrWillBeRawPtr<HTMLTableCellElement> cell = HTMLTableCellElement::create(tdTag, document()); local
136 appendChild(cell, exceptionState);
138 insertBefore(cell, children->item(index), exceptionState);
139 return cell.release();
149 RefPtrWillBeRawPtr<Element> cell = children->item(index); local
150 HTMLElement::removeChild(cell.get(), exceptionState);
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dtable.css21 .table-row-cell {
26 .table-row-cell > * {
45 .table-header-cell {
/external/chromium_org/chrome/browser/resources/
H A Dgesture_config.css48 display: table-cell;
59 display: table-cell;
63 display: table-cell;
73 display: table-cell;
H A Dgcm_internals.js53 * of sub-items; each of which will have a corresponding cell created in that
54 * row, and the sub-item will be displayed in the cell.
63 var cell = document.createElement('td');
65 cell.textContent = d;
66 row.appendChild(cell);
69 var cell = document.createElement('td');
70 cell.textContent = list[i][j];
71 row.appendChild(cell);
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_diagonal_matrix_test.cc64 CellInfo* cell = m.GetCell(row_block_id, col_block_id, local
69 EXPECT_TRUE(cell == NULL);
73 EXPECT_TRUE(cell != NULL);
80 MatrixRef(cell->values, row_stride, col_stride).block(

Completed in 2094 milliseconds

12345678910