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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FixedTableLayout.cpp 221 float totalPercent = 0;
234 totalPercent += m_width[i].percent();
257 if (totalPercent) {
261 calcWidth[i] = m_width[i].percent() * (tableLogicalWidth - totalFixedWidth) / totalPercent;
AutoTableLayout.cpp 303 float totalPercent = 0;
315 totalPercent += columnLayout.logicalWidth.percent();
342 totalPercent += columnLayout.effectiveLogicalWidth.percent();
357 if (totalPercent > cellLogicalWidth.percent() || allColsArePercent) {
364 float percentMissing = cellLogicalWidth.percent() - totalPercent;
402 int columnMinLogicalWidth = static_cast<int>(percent * cellMinLogicalWidth / totalPercent);
403 int columnMaxLogicalWidth = static_cast<int>(percent * cellMaxLogicalWidth / totalPercent);
515 float totalPercent = 0;
528 totalPercent += logicalWidth.percent();
559 if (totalPercent > 100)
    [all...]
RenderFrameSet.cpp 185 int totalPercent = 0;
201 // Count the total percentage of all of the percentage columns/rows -> totalPercent
205 totalPercent += gridLayout[i];
237 if (totalPercent > remainingLen) {
242 gridLayout[i] = (gridLayout[i] * remainingPercent) / totalPercent;
247 remainingLen -= totalPercent;
280 if (countPercent && totalPercent) {
286 changePercent = (remainingPercent * gridLayout[i]) / totalPercent;
RenderTableSection.cpp 298 void RenderTableSection::distributeExtraRowSpanHeightToPercentRows(RenderTableCell* cell, int totalPercent, int& extraRowSpanningHeight, Vector<int>& rowsHeight)
300 if (!extraRowSpanningHeight || !totalPercent)
305 int percent = min(totalPercent, 100);
576 int totalPercent = 0;
586 totalPercent += m_grid[row].logicalHeight.percent();
595 distributeExtraRowSpanHeightToPercentRows(cell, totalPercent, extraRowSpanningHeight, spanningRowsHeight.rowHeight);
771 void RenderTableSection::distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent)
773 if (!totalPercent)
779 totalPercent = min(totalPercent, 100)
    [all...]
RenderTableSection.h 256 void distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileDataGrid.js 144 "total-percent": formatPercent(this.totalPercent),
246 get totalPercent()
CPUProfileView.js 221 if (profileDataGridNode.totalPercent < queryNumber)
226 if (profileDataGridNode.totalPercent > queryNumber)
233 if (profileDataGridNode.totalPercent == queryNumber)
  /external/chromium_org/v8/tools/
profile_view.js 175 'totalPercent',

Completed in 377 milliseconds