Searched refs:cell (Results 51 - 75 of 270) sorted by relevance

1234567891011

/external/guava/guava/src/com/google/common/collect/
H A DSingletonImmutableTable.java29 * An implementation of {@link ImmutableTable} that holds a single cell.
45 SingletonImmutableTable(Cell<R, C, V> cell) { argument
46 this(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
H A DRegularImmutableTable.java136 for (Cell<R, C, V> cell : cells) {
137 cellSetBuilder.add(cell);
138 rowSpaceBuilder.add(cell.getRowKey());
139 columnSpaceBuilder.add(cell.getColumnKey());
208 for (Cell<R, C, V> cell : cellSet) {
209 R rowKey = cell.getRowKey();
210 C columnKey = cell.getColumnKey();
211 V value = cell.getValue();
301 for (Cell<R, C, V> cell : cellSet) {
302 R rowKey = cell
[all...]
/external/chromium_org/chrome/browser/resources/ntp_android/
H A Dmostvisited_tablet.css46 body[device='tablet'] .thumbnail-cell {
54 html[dir='rtl'] body[device='tablet'] .thumbnail-cell {
129 body[device='tablet'] #recently_closed_list .cell {
140 html[dir='rtl'] body[device='tablet'] #recently_closed_list .cell {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DDataGrid.js96 var cell = document.createElement("th");
97 cell.className = columnIdentifier + "-column";
98 cell.columnIdentifier = columnIdentifier;
99 this._headerTableHeaders[columnIdentifier] = cell;
106 cell.appendChild(div);
109 cell.classList.add("sort-" + column.sort);
110 this._sortColumnCell = cell;
114 cell.addEventListener("click", this._clickInHeaderCell.bind(this), false);
115 cell.classList.add("sortable");
118 headerRow.appendChild(cell);
1717 var cell = event.target.enclosingNodeOrSelfWithNodeName("td"); variable
[all...]
H A DHeapSnapshotGridNodes.js76 var cell = WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier);
78 cell.classList.add("highlight");
79 return cell;
135 var cell = document.createElement("td");
136 cell.className = columnIdentifier + "-column";
150 cell.appendChild(div);
152 return cell;
407 var cell = columnIdentifier !== "object" ? this._createValueCell(columnIdentifier) : this._createObjectCell();
409 cell.classList.add("highlight");
410 return cell;
[all...]
H A DIndexedDBViews.js405 var cell = WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier);
412 cell.removeChildren();
413 this._formatValue(cell, value);
418 return cell;
421 _formatValue: function(cell, value)
424 var contents = cell.createChild("div", "source-code console-formatted-" + type);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp2-0x.cpp138 using cell = pair<void*, cell*>; // expected-error {{use of undeclared identifier 'cell'}} \
/external/chromium_org/chrome/browser/resources/
H A Dabout_stats.js133 // on a table cell element. To use it, put it in a <td> element:
140 var cell = event.target;
141 var cnum = cell.cellIndex;
143 var row = cell.parentNode;
189 if (cell._reverse) {
192 cell._reverse = false;
196 cell._reverse = true;
H A Dcertificate_viewer.css65 display: table-cell;
70 display: table-cell;
/external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/
H A Dmanager.js185 var cell = row.insertCell(-1);
186 cell.innerText = cookies.length;
187 cell.setAttribute("class", "cookie_count");
196 var cell = row.insertCell(-1);
197 cell.appendChild(button);
198 cell.setAttribute("class", "button");
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableCell.h81 // This function shouldn't be called on a detached cell.
150 // FIXME: For now we just assume the cell has the same block flow direction as the table. It's likely we'll
198 const BorderValue& borderAdjoiningCellBefore(const RenderTableCell* cell) argument
200 ASSERT_UNUSED(cell, table()->cellAfter(cell) == this);
201 // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell level.
205 const BorderValue& borderAdjoiningCellAfter(const RenderTableCell* cell) argument
207 ASSERT_UNUSED(cell, table()->cellBefore(cell) == this);
208 // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell leve
[all...]
/external/chromium_org/ui/webui/resources/css/
H A Dtable.css47 .table-row-cell {
52 .table-row-cell > * {
73 .table-header-cell {
/external/marisa-trie/tests/
H A Dunit-test.cc13 #include <marisa/cell.h>
422 marisa::Cell cell; local
424 ASSERT(cell.louds_pos() == 0);
425 ASSERT(cell.node() == 0);
426 ASSERT(cell.key_id() == 0);
427 ASSERT(cell.length() == 0);
429 cell.set_louds_pos(1);
430 cell.set_node(2);
431 cell.set_key_id(3);
432 cell
[all...]
/external/marisa-trie/v0_1_5/tests/
H A Dunit-test.cc13 #include <marisa_alpha/cell.h>
426 marisa_alpha::Cell cell; local
428 ASSERT(cell.louds_pos() == 0);
429 ASSERT(cell.node() == 0);
430 ASSERT(cell.key_id() == 0);
431 ASSERT(cell.length() == 0);
433 cell.set_louds_pos(1);
434 cell.set_node(2);
435 cell.set_key_id(3);
436 cell
[all...]
/external/chromium_org/v8/src/
H A Dmark-compact.cc1939 MarkBit::CellType* cell = it.CurrentCell(); local
1941 const MarkBit::CellType current_cell = *cell;
1946 const MarkBit::CellType next_cell = *(cell+1);
1958 MarkBit markbit(cell, 1 << offset, false);
1988 MarkBit::CellType* cell = it.CurrentCell(); local
1990 MarkBit::CellType current_cell = *cell;
2333 HeapObject* cell; local
2334 while ((cell = cell_iterator.Next()) != NULL) {
2335 ASSERT(cell->IsCell());
2336 if (IsMarked(cell)) {
2347 HeapObject* cell; local
3018 MarkBit::CellType* cell = it.CurrentCell(); local
3183 MarkBit::CellType* cell = it.CurrentCell(); local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c148 int nBytesPerCell; /* Bytes consumed per cell */
200 ** supported cell size is 48 bytes (8 byte rowid + ten 4 byte coordinates).
213 int iCell; /* Index of current cell in pNode */
550 ** Overwrite cell iCell of node pNode with the contents of pCell.
568 ** Remove cell the cell with index iCell from node pNode.
580 ** Insert the contents of cell pCell into node pNode. If the insert
660 ** Return the 64-bit integer value associated with cell iCell of
674 ** Return coordinate iCoord from cell iCell in node pNode.
687 ** Deserialize cell iCel
893 RtreeCell cell; local
947 RtreeCell cell; local
1484 RtreeCell cell; local
1575 RtreeCell cell; local
1656 RtreeCell cell; local
2398 RtreeCell cell; local
2596 RtreeCell cell; local
2733 RtreeCell cell; local
3103 RtreeCell cell; local
[all...]
/external/chromium_org/third_party/freetype/src/smooth/
H A Dftgrays.c48 /* coverage of the outline on each pixel cell. */
70 /* each pixel cell. */
325 /* determine the type used to store cell areas. This normally takes at */
495 /* Record the current cell in the table. */
500 PCell *pcell, cell; local
510 cell = *pcell;
511 if ( cell == NULL || cell->x > x )
514 if ( cell->x == x )
517 pcell = &cell
541 PCell cell = gray_find_cell( RAS_VAR ); local
1375 PCell cell; local
1406 PCell cell = ras.ycells[yindex]; local
[all...]
/external/freetype/src/smooth/
H A Dftgrays.c48 /* coverage of the outline on each pixel cell. */
70 /* each pixel cell. */
325 /* determine the type used to store cell areas. This normally takes at */
495 /* Record the current cell in the table. */
500 PCell *pcell, cell; local
510 cell = *pcell;
511 if ( cell == NULL || cell->x > x )
514 if ( cell->x == x )
517 pcell = &cell
541 PCell cell = gray_find_cell( RAS_VAR ); local
1375 PCell cell; local
1406 PCell cell = ras.ycells[yindex]; local
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_jacobian_writer.cc193 Cell& cell = row->cells[k]; local
194 cell.block_id = parameter_block->index();
195 cell.position = jacobian_layout_[i][k];
/external/chromium/chrome/browser/ui/cocoa/location_bar/
H A Dautocomplete_text_field.h123 // Convenience method to return the cell, casted appropriately.
124 - (AutocompleteTextFieldCell*)cell;
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dmobile_setup.css84 .header-cell {
88 .canvas-cell {
/external/chromium_org/chrome/browser/resources/options/
H A Dcontent_settings.css96 display: table-cell;
101 display: table-cell;
/external/chromium_org/chrome/browser/resources/task_manager/
H A Dtask_manager.css71 .table-row > .table-row-cell:first-child::before {
81 .table-row-cell {
H A Dmain.js342 cell: [],
385 // Sets new width of the cell.
386 var cellElement = cache.cell[i];
434 var cell = document.createElement('div');
435 cell.style.width = cm.getWidth(i) + '%';
436 cell.className = 'table-row-cell';
437 cell.id = 'column-' + pid + '-' + cm.getId(i);
438 cell.appendChild(
441 listItem.appendChild(cell);
[all...]
/external/clang/test/CodeGenCXX/
H A Dempty-classes.cpp61 FreeCell cell; member in union:PR8796::ThingOrCell

Completed in 6291 milliseconds

1234567891011