Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/
DAutoTableLayout.cpp306 float totalPercent = 0; in calcEffectiveLogicalWidth() local
318 totalPercent += columnLayout.logicalWidth.percent(); in calcEffectiveLogicalWidth()
345 totalPercent += columnLayout.effectiveLogicalWidth.percent(); in calcEffectiveLogicalWidth()
360 if (totalPercent > cellLogicalWidth.percent() || allColsArePercent) { in calcEffectiveLogicalWidth()
367 float percentMissing = cellLogicalWidth.percent() - totalPercent; in calcEffectiveLogicalWidth()
501 float totalPercent = 0; in layout() local
514 totalPercent += logicalWidth.percent(); in layout()
548 if (totalPercent > 100) { in layout()
550 int excess = tableLogicalWidth * (totalPercent - 100) / 100; in layout()
617 if (available > 0 && m_hasPercent && totalPercent < 100) { in layout()
[all …]
DFixedTableLayout.cpp239 float totalPercent = 0; in layout() local
252 totalPercent += m_width[i].percent(); in layout()
275 if (totalPercent) { in layout()
279 … calcWidth[i] = m_width[i].percent() * (tableLogicalWidth - totalFixedWidth) / totalPercent; in layout()
DRenderFrameSet.cpp210 int totalPercent = 0; in layOutAxis() local
230 totalPercent += gridLayout[i]; in layOutAxis()
262 if (totalPercent > remainingLen) { in layOutAxis()
267 gridLayout[i] = (gridLayout[i] * remainingPercent) / totalPercent; in layOutAxis()
272 remainingLen -= totalPercent; in layOutAxis()
305 if (countPercent && totalPercent) { in layOutAxis()
311 changePercent = (remainingPercent * gridLayout[i]) / totalPercent; in layOutAxis()
DRenderTableSection.cpp519 int totalPercent = 0; in setCellLogicalWidths() local
525 totalPercent += m_grid[r].logicalHeight.percent(); in setCellLogicalWidths()
527 if (totalPercent) { in setCellLogicalWidths()
530 totalPercent = min(totalPercent, 100); in setCellLogicalWidths()
533 if (totalPercent > 0 && m_grid[r].logicalHeight.isPercent()) { in setCellLogicalWidths()
540 totalPercent -= m_grid[r].logicalHeight.percent(); in setCellLogicalWidths()
/external/webkit/Source/WebCore/inspector/front-end/
DProfileDataGridTree.js67 data["total"] = WebInspector.UIString("%.2f%%", this.totalPercent);
200 get totalPercent() getter in WebInspector.ProfileDataGridNode
DProfileView.js277 if (profileDataGridNode.totalPercent < queryNumber)
284 if (profileDataGridNode.totalPercent > queryNumber)
293 if (profileDataGridNode.totalPercent == queryNumber)
/external/webkit/Source/JavaScriptCore/profiler/
DProfileNode.h93 …double totalPercent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTi… in totalPercent() function
DProfileNode.cpp300 m_numberOfCalls, m_actualSelfTime, selfPercent(), m_actualTotalTime, totalPercent(), in debugPrintData()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2008-08-107862 (KJS::ProfileNode::totalPercent): because the head can now be empty we
8257 (KJS::ProfileNode::totalPercent):
9329 (KJS::ProfileNode::totalPercent):
15591 (KJS::ProfileNode::totalPercent):
15643 (KJS::ProfileNode::totalPercent):
15693 (KJS::ProfileNode::totalPercent):
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3118559 (WebCore::AutoTableLayout::totalPercent):
54936 (WebCore::AutoTableLayout::totalPercent):
55037 (WebCore::AutoTableLayout::totalPercent):
DChangeLog-2009-06-1617363 (WebInspector.ProfileDataGridNode.prototype.get totalPercent):
DChangeLog-2010-12-0620519 … * rendering/AutoTableLayout.h: Removed totalPercent(), m_percentagesDirty, and m_totalPercent.