OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ForColumns
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderGrid.cpp
95
// GridIterator(m_grid,
ForColumns
, 1) will walk over the rows of the 2nd column.
99
, m_rowIndex((direction ==
ForColumns
) ? 0 : fixedTrackIndex)
100
, m_columnIndex((direction ==
ForColumns
) ? fixedTrackIndex : 0)
112
size_t& varyingTrackIndex = (m_direction ==
ForColumns
) ? m_rowIndex : m_columnIndex;
113
const size_t endOfVaryingTrackIndex = (m_direction ==
ForColumns
) ? m_grid.size() : m_grid[0].size();
129
size_t& varyingTrackIndex = (m_direction ==
ForColumns
) ? m_rowIndex : m_columnIndex;
130
const size_t endOfVaryingTrackIndex = (m_direction ==
ForColumns
) ? m_grid.size() : m_grid[0].size();
173
OwnPtr<GridSpan> columnPositions = resolveGridPositionsFromStyle(newChildBox,
ForColumns
);
287
const GridTrackSize& trackSize = gridTrackSize(
ForColumns
, i);
332
GridIterator iterator(m_grid,
ForColumns
, trackIndex)
[
all
...]
RenderGrid.h
75
enum TrackSizingDirection {
ForColumns
, ForRows };
Completed in 248 milliseconds