Searched defs:cell (Results 1 - 25 of 136) sorted by relevance

123456

/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/ceres-solver/internal/ceres/
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(
H A Dimplicit_schur_complement.cc153 const Cell& cell = block_diagonal_structure->rows[r].cells[0]; local
154 MatrixRef m(block_diagonal->mutable_values() + cell.position,
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];
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 Dschur_complement_solver.cc211 const Cell& cell = row.cells[c]; local
212 f_blocks.push_back(cell.block_id - num_eliminate_blocks);
/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/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXARIAGridRow.cpp122 AXObject* cell = rowChildren[i].get(); local
123 if (cell->ariaRoleAttribute() == RowHeaderRole)
124 return cell;
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...]
/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/clang/test/CodeGenCXX/
H A Dempty-classes.cpp61 FreeCell cell; member in union:PR8796::ThingOrCell
/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_org/chrome/browser/resources/task_manager/
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/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/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...]
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());
/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/content/renderer/accessibility/
H A Daccessibility_node_serializer.cc403 WebAXObject cell = src.cellForColumnAndRow( local
406 if (!cell.isDetached()) {
407 cell_id = cell.axID();
449 // cell, which is a child of both a row and a column. Because the cell's
/external/chromium_org/third_party/WebKit/Source/core/rendering/
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...]
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...]
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...]
/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...]

Completed in 805 milliseconds

123456