Home | History | Annotate | Download | only in rendering

Lines Matching refs:effectiveMaxLogicalWidth

240         maxWidth += m_layoutStruct[i].effectiveMaxLogicalWidth;
244 float logicalWidth = static_cast<float>(m_layoutStruct[i].effectiveMaxLogicalWidth) * 100 / max(percent, epsilon);
248 maxNonPercent += m_layoutStruct[i].effectiveMaxLogicalWidth;
288 m_layoutStruct[i].effectiveMaxLogicalWidth = m_layoutStruct[i].maxLogicalWidth;
352 spanMaxLogicalWidth += columnLayout.effectiveMaxLogicalWidth;
371 totalWidth += m_layoutStruct[pos].effectiveMaxLogicalWidth;
376 float percent = percentMissing * static_cast<float>(m_layoutStruct[pos].effectiveMaxLogicalWidth) / totalWidth;
377 totalWidth -= m_layoutStruct[pos].effectiveMaxLogicalWidth;
407 remainingMaxLogicalWidth -= m_layoutStruct[pos].effectiveMaxLogicalWidth;
415 int colMinLogicalWidth = max(m_layoutStruct[pos].effectiveMinLogicalWidth, static_cast<int>(remainingMaxLogicalWidth ? cellMinLogicalWidth * static_cast<float>(m_layoutStruct[pos].effectiveMaxLogicalWidth) / remainingMaxLogicalWidth : cellMinLogicalWidth));
417 remainingMaxLogicalWidth -= m_layoutStruct[pos].effectiveMaxLogicalWidth;
428 int colMaxLogicalWidth = max(m_layoutStruct[pos].effectiveMaxLogicalWidth, static_cast<int>(spanMaxLogicalWidth ? cellMaxLogicalWidth * static_cast<float>(m_layoutStruct[pos].effectiveMaxLogicalWidth) / spanMaxLogicalWidth : cellMaxLogicalWidth));
429 spanMaxLogicalWidth -= m_layoutStruct[pos].effectiveMaxLogicalWidth;
431 m_layoutStruct[pos].effectiveMaxLogicalWidth = colMaxLogicalWidth;
521 totalFixed += m_layoutStruct[i].effectiveMaxLogicalWidth;
529 totalAuto += m_layoutStruct[i].effectiveMaxLogicalWidth;
595 int cellLogicalWidth = max(m_layoutStruct[i].computedLogicalWidth, static_cast<int>(available * static_cast<float>(m_layoutStruct[i].effectiveMaxLogicalWidth) / totalAuto));
597 totalAuto -= m_layoutStruct[i].effectiveMaxLogicalWidth;
608 int cellLogicalWidth = static_cast<int>(available * static_cast<float>(m_layoutStruct[i].effectiveMaxLogicalWidth) / totalFixed);
610 totalFixed -= m_layoutStruct[i].effectiveMaxLogicalWidth;