HomeSort by relevance Sort by last modified time
    Searched refs:totalFixed (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderFrameSet.cpp 209 int totalFixed = 0;
218 // Count the total length of all of the fixed columns/rows -> totalFixed
222 totalFixed += gridLayout[i];
246 if (totalFixed > remainingLen) {
251 gridLayout[i] = (gridLayout[i] * remainingFixed) / totalFixed;
256 remainingLen -= totalFixed;
316 } else if (totalFixed) {
325 changeFixed = (remainingFixed * gridLayout[i]) / totalFixed;
AutoTableLayout.cpp 500 float totalFixed = 0;
521 totalFixed += 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;
    [all...]

Completed in 34 milliseconds