Searched refs:cell (Results 26 - 50 of 270) sorted by relevance

1234567891011

/external/chromium_org/ui/webui/resources/js/cr/ui/table/
H A Dtable_list.js173 var cell = table.ownerDocument.createElement('div');
174 cell.style.width = cm.getWidth(i) + 'px';
175 cell.className = 'table-row-cell';
177 cell.style.textAlign = 'end';
178 cell.appendChild(
181 listItem.appendChild(cell);
H A Dtable_header.js54 var headerCells = this.querySelectorAll('.table-header-cell');
96 var cell = this.ownerDocument.createElement('div');
97 cell.style.width = cm.getWidth(i) + 'px';
98 cell.className = 'table-header-cell';
100 cell.addEventListener('click',
103 cell.appendChild(this.createHeaderLabel_(i));
104 this.headerInner_.appendChild(cell);
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXTable.cpp127 // go through the cell's and check for tell-tale signs of "data" table status
137 // If there's only one cell, it's not a good AXTable candidate.
145 // Store the background color of the table to check against cell's background colors.
153 // 1) must have at least one valid cell (and)
155 // 3) at least half of cells have different bg colors than the table, and there is cell spacing
172 RenderTableCell* cell = firstBody->primaryCellAt(row, col); local
173 if (!cell)
175 Node* cellNode = cell->node();
179 if (cell->width() < 1 || cell
[all...]
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
H A Dfailures.js65 function cellContainsConfiguration(cell, configuration)
67 return Array.prototype.some.call(cell.children, function(configurationElement) {
116 var cell = cellByBuildType(row, configuration);
117 if (cellContainsConfiguration(cell, configuration))
119 cell.appendChild(new ui.failures.Builder(builderName));
/external/ceres-solver/internal/ceres/
H A Dpartitioned_matrix_view.cc98 // by the first cell in each row block.
101 const Cell& cell = bs->rows[r].cells[0]; local
104 const int col_block_id = cell.block_id;
108 values + cell.position, row_block_size, col_block_size,
143 // by the first cell in each row block.
146 const Cell& cell = bs->rows[r].cells[0]; local
149 const int col_block_id = cell.block_id;
153 values + cell.position, row_block_size, col_block_size,
212 Cell& cell = row.cells.back(); local
213 cell
253 const Cell& cell = bs->rows[r].cells[0]; local
[all...]
H A Dblock_random_access_dense_matrix_test.cc57 CellInfo* cell = local
60 EXPECT_TRUE(cell != NULL);
80 // Fill the cell (i,j) with (i + 1) * (j + 1)
87 CellInfo* cell = m.GetCell( local
89 MatrixRef(cell->values, row_stride, col_stride).block(
H A Dblock_random_access_crs_matrix_test.cc75 CellInfo* cell = m.GetCell(row_block_id, col_block_id, local
78 EXPECT_TRUE(cell != NULL);
83 MatrixRef(cell->values, row_stride, col_stride).block(
H A Dblock_random_access_sparse_matrix_test.cc75 CellInfo* cell = m.GetCell(row_block_id, col_block_id, local
78 EXPECT_TRUE(cell != NULL);
85 MatrixRef(cell->values, row_stride, col_stride).block(
/external/chromium_org/third_party/WebKit/Source/core/platform/mac/
H A DThemeMac.mm148 static void setControlSize(NSCell* cell, const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor)
151 if (size != [cell controlSize]) // Only update if we have to, since AppKit does work even if the size is the same.
152 [cell setControlSize:(NSControlSize)size];
155 static void updateStates(NSCell* cell, ControlStates states)
160 bool oldPressed = [cell isHighlighted];
163 [cell setHighlighted:pressed];
166 bool oldEnabled = [cell isEnabled];
169 [cell setEnabled:enabled];
173 bool oldFocused = [cell showsFirstResponder];
176 [cell setShowsFirstResponde
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dautofill_options_list.js138 var cell = this.createEditableTextCell(this.value);
139 this.contentElement.appendChild(cell);
140 this.input = cell.querySelector('input');
253 var cell = this.createEditableTextCell(this.first);
254 this.contentElement.appendChild(cell);
255 this.firstNameInput = cell.querySelector('input');
257 cell = this.createEditableTextCell(this.middle);
258 this.contentElement.appendChild(cell);
259 this.middleNameInput = cell.querySelector('input');
261 cell
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
H A Dpopup.css31 .trunk-status-cell {
35 .trunk-status-cell > iframe {
53 display: table-cell;
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLTable.java110 final ICell cell = new Cell (m_th ? Tag.TH : Tag.TD);
111 add (cell);
113 return cell;
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dsalsa.css27 display: table-cell;
33 display: table-cell;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAutoTableLayout.cpp63 RenderTableCell* cell = current.primaryCell(); local
65 if (current.inColSpan || !cell)
68 bool cellHasContent = cell->children()->firstChild() || cell->style()->hasBorder() || cell->style()->hasPadding();
72 // A cell originates in this column. Ensure we have
77 if (cell->colSpan() == 1) {
78 columnLayout.minLogicalWidth = max<int>(cell->minPreferredLogicalWidth(), columnLayout.minLogicalWidth);
79 if (cell->maxPreferredLogicalWidth() > columnLayout.maxLogicalWidth) {
80 columnLayout.maxLogicalWidth = cell
195 RenderTableCell* cell = toRenderTableCell(cb); local
272 RenderTableCell* cell = m_spanCells[i]; local
451 insertSpanCell(RenderTableCell *cell) argument
[all...]
H A DRenderTable.cpp87 // In the collapsed border model, there is no cell spacing.
597 for (RenderObject* cell = row->firstChild(); cell; cell = cell->nextSibling()) {
598 if (!cell->isTableCell())
600 ASSERT(toRenderTableCell(cell)->table() == this);
601 toRenderTableCell(cell)->collectBorderValues(m_collapsedBorders);
810 // cell recalc. If they do, they will be synced up directly with m_columns later.
831 // cell recal
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ducmstate.c333 int32_t entry, sum, state, cell, count; local
353 for(cell=0; cell<256; ++cell) {
354 entry=states->stateTable[state][cell];
358 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
362 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
373 for(cell=0; cell<256; ++cell) {
425 int32_t entry, state, cell, count; local
928 int32_t state, cell, entry; local
[all...]
/external/icu4c/tools/toolutil/
H A Ducmstate.c333 int32_t entry, sum, state, cell, count; local
353 for(cell=0; cell<256; ++cell) {
354 entry=states->stateTable[state][cell];
358 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
362 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
373 for(cell=0; cell<256; ++cell) {
425 int32_t entry, state, cell, count; local
928 int32_t state, cell, entry; local
[all...]
/external/marisa-trie/lib/marisa/
H A Dtrie-inline.h6 #include "cell.h"
251 Cell cell; local
252 cell.set_louds_pos(get_child(node));
253 if (!louds_[cell.louds_pos()]) {
256 cell.set_node(louds_pos_to_node(cell.louds_pos(), node));
257 cell.set_key_id(node_to_key_id(cell.node()));
258 cell.set_length(key.length());
260 stack.push_back(cell);
[all...]
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dtrie-inline.h6 #include "cell.h"
256 Cell cell; local
257 cell.set_louds_pos(get_child(node));
258 if (!louds_[cell.louds_pos()]) {
261 cell.set_node(louds_pos_to_node(cell.louds_pos(), node));
262 cell.set_key_id(node_to_key_id(cell.node()));
263 cell.set_length(key.length());
265 stack.push_back(cell);
[all...]
/external/chromium_org/chrome/browser/resources/ntp_android/
H A Dmostvisited.css15 .thumbnail-cell {
20 .thumbnail-cell-shade {
28 .thumbnail-cell-shade-active {
32 body[device='phone'] .thumbnail-cell {
/external/skia/bench/
H A DTableBench.cpp25 // This trio of drawRects is then repeat for the next cell.
46 SkRect cell = SkRect::MakeLTRB(col * kCellWidth, local
50 canvas->drawRect(cell, cellPaint);
/external/emma/core/java12/com/vladium/emma/report/html/
H A DReportGenerator.java201 final HTMLTable.ICell cell = coverage.newCell ();
202 cell.setText (buf.toString (), true);
203 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT);
380 final HTMLTable.ICell cell = coverage.newCell ();
381 cell.setText (buf.toString (), true);
382 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT);
497 final HTMLTable.ICell cell = coverage.newCell ();
498 cell.setText (buf.toString (), true);
499 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT);
555 // final HTMLTable.ICell cell
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DProfileDataGridTree.js93 var cell = WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier);
96 cell.classList.add("highlight");
98 cell.classList.add("highlight");
101 return cell;
104 cell.classList.add("not-optimized");
107 cell.classList.add("highlight");
117 cell.insertBefore(urlElement, cell.firstChild);
120 return cell;
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Dviewrtree.tcl107 foreach cell [lrange $data 1 end] {
108 foreach {rowid x1 x2 y1 y2} $cell break
142 foreach cell $data {
143 foreach {rowid x1 x2 y1 y2} $cell break
160 set cell [lindex $data $iCell]
165 if {$cell eq ""} {
167 foreach cell $data {
168 foreach {rowid x1 x2 y1 y2} $cell break
177 foreach {rowid x1 x2 y1 y2} $cell break
/external/guava/guava/src/com/google/common/collect/
H A DTables.java53 * Returns an immutable cell with the specified row key, column key, and
56 * <p>The returned cell is serializable.
58 * @param rowKey the row key to be associated with the returned cell
59 * @param columnKey the column key to be associated with the returned cell
60 * @param value the value to be associated with the returned cell
263 public Cell<?, ?, ?> apply(Cell<?, ?, ?> cell) {
265 cell.getColumnKey(), cell.getRowKey(), cell.getValue());
305 Cell<?, ?, ?> cell
[all...]

Completed in 748 milliseconds

1234567891011