Home
last modified time | relevance | path

Searched refs:GridCell (Results 1 – 25 of 71) sorted by relevance

123

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/layout/
H A Dgrid.h165 class GridCell final : public DoublyLinkedListNode<GridCell> {
166 USING_FAST_MALLOC(GridCell);
203 GridCell* prev_{nullptr};
204 GridCell* next_{nullptr};
205 GridCell* prev_ortho_{nullptr};
206 GridCell* next_ortho_{nullptr};
232 DoublyLinkedList<GridCell>::AddResult Insert(GridCell*);
234 GridCell* cell,
235 GridCell* insertion_point);
244 DoublyLinkedList<GridCell> cells_;
[all …]
H A Dgrid.cc140 ListGrid::GridCell* ListGrid::GridTrack::Find(size_t index) const { in Find()
158 GridCell* cell) { in Insert()
162 cell, [this](ListGrid::GridCell* first, ListGrid::GridCell* second) { in Insert()
177 auto compare_cells = [this](ListGrid::GridCell* first, in Insert()
178 ListGrid::GridCell* second) { in Insert()
215 DoublyLinkedList<ListGrid::GridCell>::AddResult
216 ListGrid::GridTrack::InsertAfter(GridCell* cell, GridCell* insertion_point) { in InsertAfter()
302 GridCell* above_cell = nullptr; in Insert()
359 ListGrid::GridCell* ListGrid::GridCell::NextInDirection( in NextInDirection()
416 auto FindCellOrClosest = [](ListGrid::GridCell* cell_node, in NextEmptyGridArea()
[all …]
H A Dgrid_test.cc313 auto* cell = new ListGrid::GridCell(0, 0); in TEST_F()
319 auto* cell2 = new ListGrid::GridCell(1, 0); in TEST_F()
328 auto* cell3 = new ListGrid::GridCell(2, 0); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/layout/
H A Dgrid.h175 class GridCell final : public DoublyLinkedListNode<GridCell> {
176 USING_FAST_MALLOC(GridCell);
213 GridCell* prev_{nullptr};
214 GridCell* next_{nullptr};
215 GridCell* prev_ortho_{nullptr};
216 GridCell* next_ortho_{nullptr};
242 DoublyLinkedList<GridCell>::AddResult Insert(GridCell*);
244 GridCell* cell,
245 GridCell* insertion_point);
254 DoublyLinkedList<GridCell> cells_;
[all …]
H A Dgrid.cc140 ListGrid::GridCell* ListGrid::GridTrack::Find(size_t index) const { in Find()
158 GridCell* cell) { in Insert()
162 cell, [this](ListGrid::GridCell* first, ListGrid::GridCell* second) { in Insert()
177 auto compare_cells = [this](ListGrid::GridCell* first, in Insert()
178 ListGrid::GridCell* second) { in Insert()
214 DoublyLinkedList<ListGrid::GridCell>::AddResult
215 ListGrid::GridTrack::InsertAfter(GridCell* cell, GridCell* insertion_point) { in InsertAfter()
301 GridCell* above_cell = nullptr; in Insert()
358 ListGrid::GridCell* ListGrid::GridCell::NextInDirection( in NextInDirection()
425 auto FindCellOrClosest = [](ListGrid::GridCell* cell_node, in NextEmptyGridArea()
[all …]
/dports/science/axom/axom-0.6.1/src/axom/spin/tests/
H A Dspin_implicit_grid.cpp32 using GridCell = typename GridT::GridCell; typedef in ImplicitGridTest
49 using GridCell = typename TestFixture::GridCell; in TYPED_TEST() typedef
85 using GridCell = typename TestFixture::GridCell; in TYPED_TEST() typedef
101 GridCell res = GridCell::make_point(12, 8, 16); in TYPED_TEST()
120 GridCell expRes = GridCell::ones(); in TYPED_TEST()
126 GridCell zeroRes = GridCell::zero(); in TYPED_TEST()
128 GridCell expRes = GridCell::ones(); in TYPED_TEST()
137 using GridCell = typename TestFixture::GridCell; in TYPED_TEST() typedef
232 GridCell gridCell = GridCell::make_point(i, j, k); in TYPED_TEST()
275 using GridCell = typename TestFixture::GridCell; in TYPED_TEST() typedef
[all …]
H A Dspin_rectangular_lattice.cpp20 using GridCell = LatticeT::GridCell; typedef
34 using GridCell = LatticeT::GridCell; typedef
48 using GridCell = LatticeT::GridCell; typedef
487 GridCell midCell = lattice.gridCell(midPoint); in TEST()
602 GridCell cell = lattice.gridCell(pt); in TEST()
603 EXPECT_EQ(GridCell::zero(), cell); in TEST()
611 GridCell cell = lattice.gridCell(pt); in TEST()
612 EXPECT_EQ(GridCell::make_point(1, 0), cell); in TEST()
616 GridCell testCell = GridCell::make_point(-1, -10); in TEST()
621 GridCell cell = lattice.gridCell(pt); in TEST()
[all …]
/dports/science/axom/axom-0.6.1/src/axom/spin/
H A DImplicitGrid.hpp58 using GridCell = primal::Point<IndexType, NDIMS>; typedef in axom::spin::ImplicitGrid
93 const GridCell* gridRes, in ImplicitGrid()
126 GridCell res; in ImplicitGrid()
129 res = GridCell(gridRes, NDIMS); in ImplicitGrid()
156 const GridCell* gridRes, in initialize()
168 m_gridRes = GridCell(dimRes); in initialize()
172 m_gridRes = GridCell(*gridRes); in initialize()
203 const GridCell& gridResolution() const { return m_gridRes; } in gridResolution()
260 const GridCell gridCell = m_lattice.gridCell(pt); in getCandidates()
347 bool contains(const GridCell& gridCell, IndexType idx) const in contains()
[all …]
H A DRectangularLattice.hpp56 using GridCell = primal::Point<CellCoordType, NDIMS>; typedef in axom::spin::RectangularLattice
142 GridCell gridCell(const SpacePoint& pt) const in gridCell()
144 GridCell cell; in gridCell()
158 SpacePoint spacePoint(const GridCell& cell) const in spacePoint()
174 SpatialBoundingBox cellBounds(const GridCell& cell) const in cellBounds()
178 spacePoint(GridCell(cell.array() + GridCell(1).array()))); in cellBounds()
H A DUniformGrid.hpp68 using GridCell = typename LatticeType::GridCell; typedef in axom::spin::UniformGrid
199 GridCell getClampedGridCell(const PointType& pt) const;
332 GridCell cell = getClampedGridCell(pt); in getBinIndex()
394 const GridCell lowerCell = getClampedGridCell(BB.getMin()); in getBinsForBbox()
395 const GridCell upperCell = getClampedGridCell(BB.getMax()); in getBinsForBbox()
457 typename UniformGrid<T, NDIMS>::GridCell UniformGrid<T, NDIMS>::getClampedGridCell( in getClampedGridCell()
460 GridCell cell = m_lattice.gridCell(pt); in getClampedGridCell()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ios/chrome/browser/ui/tab_switcher/tab_grid/grid/
H A Dgrid_cell.h13 @class GridCell;
17 - (void)closeButtonTappedForCell:(GridCell*)cell;
22 @interface GridCell : UICollectionViewCell
40 @interface GridTransitionSelectionCell : GridCell
43 + (instancetype)transitionCellFromCell:(GridCell*)cell;
46 @interface GridTransitionCell : GridCell <GridToTabTransitionView>
49 + (instancetype)transitionCellFromCell:(GridCell*)cell;
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/feed/core/javatests/src/org/chromium/chrome/browser/feed/library/piet/
H A DGridRowAdapterTest.java214 .addCells(GridCell.newBuilder() in testOnBindModel_setsLayoutParamsOnCell_widthDp()
279 .addCells(GridCell.newBuilder() in testOnBindModel_setsLayoutParamsOnCell_invalidContentWidth()
303 GridCell.newBuilder() in testOnBindModel_setsLayoutParamsOnCell_widthOfChildAdapter()
451 .addCells(GridCell.newBuilder() in testOnBindModel_collapsibleCells_valid()
455 .addCells(GridCell.newBuilder() in testOnBindModel_collapsibleCells_valid()
461 .addCells(GridCell.newBuilder() in testOnBindModel_collapsibleCells_valid()
485 .addCells(GridCell.newBuilder() in testOnBindModel_collapsibleCells_multipleCollapsible()
491 .addCells(GridCell.newBuilder() in testOnBindModel_collapsibleCells_multipleCollapsible()
496 .addCells(GridCell.newBuilder() in testOnBindModel_collapsibleCells_multipleCollapsible()
523 .addCells(GridCell.newBuilder() in testOnBindModel_collapsibleCells_mixingCollapsibleAndWeight()
[all …]
/dports/graphics/wdune/wdune-1.926/vcglib/vcg/complex/algorithms/
H A Dclustering.h222 GridCell.clear();
245 std::unordered_map<Point3i,CellType> GridCell;
270 st.v[i]=&(GridCell[pi]);
283 int CountPointSet() {return GridCell.size(); }
289 for(gi=GridCell.begin();gi!=GridCell.end();++gi)
300 if (GridCell.empty()) return;
302 Allocator<MeshType>::AddVertices(m,GridCell.size());
305 for(gi=GridCell.begin();gi!=GridCell.end();++gi)
320 if (GridCell.empty()) return;
322 Allocator<MeshType>::AddVertices(m,GridCell.size());
[all …]
/dports/devel/vcglib/vcglib-2020.09/vcg/complex/algorithms/
H A Dclustering.h220 GridCell.clear();
243 std::unordered_map<Point3i,CellType> GridCell;
268 st.v[i]=&(GridCell[pi]);
281 int CountPointSet() {return GridCell.size(); }
287 for(gi=GridCell.begin();gi!=GridCell.end();++gi)
298 if (GridCell.empty()) return;
300 Allocator<MeshType>::AddVertices(m,GridCell.size());
303 for(gi=GridCell.begin();gi!=GridCell.end();++gi)
318 if (GridCell.empty()) return;
320 Allocator<MeshType>::AddVertices(m,GridCell.size());
[all …]
/dports/textproc/hs-pandoc/pandoc-2.14.2/src/Text/Pandoc/Writers/
H A DGridTable.hs17 , GridCell (..)
39 data GridCell type
56 , partCellArray :: Array (RowIndex,ColIndex) GridCell
94 = FilledCell GridCell
97 fromBuilderCell :: BuilderCell -> GridCell
112 mutableGrid :: ST s (STArray s CellIndex GridCell)
151 rowArray :: RowIndex -> Array CellIndex GridCell -> Array ColIndex GridCell
/dports/mail/aerc/aerc-0.4.0/lib/ui/
H A Dgrid.go21 cells []*GridCell
46 type GridCell struct { struct
73 func (cell *GridCell) At(row, col int) *GridCell { argument
79 func (cell *GridCell) Span(rows, cols int) *GridCell { argument
244 func (grid *Grid) AddChild(content Drawable) *GridCell {
245 cell := &GridCell{
272 var cell *GridCell
/dports/games/dustrac/DustRacing2D-ae380b8/src/game/MiniCore/src/Physics/
H A Dmcobjectgrid.hh42 struct GridCell struct in MCObjectGrid
108 std::vector<GridCell *> m_matrix;
110 typedef std::set<GridCell *> DirtyCellCache;
/dports/x11/alacritty/alacritty-0.9.0/alacritty_terminal/src/grid/
H A Drow.rs11 use crate::grid::GridCell;
73 T: GridCell, in shrink()
97 T: ResetDiscriminant<D> + GridCell, in reset() argument
143 T: GridCell, in append() argument
161 T: GridCell, in is_clear() argument
163 self.inner.iter().all(GridCell::is_empty) in is_clear()
/dports/science/axom/axom-0.6.1/src/axom/quest/
H A DMeshTester.cpp232 using GridCell = Lattice3::GridCell; in weldTriMeshVertices() typedef
236 auto point_hash = [](const GridCell& pt) { in weldTriMeshVertices()
238 for(int i = 1; i < GridCell::DIMENSION; ++i) in weldTriMeshVertices()
247 std::unordered_map<GridCell, IdxType, decltype(point_hash)>; in weldTriMeshVertices()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ios/showcase/tab_grid/
H A Dsc_grid_cell_view_controller.mm46 [self.collectionView registerClass:[GridCell class]
68 GridCell* cell = base::mac::ObjCCastStrict<GridCell>([collectionView
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/feed/core/java/src/org/chromium/chrome/browser/feed/library/piet/
H A DGridRowAdapter.java29 import org.chromium.components.feed.core.proto.ui.piet.ElementsProto.GridCell;
60 for (GridCell cell : model.getCellsList()) { in getContentsFromModel()
77 GridCell cell = gridRow.getCells(contentIndex); in onBindModel()
86 private void setLayoutParamsOnCell(ElementAdapter<? extends View, ?> cellAdapter, GridCell cell, in setLayoutParamsOnCell()
/dports/misc/ompl/ompl-1.5.2/src/ompl/control/planners/est/
H A DEST.h177 using GridCell = Grid<MotionInfo>::Cell; variable
180 using CellPDF = PDF<GridCell *>;
/dports/misc/ompl/ompl-1.5.2/src/ompl/geometric/planners/est/
H A DProjEST.h166 using GridCell = Grid<MotionInfo>::Cell; variable
169 using CellPDF = PDF<GridCell *>;
/dports/misc/ompl/ompl-1.5.2/src/ompl/geometric/planners/sbl/
H A DSBL.h140 using GridCell = Grid<MotionInfo>::Cell; variable
143 using CellPDF = PDF<GridCell *>;
H A DpSBL.h151 using GridCell = Grid<MotionInfo>::Cell; variable
154 using CellPDF = PDF<GridCell *>;

123