Home
last modified time | relevance | path

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

/external/webkit/WebCore/rendering/
DAutoTableLayout.cpp324 int totalPercent = 0; in calcEffectiveWidth() local
335 totalPercent += m_layoutStruct[lastCol].width.rawValue(); in calcEffectiveWidth()
363 totalPercent += m_layoutStruct[lastCol].effWidth.rawValue(); in calcEffectiveWidth()
378 if (totalPercent > w.rawValue() || allColsArePercent) { in calcEffectiveWidth()
386 int percentMissing = w.rawValue() - totalPercent; in calcEffectiveWidth()
522 int totalPercent = 0; in layout() local
535 totalPercent += width.rawValue(); in layout()
571 if (totalPercent > 100 * percentScaleFactor) { in layout()
573 … int excess = tableWidth*(totalPercent - 100 * percentScaleFactor) / (100 * percentScaleFactor); in layout()
641 if (available > 0 && m_hasPercent && totalPercent < 100 * percentScaleFactor) { in layout()
[all …]
DRenderFrameSet.cpp209 int totalPercent = 0; in layOutAxis() local
229 totalPercent += gridLayout[i]; in layOutAxis()
261 if (totalPercent > remainingLen) { in layOutAxis()
266 gridLayout[i] = (gridLayout[i] * remainingPercent) / totalPercent; in layOutAxis()
271 remainingLen -= totalPercent; in layOutAxis()
304 if (countPercent && totalPercent) { in layOutAxis()
310 changePercent = (remainingPercent * gridLayout[i]) / totalPercent; in layOutAxis()
DAutoTableLayout.h46 int totalPercent() const in totalPercent() function
DRenderTableSection.cpp517 int totalPercent = 0; in setCellWidths() local
523 totalPercent += m_grid[r].height.rawValue(); in setCellWidths()
525 if (totalPercent) { in setCellWidths()
528 totalPercent = min(totalPercent, 100 * percentScaleFactor); in setCellWidths()
531 if (totalPercent > 0 && m_grid[r].height.isPercent()) { in setCellWidths()
538 totalPercent -= m_grid[r].height.rawValue(); in setCellWidths()
/external/webkit/WebCore/inspector/front-end/
DProfileView.js276 if (profileDataGridNode.totalPercent < queryNumber)
283 if (profileDataGridNode.totalPercent > queryNumber)
292 if (profileDataGridNode.totalPercent == queryNumber)
DProfileDataGridTree.js67 data["total"] = WebInspector.UIString("%.2f%%", this.totalPercent);
209 get totalPercent() getter in WebInspector.ProfileDataGridNode
/external/webkit/JavaScriptCore/profiler/
DProfileNode.h90 …double totalPercent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTi… in totalPercent() function
DProfileNode.cpp297 m_numberOfCalls, m_actualSelfTime, selfPercent(), m_actualTotalTime, totalPercent(), in debugPrintData()
/external/webkit/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/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):