Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_width

87     m_width.resize(nEffCols);
88 m_width.fill(Length(Auto));
111 m_width.append(Length());
117 m_width.append(Length());
122 m_width[currentEffectiveColumn].setRawValue(w.type(), w.rawValue() * spanInCurrentEffectiveColumn);
173 if (m_width[cCol + i].isAuto() && w.type() != Auto) {
174 m_width[cCol + i].setRawValue(w.type(), w.rawValue() * eSpan / span);
249 if (m_width[i].isFixed()) {
250 calcWidth[i] = m_width[i].value();
252 } else if (m_width[i].isPercent()) {
253 calcWidth[i] = m_width[i].calcValue(tableWidth);
255 totalRawPercent += m_width[i].rawValue();
256 } else if (m_width[i].isAuto()) {
272 if (m_width[i].isFixed()) {
281 if (m_width[i].isPercent()) {
282 calcWidth[i] = m_width[i].rawValue() * (tableWidth - totalFixedWidth) / totalRawPercent;
294 if (m_width[i].isAuto()) {