Searched refs:totalPercent (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DFixedTableLayout.cpp218 float totalPercent = 0; local
231 totalPercent += m_width[i].percent();
254 if (totalPercent) {
258 calcWidth[i] = m_width[i].percent() * (tableLogicalWidth - totalFixedWidth) / totalPercent;
H A DAutoTableLayout.cpp290 float totalPercent = 0; local
302 totalPercent += columnLayout.logicalWidth.percent();
329 totalPercent += columnLayout.effectiveLogicalWidth.percent();
344 if (totalPercent > cellLogicalWidth.percent() || allColsArePercent) {
351 float percentMissing = cellLogicalWidth.percent() - totalPercent;
389 int columnMinLogicalWidth = static_cast<int>(percent * cellMinLogicalWidth / totalPercent);
390 int columnMaxLogicalWidth = static_cast<int>(percent * cellMaxLogicalWidth / totalPercent);
503 float totalPercent = 0; local
516 totalPercent += logicalWidth.percent();
549 if (totalPercent > 10
[all...]
H A DRenderFrameSet.cpp191 int totalPercent = 0; local
207 // Count the total percentage of all of the percentage columns/rows -> totalPercent
211 totalPercent += gridLayout[i];
243 if (totalPercent > remainingLen) {
248 gridLayout[i] = (gridLayout[i] * remainingPercent) / totalPercent;
253 remainingLen -= totalPercent;
286 if (countPercent && totalPercent) {
292 changePercent = (remainingPercent * gridLayout[i]) / totalPercent;
H A DRenderTableSection.cpp427 void RenderTableSection::distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent) argument
429 if (!totalPercent)
435 totalPercent = std::min(totalPercent, 100);
438 if (totalPercent > 0 && m_grid[r].logicalHeight.isPercentNotCalculated()) {
445 totalPercent -= m_grid[r].logicalHeight.percent();
506 int totalPercent = 0; local
511 totalPercent += m_grid[r].logicalHeight.percent();
515 distributeExtraLogicalHeightToPercentRows(remainingExtraLogicalHeight, totalPercent);
H A DRenderTableSection.h288 void distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLegacyProfileDataGridTree.js64 data["total"] = WebInspector.UIString("%.2f %%").format(this.totalPercent);
196 get totalPercent()
H A DLegacyJavaScriptProfileView.js207 if (profileDataGridNode.totalPercent < queryNumber)
214 if (profileDataGridNode.totalPercent > queryNumber)
223 if (profileDataGridNode.totalPercent == queryNumber)
/macosx-10.10/JavaScriptCore-7600.1.17/profiler/
H A DProfileNode.h109 double totalPercent() const { return (m_totalTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; } function in class:JSC::ProfileNode
H A DProfileNode.cpp178 numberOfCalls(), m_selfTime, selfPercent(), m_totalTime, totalPercent(),

Completed in 204 milliseconds