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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FixedTableLayout.cpp 226 float totalPercent = 0;
239 totalPercent += m_width[i].percent();
262 if (totalPercent) {
266 calcWidth[i] = m_width[i].percent() * (tableLogicalWidth - totalFixedWidth) / totalPercent;
AutoTableLayout.cpp 286 float totalPercent = 0;
298 totalPercent += columnLayout.logicalWidth.percent();
325 totalPercent += columnLayout.effectiveLogicalWidth.percent();
340 if (totalPercent > cellLogicalWidth.percent() || allColsArePercent) {
347 float percentMissing = cellLogicalWidth.percent() - totalPercent;
385 int columnMinLogicalWidth = static_cast<int>(percent * cellMinLogicalWidth / totalPercent);
386 int columnMaxLogicalWidth = static_cast<int>(percent * cellMaxLogicalWidth / totalPercent);
498 float totalPercent = 0;
511 totalPercent += logicalWidth.percent();
542 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 274 void RenderTableSection::distributeExtraRowSpanHeightToPercentRows(RenderTableCell* cell, int totalPercent, int& extraRowSpanningHeight, Vector<int>& rowsHeight)
276 if (!extraRowSpanningHeight || !totalPercent)
281 int percent = min(totalPercent, 100);
440 int totalPercent = 0;
450 totalPercent += m_grid[row].logicalHeight.percent();
459 distributeExtraRowSpanHeightToPercentRows(cell, totalPercent, extraRowSpanningHeight, spanningRowsHeight.rowHeight);
645 void RenderTableSection::distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent)
647 if (!totalPercent)
653 totalPercent = min(totalPercent, 100)
    [all...]
RenderTableSection.h 250 void distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ProfileDataGridTree.js 69 data["total"] = WebInspector.UIString("%.2f%", this.totalPercent);
202 get totalPercent()
CPUProfileView.js 283 if (profileDataGridNode.totalPercent < queryNumber)
288 if (profileDataGridNode.totalPercent > queryNumber)
295 if (profileDataGridNode.totalPercent == queryNumber)
    [all...]
  /external/chromium_org/v8/tools/
profile_view.js 175 'totalPercent',
  /external/v8/tools/
profile_view.js 175 'totalPercent',

Completed in 368 milliseconds