Home
last modified time | relevance | path

Searched refs:totalPercent (Results 1 – 12 of 12) 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.cpp208 int totalPercent = 0; in layOutAxis() local
228 totalPercent += gridLayout[i]; in layOutAxis()
260 if (totalPercent > remainingLen) { in layOutAxis()
265 gridLayout[i] = (gridLayout[i] * remainingPercent) / totalPercent; in layOutAxis()
270 remainingLen -= totalPercent; in layOutAxis()
303 if (countPercent && totalPercent) { in layOutAxis()
309 changePercent = (remainingPercent * gridLayout[i]) / totalPercent; in layOutAxis()
DAutoTableLayout.h48 int totalPercent() const in totalPercent() function
DRenderTableSection.cpp514 int totalPercent = 0; in setCellWidths() local
520 totalPercent += m_grid[r].height.rawValue(); in setCellWidths()
522 if (totalPercent) { in setCellWidths()
525 totalPercent = min(totalPercent, 100 * percentScaleFactor); in setCellWidths()
528 if (totalPercent > 0 && m_grid[r].height.isPercent()) { in setCellWidths()
535 totalPercent -= m_grid[r].height.rawValue(); in setCellWidths()
/external/webkit/WebCore/inspector/front-end/
DProfileView.js265 if (profileDataGridNode.totalPercent < queryNumber)
272 if (profileDataGridNode.totalPercent > queryNumber)
281 if (profileDataGridNode.totalPercent == queryNumber)
DProfileDataGridTree.js67 data["total"] = WebInspector.UIString("%.2f%%", this.totalPercent);
219 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.cpp295 m_numberOfCalls, m_actualSelfTime, selfPercent(), m_actualTotalTime, totalPercent(), in debugPrintData()
/external/webkit/WebCore/inspector/
DJavaScriptProfileNode.cpp115 return JSValueMakeNumber(ctx, profileNode->totalPercent()); in getTotalPercent()
/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):