Home
last modified time | relevance | path

Searched refs:effWidth (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebCore/rendering/
DAutoTableLayout.cpp264 if (m_layoutStruct[i].effWidth.isPercent()) { in calcPrefWidths()
265 int percent = min(m_layoutStruct[i].effWidth.rawValue(), remainingPercent); in calcPrefWidths()
305 m_layoutStruct[i].effWidth = m_layoutStruct[i].width; in calcEffectiveWidth()
358 if (!m_layoutStruct[lastCol].effWidth.isPercent()) { in calcEffectiveWidth()
359 m_layoutStruct[lastCol].effWidth = Length(); in calcEffectiveWidth()
363 totalPercent += m_layoutStruct[lastCol].effWidth.rawValue(); in calcEffectiveWidth()
389 if (!(m_layoutStruct[pos].effWidth.isPercent())) in calcEffectiveWidth()
394 if (!(m_layoutStruct[pos].effWidth.isPercent())) { in calcEffectiveWidth()
399 m_layoutStruct[pos].effWidth.setRawValue(Percent, percent); in calcEffectiveWidth()
401 m_layoutStruct[pos].effWidth = Length(); in calcEffectiveWidth()
[all …]
DFixedTableLayout.cpp103 int effWidth = 0; in calcWidthArray() local
105 effWidth = w.value(); in calcWidthArray()
125 usedWidth += effWidth * spanInCurrentEffectiveColumn; in calcWidthArray()
165 int effWidth = 0; in calcWidthArray() local
167 effWidth = w.value(); in calcWidthArray()
177 usedWidth += effWidth * eSpan / span; in calcWidthArray()
DAutoTableLayout.h68 Length effWidth; member