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

  /external/webkit/WebCore/rendering/
RenderFrameSet.cpp 208 int totalFixed = 0;
217 // Count the total length of all of the fixed columns/rows -> totalFixed
221 totalFixed += gridLayout[i];
245 if (totalFixed > remainingLen) {
250 gridLayout[i] = (gridLayout[i] * remainingFixed) / totalFixed;
255 remainingLen -= totalFixed;
315 } else if (totalFixed) {
324 changeFixed = (remainingFixed * gridLayout[i]) / totalFixed;
AutoTableLayout.cpp 521 float totalFixed = 0;
543 totalFixed += m_layoutStruct[i].effMaxWidth;
632 int w = static_cast<int>(available * static_cast<float>(m_layoutStruct[i].effMaxWidth) / totalFixed);
634 totalFixed -= m_layoutStruct[i].effMaxWidth;

Completed in 1053 milliseconds