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

1234567891011

/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/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DTerrainGridListener.java44 public void tileAttached( Vector3f cell, TerrainQuad quad ); argument
46 public void tileDetached( Vector3f cell, TerrainQuad quad ); argument
/external/chromium/chrome/browser/resources/net_internals/
H A Dutil.js172 * @returns {!TablePrinterCell} the cell that was added.
176 var cell = new TablePrinterCell(cellText);
177 r.push(cell);
178 return cell;
189 * @returns {!TablePrinterCell} the cell that was added.
197 var cell = new TablePrinterCell(headerText);
198 this.rows_[0].push(cell);
199 return cell;
214 * Returns the cell at position (rowIndex, columnIndex), or null if there is
215 * no such cell
[all...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXTableColumn.cpp85 AXObject* cell = rowChildren[i].get(); local
86 if (cell->ariaRoleAttribute() == ColumnHeaderRole)
87 return cell;
124 RenderTableCell* cell = 0;
131 // we've reached a cell that doesn't even overlap our column
143 cell = testCell;
146 if (!cell)
149 return axObjectCache()->getOrCreate(cell);
172 AXTableCell* cell = parentTable->cellForColumnAndRow(m_columnIndex, i); local
173 if (!cell)
[all...]
H A DAXTableRow.cpp117 AXObject* cell = rowChildren[0].get();
118 if (!cell->isTableCell())
121 RenderObject* cellRenderer = toAXTableCell(cell)->renderer();
129 return cell;
H A DAXARIAGridRow.cpp122 AXObject* cell = rowChildren[i].get(); local
123 if (cell->ariaRoleAttribute() == RowHeaderRole)
124 return cell;
/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/rendering/
H A DRenderTableRow.cpp85 // This only happens when borders are collapsed, since they end up affecting the border sides of the cell
96 const BorderValue& RenderTableRow::borderAdjoiningStartCell(const RenderTableCell* cell) const
98 ASSERT_UNUSED(cell, cell->isFirstOrLastCellInRow());
99 // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell level.
103 const BorderValue& RenderTableRow::borderAdjoiningEndCell(const RenderTableCell* cell) const
105 ASSERT_UNUSED(cell, cell->isFirstOrLastCellInRow());
106 // 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
173 RenderTableCell* cell = toRenderTableCell(child); local
258 RenderTableCell* cell = toRenderTableCell(child); local
[all...]
H A DRenderTableSection.cpp59 static inline void updateLogicalHeightForCell(RenderTableSection::RowStruct& row, const RenderTableCell* cell) argument
62 if (cell->rowSpan() != 1)
65 Length logicalHeight = cell->style()->logicalHeight();
146 // If beforeChild is inside an anonymous cell/row, insert into the cell or into
198 void RenderTableSection::addCell(RenderTableCell* cell, RenderTableRow* row) argument
200 // We don't insert the cell if we need cell recalc as our internal columns' representation
206 unsigned rSpan = cell->rowSpan();
207 unsigned cSpan = cell
278 populateSpanningRowsHeightFromCell(RenderTableCell* cell, struct SpanningRowsHeight& spanningRowsHeight) argument
301 distributeExtraRowSpanHeightToPercentRows(RenderTableCell* cell, int totalPercent, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
331 distributeExtraRowSpanHeightToAutoRows(RenderTableCell* cell, int totalAutoRowsHeight, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
365 distributeExtraRowSpanHeightToRemainingRows(RenderTableCell* cell, int totalRemainingRowsHeight, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
435 RenderTableCell* cell = rowSpanCell.cells[0]; local
474 updateRowsHeightHavingOnlySpanningCells(RenderTableCell* cell, struct SpanningRowsHeight& spanningRowsHeight) argument
511 RenderTableCell* cell = rowSpanCells[i]; local
592 updateBaselineForCell(RenderTableCell* cell, unsigned row, LayoutUnit& baselineDescent) argument
620 RenderTableCell* cell; local
752 RenderTableCell* cell = current.primaryCell(); local
908 RenderTableCell* cell = cs.primaryCell(); local
1276 const RenderTableCell* cell = cs.primaryCell(); local
1327 paintCell(RenderTableCell* cell, PaintInfo& paintInfo, const LayoutPoint& paintOffset) argument
1487 RenderTableCell* cell = current.primaryCell(); local
1502 RenderTableCell* cell = current.primaryCell(); local
1637 const CellStruct& cell = cellAt(r, c); local
1689 RenderTableCell* cell = r[pos].primaryCell(); local
1754 RenderTableCell* cell = current.cells[i]; local
1771 removeCachedCollapsedBorders(const RenderTableCell* cell) argument
1780 setCachedCollapsedBorder(const RenderTableCell* cell, CollapsedBorderSide side, CollapsedBorderValue border) argument
1786 cachedCollapsedBorder(const RenderTableCell* cell, CollapsedBorderSide side) argument
1803 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
145 RenderTableCell* cell = toRenderTableCell(child); local
147 Length logicalWidth = cell->styleOrColLogicalWidth();
148 unsigned span = cell->colSpan();
153 fixedBorderBoxLogicalWidth = cell
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DShowMoreDataGridNode.js96 var cell = document.createElement("td");
98 cell.style.setProperty("padding-left", (this.depth * this.dataGrid.indentWidth) + "px");
99 cell.appendChild(this.showNext);
100 cell.appendChild(this.showAll);
101 cell.appendChild(this.showLast);
102 this._element.appendChild(cell);
109 cell = document.createElement("td");
110 this._element.appendChild(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/chromium/chrome/browser/resources/shared/js/cr/ui/table/
H A Dtable_list.js41 var cells = this.querySelectorAll('.table-row-cell');
76 var cell = this.ownerDocument.createElement('div');
77 cell.style.width = cm.getWidth(i) + '%';
78 cell.className = 'table-row-cell';
79 cell.appendChild(
82 listItem.appendChild(cell);
H A Dtable_header.js52 var headerCells = this.querySelectorAll('.table-header-cell');
80 var cell = this.ownerDocument.createElement('div');
81 cell.style.width = cm.getWidth(i) + '%';
82 cell.className = 'table-header-cell';
83 cell.addEventListener('click', this.createSortFunction_(i).bind(this));
85 cell.appendChild(this.createHeaderLabel_(i));
86 this.headerInner_.appendChild(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/browser/resources/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/omnibox/
H A Domnibox.js199 * suggestion that should go in this cell.
205 var cell = document.createElement('td');
209 // within this cell.
214 // Set the title (name of property) cell text.
220 // Set the value of the property cell text.
229 cell.appendChild(additionalInfoTable);
234 cell.className = 'check-mark';
235 cell.textContent = '✔';
237 cell.className = 'x-mark';
238 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.cpp124 RefPtr<HTMLTableCellElement> cell = HTMLTableCellElement::create(tdTag, document()); local
126 appendChild(cell, exceptionState);
133 insertBefore(cell, n, exceptionState);
135 return cell.release();
145 RefPtr<Node> cell = children->item(index); local
146 HTMLElement::removeChild(cell.get(), exceptionState);
/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;
/external/chromium_org/chrome/browser/resources/ntp_android/
H A Dbookmarks_tablet.css8 body[device='tablet'] .favicon-cell {

Completed in 912 milliseconds

1234567891011