Home
last modified time | relevance | path

Searched refs:totalPercent (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DAutoTableLayout.cpp286 float totalPercent = 0; in calcEffectiveLogicalWidth() local
298 totalPercent += columnLayout.logicalWidth.percent(); in calcEffectiveLogicalWidth()
325 totalPercent += columnLayout.effectiveLogicalWidth.percent(); in calcEffectiveLogicalWidth()
340 if (totalPercent > cellLogicalWidth.percent() || allColsArePercent) { in calcEffectiveLogicalWidth()
347 float percentMissing = cellLogicalWidth.percent() - totalPercent; in calcEffectiveLogicalWidth()
385 … int columnMinLogicalWidth = static_cast<int>(percent * cellMinLogicalWidth / totalPercent); in calcEffectiveLogicalWidth()
386 … int columnMaxLogicalWidth = static_cast<int>(percent * cellMaxLogicalWidth / totalPercent); in calcEffectiveLogicalWidth()
498 float totalPercent = 0; in layout() local
511 totalPercent += logicalWidth.percent(); in layout()
542 if (totalPercent > 100) { in layout()
[all …]
DFixedTableLayout.cpp226 float totalPercent = 0; in layout() local
239 totalPercent += m_width[i].percent(); in layout()
262 if (totalPercent) { in layout()
266 … calcWidth[i] = m_width[i].percent() * (tableLogicalWidth - totalFixedWidth) / totalPercent; in layout()
DRenderFrameSet.cpp187 int totalPercent = 0; in layOutAxis() local
207 totalPercent += gridLayout[i]; in layOutAxis()
239 if (totalPercent > remainingLen) { in layOutAxis()
244 gridLayout[i] = (gridLayout[i] * remainingPercent) / totalPercent; in layOutAxis()
249 remainingLen -= totalPercent; in layOutAxis()
282 if (countPercent && totalPercent) { in layOutAxis()
288 changePercent = (remainingPercent * gridLayout[i]) / totalPercent; in layOutAxis()
DRenderTableSection.cpp301 …:distributeExtraRowSpanHeightToPercentRows(RenderTableCell* cell, int totalPercent, int& extraRowS… in distributeExtraRowSpanHeightToPercentRows() argument
303 if (!extraRowSpanningHeight || !totalPercent) in distributeExtraRowSpanHeightToPercentRows()
308 int percent = min(totalPercent, 100); in distributeExtraRowSpanHeightToPercentRows()
553 int totalPercent = 0; in distributeRowSpanHeightToRows() local
563 totalPercent += m_grid[row].logicalHeight.percent(); in distributeRowSpanHeightToRows()
572 …distributeExtraRowSpanHeightToPercentRows(cell, totalPercent, extraRowSpanningHeight, spanningRows… in distributeRowSpanHeightToRows()
775 …rTableSection::distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent) in distributeExtraLogicalHeightToPercentRows() argument
777 if (!totalPercent) in distributeExtraLogicalHeightToPercentRows()
783 totalPercent = min(totalPercent, 100); in distributeExtraLogicalHeightToPercentRows()
786 if (totalPercent > 0 && m_grid[r].logicalHeight.isPercent()) { in distributeExtraLogicalHeightToPercentRows()
[all …]
DRenderTableSection.h257 void distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DProfileDataGridTree.js79 data["total"] = WebInspector.UIString("%.2f%", this.totalPercent);
219 get totalPercent() getter in WebInspector.ProfileDataGridNode
DCPUProfileView.js266 if (profileDataGridNode.totalPercent < queryNumber)
271 if (profileDataGridNode.totalPercent > queryNumber)
278 if (profileDataGridNode.totalPercent == queryNumber)