Home | History | Annotate | Download | only in rendering

Lines Matching full:grid

193 void RenderFrameSet::layOutAxis(GridAxis& axis, const Length* grid, int availableLen)
199 if (!grid) {
219 if (grid[i].isFixed()) {
220 gridLayout[i] = max(grid[i].value(), 0);
227 if (grid[i].isPercent()) {
228 gridLayout[i] = max(grid[i].calcValue(availableLen), 0);
235 if (grid[i].isRelative()) {
236 totalRelative += max(grid[i].value(), 1);
249 if (grid[i].isFixed()) {
265 if (grid[i].isPercent()) {
280 if (grid[i].isRelative()) {
281 gridLayout[i] = (max(grid[i].value(), 1) * remainingRelative) / totalRelative;
309 if (grid[i].isPercent()) {
323 if (grid[i].isFixed()) {
341 if (grid[i].isPercent()) {
356 if (grid[i].isFixed()) {
465 // Force a grid recalc.
486 // Make all the child framesets recalculate their grid.
581 // Distribute the extra width and height evenly across the grid.