Searched refs:computedLogicalWidth (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAutoTableLayout.h58 , computedLogicalWidth(0)
69 int computedLogicalWidth; member in struct:blink::FINAL::Layout
H A DAutoTableLayout.cpp524 m_layoutStruct[i].computedLogicalWidth = cellLogicalWidth;
557 available += m_layoutStruct[i].computedLogicalWidth - cellLogicalWidth;
558 m_layoutStruct[i].computedLogicalWidth = cellLogicalWidth;
567 int cellLogicalWidth = m_layoutStruct[i].computedLogicalWidth;
573 m_layoutStruct[i].computedLogicalWidth = newLogicalWidth;
583 if (logicalWidth.isFixed() && logicalWidth.value() > m_layoutStruct[i].computedLogicalWidth) {
584 available += m_layoutStruct[i].computedLogicalWidth - logicalWidth.value();
585 m_layoutStruct[i].computedLogicalWidth = logicalWidth.value();
596 int cellLogicalWidth = std::max<int>(m_layoutStruct[i].computedLogicalWidth, static_cast<int>(available * static_cast<float>(m_layoutStruct[i].effectiveMaxLogicalWidth) / totalAuto));
599 m_layoutStruct[i].computedLogicalWidth
[all...]

Completed in 167 milliseconds